Viewing file: 6080b8da0d0ee7d0423c79fd46c7d669c12200d9984f3921d44dc50b7b53e301.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_529ccd330aa8dbd210fd4f90c93046a1820120e55d534f15dda4378823c63652 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"); } }
|