parent = false; $this->blocks = [ 'content' => [$this, 'block_content'], ]; $this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension'); $tags = ["if" => 32, "block" => 36]; $filters = ["escape" => 30]; $functions = []; try { $this->sandbox->checkSecurity( ['if', 'block'], ['escape'], [] ); } catch (SecurityError $e) { $e->setSourceContext($this->getSourceContext()); if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) { $e->setTemplateLine($tags[$e->getTagName()]); } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) { $e->setTemplateLine($filters[$e->getFilterName()]); } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) { $e->setTemplateLine($functions[$e->getFunctionName()]); } throw $e; } } protected function doDisplay(array $context, array $blocks = []) { // line 30 echo "env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["attributes"] ?? null)), "html", null, true); echo " class=\"col-9 col-sm-10 col-xl-auto\"> "; // line 31 echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["title_prefix"] ?? null)), "html", null, true); echo " "; // line 32 if (($context["label"] ?? null)) { // line 33 echo " env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["title_attributes"] ?? null)), "html", null, true); echo ">"; echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["label"] ?? null)), "html", null, true); echo " "; } // line 35 echo " "; echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["title_suffix"] ?? null)), "html", null, true); echo " "; // line 36 $this->displayBlock('content', $context, $blocks); // line 43 echo " "; } // line 36 public function block_content($context, array $blocks = []) { // line 37 echo "
"; // line 39 echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["content"] ?? null)), "html", null, true); echo "
"; } public function getTemplateName() { return "themes/custom/popsu_colloque/template/block/block--popsu-colloque-branding.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 94 => 39, 90 => 37, 87 => 36, 82 => 43, 80 => 36, 75 => 35, 67 => 33, 65 => 32, 61 => 31, 56 => 30,); } /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */ public function getSource() { @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED); return $this->getSourceContext()->getCode(); } public function getSourceContext() { return new Source("", "themes/custom/popsu_colloque/template/block/block--popsu-colloque-branding.html.twig", "/var/www/html/web/themes/custom/popsu_colloque/template/block/block--popsu-colloque-branding.html.twig"); } }