<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
use Twig\TemplateWrapper;
/* display/results/table_navigation_button.twig */
class __TwigTemplate_da3cc7847a730a8ee58d27f00f3042de extends Template
{
private Source $source;
/**
* @var array<string, Template>
*/
private array $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
// line 1
yield "<td>
<form action=\"";
// line 2
yield PhpMyAdmin\Url::getFromRoute("/sql");
yield "\" method=\"post\" ";
yield ($context["onsubmit"] ?? null);
yield ">
";
// line 3
yield PhpMyAdmin\Url::getHiddenInputs(($context["db"] ?? null), ($context["table"] ?? null));
yield "
<input type=\"hidden\" name=\"sql_query\" value=\"";
// line 4
yield ($context["sql_query"] ?? null);
yield "\">
<input type=\"hidden\" name=\"pos\" value=\"";
// line 5
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["pos"] ?? null), "html", null, true);
yield "\">
<input type=\"hidden\" name=\"is_browse_distinct\" value=\"";
// line 6
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["is_browse_distinct"] ?? null), "html", null, true);
yield "\">
<input type=\"hidden\" name=\"goto\" value=\"";
// line 7
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["goto"] ?? null), "html", null, true);
yield "\">
";
// line 8
yield ($context["input_for_real_end"] ?? null);
yield "
<input type=\"submit\" name=\"navig\" class=\"btn btn-secondary ajax\" value=\"";
// line 9
yield ($context["caption_output"] ?? null);
yield "\" title=\"";
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(($context["title"] ?? null), "html", null, true);
yield "\">
</form>
</td>
";
yield from [];
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName(): string
{
return "display/results/table_navigation_button.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable(): bool
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo(): array
{
return array ( 75 => 9, 71 => 8, 67 => 7, 63 => 6, 59 => 5, 55 => 4, 51 => 3, 45 => 2, 42 => 1,);
}
public function getSourceContext(): Source
{
return new Source("", "display/results/table_navigation_button.twig", "/usr/share/phpmyadmin/templates/display/results/table_navigation_button.twig");
}
}