Viewing file: 0e5fcdc9a5d30549a0330b3e70ea848c042fc1519e750aeb3fe63429416dda95.php (1.8 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; 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;
/* filter.twig */ class __TwigTemplate_4e0da21c5665e56c30bf60a4a6f73cc00ceb89d0a30bb9325b67a874f555fb3a extends \Twig\Template { private $source; private $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 = []) { $macros = $this->macros; // line 1 echo "<fieldset id=\"tableFilter\"> <legend>"; // line 2 echo _gettext("Filters"); echo "</legend> <div class=\"formelement\"> <label for=\"filterText\">"; // line 4 echo _gettext("Containing the word:"); echo "</label> <input name=\"filterText\" type=\"text\" id=\"filterText\" value=\""; // line 6 echo twig_escape_filter($this->env, ($context["filter_value"] ?? null), "html", null, true); echo "\" /> </div> </fieldset> "; }
public function getTemplateName() { return "filter.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 50 => 6, 45 => 4, 40 => 2, 37 => 1,); }
public function getSourceContext() { return new Source("", "filter.twig", "/usr/share/phpmyadmin/templates/filter.twig"); } }
|