var/cache/dev/twig/35/35ab28b2153eedbb901fb3e7fe88827f.php line 35

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. /* @FoxHabbitBasis/Layout/snippet-section-frontend.html.twig */
  14. class __TwigTemplate_4da2b090298160f233c06329b6f81f5e 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""@FoxHabbitBasis/Layout/snippet-section-frontend.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""@FoxHabbitBasis/Layout/snippet-section-frontend.html.twig"));
  35.         // line 1
  36.         $this->displayBlock("content"$context$blocks);
  37.         echo "
  38. ";
  39.         
  40.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  41.         
  42.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  43.     }
  44.     public function getTemplateName()
  45.     {
  46.         return "@FoxHabbitBasis/Layout/snippet-section-frontend.html.twig";
  47.     }
  48.     public function isTraitable()
  49.     {
  50.         return false;
  51.     }
  52.     public function getDebugInfo()
  53.     {
  54.         return array (  45 => 1,);
  55.     }
  56.     public function getSourceContext()
  57.     {
  58.         return new Source("{{ block('content') }}
  59. ""@FoxHabbitBasis/Layout/snippet-section-frontend.html.twig""/srv/httpd/vhosts/lorch-test/releases/51/bundles/FoxHabbit/BasisBundle/Resources/views/Layout/snippet-section-frontend.html.twig");
  60.     }
  61.     
  62.     public function checkSecurity()
  63.     {
  64.         static $tags = array();
  65.         static $filters = array();
  66.         static $functions = array();
  67.         try {
  68.             $this->sandbox->checkSecurity(
  69.                 [],
  70.                 [],
  71.                 []
  72.             );
  73.         } catch (SecurityError $e) {
  74.             $e->setSourceContext($this->source);
  75.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  76.                 $e->setTemplateLine($tags[$e->getTagName()]);
  77.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  78.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  79.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  80.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  81.             }
  82.             throw $e;
  83.         }
  84.     }
  85. }