c08a1829ffbfe148f45a206cfa3ca846246f784da545e1f608be6f8585ae0276.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /* display/results/show_all_checkbox.twig */
  3. class __TwigTemplate_e4e935439907b96074f196dfe0564a62f5b017ceb29023ffc0649845446e3656 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(($context["db"] ?? null), ($context["table"] ?? null));
  20. echo "
  21. <input type=\"hidden\" name=\"sql_query\" value=\"";
  22. // line 4
  23. echo ($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, ($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, (( !($context["showing_all"] ?? null)) ? ("all") : (($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, ($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, ($context["unique_id"] ?? null), "html", null, true);
  41. echo "\" class=\"showAllRows\"";
  42. // line 10
  43. echo ((($context["showing_all"] ?? null)) ? (" checked=\"checked\"") : (""));
  44. echo " value=\"all\" />
  45. <label for=\"showAll_";
  46. // line 11
  47. echo twig_escape_filter($this->env, ($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. }