var/cache/dev/twig/95/95bfa9c9578b3dee3fda341cdf94e870.php line 45

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/default-content.html.twig */
  14. class __TwigTemplate_6d1778b9177dbf1609ed5c6a1278a4d7 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/default-content.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/default-content.html.twig"));
  35.         // line 1
  36.         echo $this->extensions['Pimcore\Twig\Extension\DocumentEditableExtension']->renderEditable($context"areablock""content");
  37.         
  38.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  39.         
  40.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  41.     }
  42.     public function getTemplateName()
  43.     {
  44.         return "includes/default-content.html.twig";
  45.     }
  46.     public function isTraitable()
  47.     {
  48.         return false;
  49.     }
  50.     public function getDebugInfo()
  51.     {
  52.         return array (  45 => 1,);
  53.     }
  54.     public function getSourceContext()
  55.     {
  56.         return new Source("{{ pimcore_areablock('content') }}""includes/default-content.html.twig""/var/www/clients/client2/web45/web/pc/templates/includes/default-content.html.twig");
  57.     }
  58.     
  59.     public function checkSecurity()
  60.     {
  61.         static $tags = array();
  62.         static $filters = array();
  63.         static $functions = array("pimcore_areablock" => 1);
  64.         try {
  65.             $this->sandbox->checkSecurity(
  66.                 [],
  67.                 [],
  68.                 ['pimcore_areablock']
  69.             );
  70.         } catch (SecurityError $e) {
  71.             $e->setSourceContext($this->source);
  72.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  73.                 $e->setTemplateLine($tags[$e->getTagName()]);
  74.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  75.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  76.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  77.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  78.             }
  79.             throw $e;
  80.         }
  81.     }
  82. }