var/cache/dev/twig/32/32929a471e3b787a119673e2d97ecb72.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. /* areas/map/view.html.twig */
  14. class __TwigTemplate_4ebfa6c3fec03c5c6aaa27098049b852 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""areas/map/view.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""areas/map/view.html.twig"));
  35.         // line 1
  36.         echo "<section class=\"area-map\">
  37.     ";
  38.         // line 3
  39.         echo $this->extensions['Pimcore\Twig\Extension\DocumentEditableExtension']->renderEditable($context"renderlet""map", ["controller" => "App\\Controller\\DefaultController::MapRenderletAction""title" => "Drag the Service Providers folder here""height" => "auto"]);
  40.         // line 9
  41.         echo "
  42. </section>
  43. ";
  44.         
  45.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  46.         
  47.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  48.     }
  49.     public function getTemplateName()
  50.     {
  51.         return "areas/map/view.html.twig";
  52.     }
  53.     public function isTraitable()
  54.     {
  55.         return false;
  56.     }
  57.     public function getDebugInfo()
  58.     {
  59.         return array (  51 => 9,  49 => 3,  45 => 1,);
  60.     }
  61.     public function getSourceContext()
  62.     {
  63.         return new Source("<section class=\"area-map\">
  64.     {{
  65.         pimcore_renderlet('map', {
  66.             controller: 'App\\\\Controller\\\\DefaultController::MapRenderletAction',
  67.             title: 'Drag the Service Providers folder here',
  68.             height: 'auto'
  69.         })
  70.     }}
  71. </section>
  72. ""areas/map/view.html.twig""/sites/pimcore/cessda-dev/templates/areas/map/view.html.twig");
  73.     }
  74.     
  75.     public function checkSecurity()
  76.     {
  77.         static $tags = array();
  78.         static $filters = array();
  79.         static $functions = array("pimcore_renderlet" => 4);
  80.         try {
  81.             $this->sandbox->checkSecurity(
  82.                 [],
  83.                 [],
  84.                 ['pimcore_renderlet']
  85.             );
  86.         } catch (SecurityError $e) {
  87.             $e->setSourceContext($this->source);
  88.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  89.                 $e->setTemplateLine($tags[$e->getTagName()]);
  90.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  91.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  92.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  93.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  94.             }
  95.             throw $e;
  96.         }
  97.     }
  98. }