7fcfbbbb652a4c6993d6d10681adddccffb4d589fe1c33bcd2548b972506675e.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. /* table/insert/continue_insertion_form.twig */
  3. class __TwigTemplate_d540c9601eded4def2ad9b04011a0788738978898d841f0993da969c1da079de 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 "<form id=\"continueForm\" method=\"post\" action=\"tbl_replace.php\" name=\"continueForm\">
  16. ";
  17. // line 2
  18. echo PhpMyAdmin\Url::getHiddenInputs((isset($context["db"]) ? $context["db"] : null), (isset($context["table"]) ? $context["table"] : null));
  19. echo "
  20. <input type=\"hidden\" name=\"goto\" value=\"";
  21. // line 3
  22. echo twig_escape_filter($this->env, (isset($context["goto"]) ? $context["goto"] : null), "html", null, true);
  23. echo "\">
  24. <input type=\"hidden\" name=\"err_url\" value=\"";
  25. // line 4
  26. echo twig_escape_filter($this->env, (isset($context["err_url"]) ? $context["err_url"] : null), "html", null, true);
  27. echo "\">
  28. <input type=\"hidden\" name=\"sql_query\" value=\"";
  29. // line 5
  30. echo twig_escape_filter($this->env, (isset($context["sql_query"]) ? $context["sql_query"] : null), "html", null, true);
  31. echo "\">
  32. ";
  33. // line 7
  34. if ((isset($context["has_where_clause"]) ? $context["has_where_clause"] : null)) {
  35. // line 8
  36. echo " ";
  37. $context['_parent'] = $context;
  38. $context['_seq'] = twig_ensure_traversable((isset($context["where_clause_array"]) ? $context["where_clause_array"] : null));
  39. foreach ($context['_seq'] as $context["key_id"] => $context["where_clause"]) {
  40. // line 9
  41. echo " <input type=\"hidden\" name=\"where_clause[";
  42. echo twig_escape_filter($this->env, $context["key_id"], "html", null, true);
  43. echo "]\" value=\"";
  44. // line 10
  45. echo twig_escape_filter($this->env, twig_trim_filter($context["where_clause"]), "html", null, true);
  46. echo "\">
  47. ";
  48. }
  49. $_parent = $context['_parent'];
  50. unset($context['_seq'], $context['_iterated'], $context['key_id'], $context['where_clause'], $context['_parent'], $context['loop']);
  51. $context = array_intersect_key($context, $_parent) + $_parent;
  52. // line 12
  53. echo " ";
  54. }
  55. // line 13
  56. echo "
  57. ";
  58. // line 14
  59. ob_start();
  60. // line 15
  61. echo " <input type=\"number\" name=\"insert_rows\" id=\"insert_rows\" value=\"";
  62. // line 16
  63. echo twig_escape_filter($this->env, (isset($context["insert_rows_default"]) ? $context["insert_rows_default"] : null), "html", null, true);
  64. echo "\" min=\"1\">
  65. ";
  66. $context["insert_rows"] = ('' === $tmp = ob_get_clean()) ? '' : new Twig_Markup($tmp, $this->env->getCharset());
  67. // line 18
  68. echo " ";
  69. echo sprintf(_gettext("Continue insertion with %s rows"), (isset($context["insert_rows"]) ? $context["insert_rows"] : null));
  70. echo "
  71. </form>
  72. ";
  73. }
  74. public function getTemplateName()
  75. {
  76. return "table/insert/continue_insertion_form.twig";
  77. }
  78. public function isTraitable()
  79. {
  80. return false;
  81. }
  82. public function getDebugInfo()
  83. {
  84. return array ( 73 => 18, 68 => 16, 66 => 15, 64 => 14, 61 => 13, 58 => 12, 50 => 10, 46 => 9, 41 => 8, 39 => 7, 34 => 5, 30 => 4, 26 => 3, 22 => 2, 19 => 1,);
  85. }
  86. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  87. public function getSource()
  88. {
  89. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  90. return $this->getSourceContext()->getCode();
  91. }
  92. public function getSourceContext()
  93. {
  94. return new Twig_Source("", "table/insert/continue_insertion_form.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\table\\insert\\continue_insertion_form.twig");
  95. }
  96. }