204134d5bbb085a816eebeb9ef3a1227fd75d6f006813e3cfee4d789f276e1b2.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /* display/results/show_all_checkbox.twig */
  3. class __TwigTemplate_a683621a8e2f9604782431f50e266b9c8b4b61980ed3cdd9906a24dfb13ea91a 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 "<td>
  16. <form action=\"sql.php\" method=\"post\">
  17. ";
  18. // line 3
  19. echo PhpMyAdmin\Url::getHiddenInputs((isset($context["db"]) ? $context["db"] : null), (isset($context["table"]) ? $context["table"] : null));
  20. echo "
  21. <input type=\"hidden\" name=\"sql_query\" value=\"";
  22. // line 4
  23. echo (isset($context["html_sql_query"]) ? $context["html_sql_query"] : null);
  24. echo "\" />
  25. <input type=\"hidden\" name=\"pos\" value=\"0\" />
  26. <input type=\"hidden\" name=\"is_browse_distinct\" value=\"";
  27. // line 6
  28. echo twig_escape_filter($this->env, (isset($context["is_browse_distinct"]) ? $context["is_browse_distinct"] : null), "html", null, true);
  29. echo "\" />
  30. <input type=\"hidden\" name=\"session_max_rows\" value=\"";
  31. // line 7
  32. echo twig_escape_filter($this->env, (( !(isset($context["showing_all"]) ? $context["showing_all"] : null)) ? ("all") : ((isset($context["max_rows"]) ? $context["max_rows"] : null))), "html", null, true);
  33. echo "\" />
  34. <input type=\"hidden\" name=\"goto\" value=\"";
  35. // line 8
  36. echo twig_escape_filter($this->env, (isset($context["goto"]) ? $context["goto"] : null), "html", null, true);
  37. echo "\" />
  38. <input type=\"checkbox\" name=\"navig\" id=\"showAll_";
  39. // line 9
  40. echo twig_escape_filter($this->env, (isset($context["unique_id"]) ? $context["unique_id"] : null), "html", null, true);
  41. echo "\" class=\"showAllRows\"";
  42. // line 10
  43. echo (((isset($context["showing_all"]) ? $context["showing_all"] : null)) ? (" checked=\"checked\"") : (""));
  44. echo " value=\"all\" />
  45. <label for=\"showAll_";
  46. // line 11
  47. echo twig_escape_filter($this->env, (isset($context["unique_id"]) ? $context["unique_id"] : null), "html", null, true);
  48. echo "\">";
  49. echo _gettext("Show all");
  50. echo "</label>
  51. </form>
  52. </td>
  53. ";
  54. }
  55. public function getTemplateName()
  56. {
  57. return "display/results/show_all_checkbox.twig";
  58. }
  59. public function isTraitable()
  60. {
  61. return false;
  62. }
  63. public function getDebugInfo()
  64. {
  65. return array ( 51 => 11, 47 => 10, 44 => 9, 40 => 8, 36 => 7, 32 => 6, 27 => 4, 23 => 3, 19 => 1,);
  66. }
  67. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  68. public function getSource()
  69. {
  70. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  71. return $this->getSourceContext()->getCode();
  72. }
  73. public function getSourceContext()
  74. {
  75. return new Twig_Source("", "display/results/show_all_checkbox.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\display\\results\\show_all_checkbox.twig");
  76. }
  77. }