bc8d98b95f0a15b3dffa565f34f1157850722415655032e187b5c78a788ec33f.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /* display/results/additional_fields.twig */
  3. class __TwigTemplate_d2b68c72ec7251f1289f4c321429b163f53433b0d36e3540cee24e256cfe9f8d 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 "<input type=\"hidden\" name=\"sql_query\" value=\"";
  16. echo ($context["sql_query"] ?? null);
  17. echo "\" />
  18. <input type=\"hidden\" name=\"goto\" value=\"";
  19. // line 2
  20. echo twig_escape_filter($this->env, ($context["goto"] ?? null), "html", null, true);
  21. echo "\" />
  22. ";
  23. // line 4
  24. echo "<input type=\"hidden\" name=\"pos\" size=\"3\" value=\"";
  25. echo twig_escape_filter($this->env, ($context["pos"] ?? null), "html", null, true);
  26. echo "\" />
  27. <input type=\"hidden\" name=\"is_browse_distinct\" value=\"";
  28. // line 5
  29. echo twig_escape_filter($this->env, ($context["is_browse_distinct"] ?? null), "html", null, true);
  30. echo "\" />
  31. ";
  32. // line 6
  33. echo _gettext("Number of rows:");
  34. // line 7
  35. echo PhpMyAdmin\Util::getDropdown("session_max_rows", // line 9
  36. ($context["number_of_rows_choices"] ?? null), // line 10
  37. ($context["max_rows"] ?? null), "", "autosubmit", // line 13
  38. ($context["number_of_rows_placeholder"] ?? null));
  39. // line 14
  40. echo "
  41. ";
  42. }
  43. public function getTemplateName()
  44. {
  45. return "display/results/additional_fields.twig";
  46. }
  47. public function isTraitable()
  48. {
  49. return false;
  50. }
  51. public function getDebugInfo()
  52. {
  53. return array ( 44 => 14, 42 => 13, 41 => 10, 40 => 9, 39 => 7, 37 => 6, 33 => 5, 28 => 4, 24 => 2, 19 => 1,);
  54. }
  55. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  56. public function getSource()
  57. {
  58. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  59. return $this->getSourceContext()->getCode();
  60. }
  61. public function getSourceContext()
  62. {
  63. return new Twig_Source("", "display/results/additional_fields.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\display\\results\\additional_fields.twig");
  64. }
  65. }