<?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/page_selector.twig */
class __TwigTemplate_77038b2cb7195ce8184685feede72b85 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\">
";
// line 3
yield PhpMyAdmin\Url::getHiddenInputs(($context["url_params"] ?? null));
yield "
";
// line 4
yield ($context["page_selector"] ?? null);
yield "
</form>
</td>
";
yield from [];
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName(): string
{
return "display/results/page_selector.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable(): bool
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo(): array
{
return array ( 53 => 4, 49 => 3, 45 => 2, 42 => 1,);
}
public function getSourceContext(): Source
{
return new Source("", "display/results/page_selector.twig", "/usr/share/phpmyadmin/templates/display/results/page_selector.twig");
}
}