a927a03f526e74569a85726f443090f84a8f992c64804bf95044d29445dce688.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Markup;
  6. use Twig\Sandbox\SecurityError;
  7. use Twig\Sandbox\SecurityNotAllowedTagError;
  8. use Twig\Sandbox\SecurityNotAllowedFilterError;
  9. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  10. use Twig\Source;
  11. use Twig\Template;
  12. /* config/form_display/fieldset_bottom.twig */
  13. class __TwigTemplate_92ef3c2e1dbd29db488d2e8b877d16cc29c8e5fafa450c024da4b40c506f2656 extends \Twig\Template
  14. {
  15. public function __construct(Environment $env)
  16. {
  17. parent::__construct($env);
  18. $this->parent = false;
  19. $this->blocks = [
  20. ];
  21. }
  22. protected function doDisplay(array $context, array $blocks = [])
  23. {
  24. // line 1
  25. $context["colspan"] = 2;
  26. // line 2
  27. if (($context["is_setup"] ?? null)) {
  28. // line 3
  29. echo " ";
  30. $context["colspan"] = (($context["colspan"] ?? null) + 1);
  31. }
  32. // line 5
  33. if (($context["show_buttons"] ?? null)) {
  34. // line 6
  35. echo " <tr>
  36. <td colspan=\"";
  37. // line 7
  38. echo twig_escape_filter($this->env, ($context["colspan"] ?? null), "html", null, true);
  39. echo "\" class=\"lastrow\">
  40. <input type=\"submit\" name=\"submit_save\" value=\"";
  41. // line 8
  42. echo _gettext("Apply");
  43. echo "\" class=\"green\" />
  44. <input type=\"button\" name=\"submit_reset\" value=\"";
  45. // line 9
  46. echo _gettext("Reset");
  47. echo "\" />
  48. </td>
  49. </tr>
  50. ";
  51. }
  52. // line 13
  53. echo "</table>
  54. </fieldset>
  55. ";
  56. }
  57. public function getTemplateName()
  58. {
  59. return "config/form_display/fieldset_bottom.twig";
  60. }
  61. public function isTraitable()
  62. {
  63. return false;
  64. }
  65. public function getDebugInfo()
  66. {
  67. return array ( 58 => 13, 51 => 9, 47 => 8, 43 => 7, 40 => 6, 38 => 5, 34 => 3, 32 => 2, 30 => 1,);
  68. }
  69. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  70. public function getSource()
  71. {
  72. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  73. return $this->getSourceContext()->getCode();
  74. }
  75. public function getSourceContext()
  76. {
  77. return new Source("", "config/form_display/fieldset_bottom.twig", "/www/pma/templates/config/form_display/fieldset_bottom.twig");
  78. }
  79. }