b8cdb5b6517647d08afa6e0abb14d66f9aab923373e76a6d2be78164da7f6d09.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /* config/form_display/group_header.twig */
  3. class __TwigTemplate_ad4fd1c06dd2bea50cf17f6ccd93cff7f76697a79623a74385f2f4b22be46cb8 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 "<tr class=\"group-header group-header-";
  16. echo twig_escape_filter($this->env, ($context["group"] ?? null), "html", null, true);
  17. echo "\">
  18. <th colspan=\"";
  19. // line 2
  20. echo twig_escape_filter($this->env, ($context["colspan"] ?? null), "html", null, true);
  21. echo "\">
  22. ";
  23. // line 3
  24. echo twig_escape_filter($this->env, ($context["header_text"] ?? null), "html", null, true);
  25. echo "
  26. </th>
  27. </tr>
  28. ";
  29. }
  30. public function getTemplateName()
  31. {
  32. return "config/form_display/group_header.twig";
  33. }
  34. public function isTraitable()
  35. {
  36. return false;
  37. }
  38. public function getDebugInfo()
  39. {
  40. return array ( 28 => 3, 24 => 2, 19 => 1,);
  41. }
  42. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  43. public function getSource()
  44. {
  45. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  46. return $this->getSourceContext()->getCode();
  47. }
  48. public function getSourceContext()
  49. {
  50. return new Twig_Source("", "config/form_display/group_header.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\config\\form_display\\group_header.twig");
  51. }
  52. }