397d8ad0bf682315188dc3783ef87be2aee2a4713f0d9b6f832cb785b250b093.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. /* filter.twig */
  3. class __TwigTemplate_2b25463411fe3af16d585f042bd1e1ec43d7a0eb4b927be65ba5a6ae74b3018b extends Twig_Template
  4. {
  5. public function __construct(Twig_Environment $env)
  6. {
  7. parent::__construct($env);
  8. $this->parent = false;
  9. $this->blocks = [
  10. ];
  11. }
  12. protected function doDisplay(array $context, array $blocks = [])
  13. {
  14. // line 1
  15. echo "<fieldset id=\"tableFilter\">
  16. <legend>";
  17. // line 2
  18. echo _gettext("Filters");
  19. echo "</legend>
  20. <div class=\"formelement\">
  21. <label for=\"filterText\">";
  22. // line 4
  23. echo _gettext("Containing the word:");
  24. echo "</label>
  25. <input name=\"filterText\" type=\"text\" id=\"filterText\"
  26. value=\"";
  27. // line 6
  28. echo twig_escape_filter($this->env, ($context["filter_value"] ?? null), "html", null, true);
  29. echo "\" />
  30. </div>
  31. </fieldset>
  32. ";
  33. }
  34. public function getTemplateName()
  35. {
  36. return "filter.twig";
  37. }
  38. public function isTraitable()
  39. {
  40. return false;
  41. }
  42. public function getDebugInfo()
  43. {
  44. return array ( 32 => 6, 27 => 4, 22 => 2, 19 => 1,);
  45. }
  46. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  47. public function getSource()
  48. {
  49. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  50. return $this->getSourceContext()->getCode();
  51. }
  52. public function getSourceContext()
  53. {
  54. return new Twig_Source("", "filter.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\filter.twig");
  55. }
  56. }