var/cache/dev/twig/87/87384159b935dece641355bf5fccbeff.php line 64

Open in your IDE?
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Extension\SandboxExtension;
  6. use Twig\Markup;
  7. use Twig\Sandbox\SecurityError;
  8. use Twig\Sandbox\SecurityNotAllowedTagError;
  9. use Twig\Sandbox\SecurityNotAllowedFilterError;
  10. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  11. use Twig\Source;
  12. use Twig\Template;
  13. /* includes/footer.html.twig */
  14. class __TwigTemplate_5586a1b063dc35da70191a667dfab6f2 extends Template
  15. {
  16.     private $source;
  17.     private $macros = [];
  18.     public function __construct(Environment $env)
  19.     {
  20.         parent::__construct($env);
  21.         $this->source $this->getSourceContext();
  22.         $this->parent false;
  23.         $this->blocks = [
  24.         ];
  25.         $this->sandbox $this->env->getExtension('\Twig\Extension\SandboxExtension');
  26.         $this->checkSecurity();
  27.     }
  28.     protected function doDisplay(array $context, array $blocks = [])
  29.     {
  30.         $macros $this->macros;
  31.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  32.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""includes/footer.html.twig"));
  33.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  34.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""includes/footer.html.twig"));
  35.         // line 6
  36.         echo "<footer class=\"footer\">
  37. \t<div class=\"footer__main\">
  38. \t\t<div class=\"footer__container\">
  39. \t\t\t";
  40.         // line 9
  41.         $this->loadTemplate("navigation/footer.html.twig""includes/footer.html.twig"9)->display($context);
  42.         // line 10
  43.         echo "
  44. \t\t</div>
  45. \t</div>
  46. \t<div class=\"footer__meta\">
  47. \t\t<div class=\"footer__container\">
  48. \t\t\t<span class=\"footer__copy\">";
  49.         // line 15
  50.         echo twig_escape_filter($this->env$this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("footer.copyright { year }", ["{{ year }}" => twig_date_format_filter($this->env"now""Y")]), "html"nulltrue);
  51.         echo "</span>
  52. \t\t\t";
  53.         // line 17
  54.         $this->loadTemplate("navigation/service.html.twig""includes/footer.html.twig"17)->display($context);
  55.         // line 18
  56.         echo "\t\t</div>
  57. \t</div>
  58. </footer>";
  59.         
  60.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  61.         
  62.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  63.     }
  64.     public function getTemplateName()
  65.     {
  66.         return "includes/footer.html.twig";
  67.     }
  68.     public function isTraitable()
  69.     {
  70.         return false;
  71.     }
  72.     public function getDebugInfo()
  73.     {
  74.         return array (  66 => 18,  64 => 17,  59 => 15,  52 => 10,  50 => 9,  45 => 6,);
  75.     }
  76.     public function getSourceContext()
  77.     {
  78.         return new Source("{#
  79. project: Pimcore - Devicenow
  80. User: EBiermann
  81. Year: 2022
  82. #}
  83. <footer class=\"footer\">
  84. \t<div class=\"footer__main\">
  85. \t\t<div class=\"footer__container\">
  86. \t\t\t{% include 'navigation/footer.html.twig' %}
  87. \t\t</div>
  88. \t</div>
  89. \t<div class=\"footer__meta\">
  90. \t\t<div class=\"footer__container\">
  91. \t\t\t<span class=\"footer__copy\">{{ 'footer.copyright { year }'|trans({ '{{ year }}': 'now'|date('Y') }) }}</span>
  92. \t\t\t{% include 'navigation/service.html.twig' %}
  93. \t\t</div>
  94. \t</div>
  95. </footer>""includes/footer.html.twig""/var/www/snr/staging.nuernberger-bratwuerste.de/templates/includes/footer.html.twig");
  96.     }
  97.     
  98.     public function checkSecurity()
  99.     {
  100.         static $tags = array("include" => 9);
  101.         static $filters = array("escape" => 15"trans" => 15"date" => 15);
  102.         static $functions = array();
  103.         try {
  104.             $this->sandbox->checkSecurity(
  105.                 ['include'],
  106.                 ['escape''trans''date'],
  107.                 []
  108.             );
  109.         } catch (SecurityError $e) {
  110.             $e->setSourceContext($this->source);
  111.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  112.                 $e->setTemplateLine($tags[$e->getTagName()]);
  113.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  114.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  115.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  116.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  117.             }
  118.             throw $e;
  119.         }
  120.     }
  121. }