b8467faa5f2a7b309d051ad2bf80809b54162172bdc2b15ae0a6642bd81d528b.php 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. /* console/toolbar.twig */
  13. class __TwigTemplate_e3e20f94d0425109b0f8d668965871f90e16ac6b39c7948216f2e82aba3ab04a 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. echo "<div class=\"toolbar ";
  26. echo twig_escape_filter($this->env, ($context["parent_div_classes"] ?? null), "html", null, true);
  27. echo "\">
  28. ";
  29. // line 2
  30. $context['_parent'] = $context;
  31. $context['_seq'] = twig_ensure_traversable(($context["content_array"] ?? null));
  32. foreach ($context['_seq'] as $context["_key"] => $context["content"]) {
  33. // line 3
  34. echo " ";
  35. if ((isset($context["content"]) || array_key_exists("content", $context))) {
  36. // line 4
  37. echo " <div class=\"";
  38. echo twig_escape_filter($this->env, $this->getAttribute($context["content"], 0, [], "array"), "html", null, true);
  39. echo "\">
  40. ";
  41. // line 5
  42. echo (($this->getAttribute($context["content"], "image", [], "array", true, true)) ? ($this->getAttribute($context["content"], "image", [], "array")) : (""));
  43. echo "
  44. <span>";
  45. // line 6
  46. echo twig_escape_filter($this->env, $this->getAttribute($context["content"], 1, [], "array"), "html", null, true);
  47. echo "</span>
  48. </div>
  49. ";
  50. }
  51. // line 9
  52. echo " ";
  53. }
  54. $_parent = $context['_parent'];
  55. unset($context['_seq'], $context['_iterated'], $context['_key'], $context['content'], $context['_parent'], $context['loop']);
  56. $context = array_intersect_key($context, $_parent) + $_parent;
  57. // line 10
  58. echo "</div>
  59. ";
  60. }
  61. public function getTemplateName()
  62. {
  63. return "console/toolbar.twig";
  64. }
  65. public function isTraitable()
  66. {
  67. return false;
  68. }
  69. public function getDebugInfo()
  70. {
  71. return array ( 63 => 10, 57 => 9, 51 => 6, 47 => 5, 42 => 4, 39 => 3, 35 => 2, 30 => 1,);
  72. }
  73. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  74. public function getSource()
  75. {
  76. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  77. return $this->getSourceContext()->getCode();
  78. }
  79. public function getSourceContext()
  80. {
  81. return new Source("", "console/toolbar.twig", "/www/pma/templates/console/toolbar.twig");
  82. }
  83. }