<?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;
/* navigation/tree/fast_filter.twig */
class __TwigTemplate_9c859f812e5a794d6a14657b0726969d 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
if (($context["url_params"] ?? null)) {
// line 2
yield " <li class=\"fast_filter";
if (($context["is_root_node"] ?? null)) {
yield " db_fast_filter";
}
yield "\">
<form class=\"ajax fast_filter\">
";
// line 4
yield PhpMyAdmin\Url::getHiddenInputs(($context["url_params"] ?? null));
yield "
<div class=\"input-group\">
<input
class=\"searchClause form-control\"
type=\"text\"
name=\"";
// line 9
yield ((($context["is_root_node"] ?? null)) ? ("searchClause") : ("searchClause2"));
yield "\"
accesskey=\"q\"
aria-label=\"";
yield _gettext("Type to filter these, Enter to search all");
// line 11
yield "\"
placeholder=\"";
yield _gettext("Type to filter these, Enter to search all");
// line 12
yield "\"
>
<button
class=\"btn btn-outline-secondary searchClauseClear\"
type=\"button\" aria-label=\"";
yield _gettext("Clear fast filter");
// line 16
yield "\">X</button>
</div>
</form>
</li>
";
}
yield from [];
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName(): string
{
return "navigation/tree/fast_filter.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable(): bool
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo(): array
{
return array ( 77 => 16, 70 => 12, 66 => 11, 60 => 9, 52 => 4, 44 => 2, 42 => 1,);
}
public function getSourceContext(): Source
{
return new Source("", "navigation/tree/fast_filter.twig", "/usr/share/phpmyadmin/templates/navigation/tree/fast_filter.twig");
}
}