An official website of the United States government Here's how you know ⌄
Error message
- Warning: rename(sites/default/files/php/twig/.vRxx2GvAf-M_he08V96K3lV3Z20,sites/default/files/php/twig/681e97c6d0177_block.html.twig_25TqHbuK16eIv4uTclKrwGlwc/KRFzA2KCgJ2z_Wxh9jsAku8ZlbLBQtf99SDmwVzBitE.php): Access is denied (code: 5) in Drupal\Component\PhpStorage\MTimeProtectedFastFileStorage->save() (line 88 of core\lib\Drupal\Component\PhpStorage\MTimeProtectedFastFileStorage.php).
Drupal\Component\PhpStorage\MTimeProtectedFastFileStorage->save('681e97c6d0177_block.html.twig_25TqHbuK16eIv4uTclKrwGlwc', '<?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template; /* themes/contrib/bootstrap/templates/block/block.html.twig */ class __TwigTemplate_980a72915faa6e4b0cdc2a3f2693515a extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ 'content' => [$this, 'block_content'], ]; $this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension'); $this->checkSecurity(); } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 49 $context["classes"] = [0 => "block", 1 => ("block-" . \Drupal\Component\Utility\Html::getClass($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, // line 51 ($context["configuration"] ?? null), "provider", [], "any", false, false, true, 51), 51, $this->source))), 2 => ("block-" . \Drupal\Component\Utility\Html::getClass($this->sandbox->ensureToStringAllowed( // line 52 ($context["plugin_id"] ?? null), 52, $this->source))), 3 => "clearfix"]; // line 56 echo "extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, ($context["attributes"] ?? null), "addClass", [0 => ($context["classes"] ?? null)], "method", false, false, true, 56), 56, $this->source), "html", null, true); echo "> "; // line 57 echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["title_prefix"] ?? null), 57, $this->source), "html", null, true); echo " "; // line 58 if (($context["label"] ?? null)) { // line 59 echo " extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, ($context["title_attributes"] ?? null), "addClass", [0 => "block-title"], "method", false, false, true, 59), 59, $this->source), "html", null, true); echo ">"; echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["label"] ?? null), 59, $this->source), "html", null, true); echo " "; } // line 61 echo " "; echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["title_suffix"] ?? null), 61, $this->source), "html", null, true); echo " "; // line 63 $this->displayBlock('content', $context, $blocks); // line 66 echo " "; } // line 63 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 64 echo " "; echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["content"] ?? null), 64, $this->source), "html", null, true); echo " "; } public function getTemplateName() { return "themes/contrib/bootstrap/templates/block/block.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 81 => 64, 77 => 63, 71 => 66, 69 => 63, 63 => 61, 55 => 59, 53 => 58, 49 => 57, 44 => 56, 42 => 52, 41 => 51, 40 => 49,); } public function getSourceContext() { return new Source("{# /** * @file * Default theme implementation to display a block. * * Available variables: * - \$block->subject: Block title. * - \$content: Block content. * - \$block->module: Module that generated the block. * - \$block->delta: An ID for the block, unique within each module. * - \$block->region: The block region embedding the current block. * - \$classes: String of classes that can be used to style contextually through * CSS. It can be manipulated through the variable \$classes_array from * preprocess functions. The default values can be one or more of the * following: * - block: The current template type, i.e., \"theming hook\". * - block-[module]: The module generating the block. For example, the user * module is responsible for handling the default user navigation block. In * that case the class would be 'block-user'. * - \$title_prefix (array): An array containing additional output populated by * modules, intended to be displayed in front of the main title tag that * appears in the template. * - \$title_suffix (array): An array containing additional output populated by * modules, intended to be displayed after the main title tag that appears in * the template. * * Helper variables: * - \$classes_array: Array of html class attribute values. It is flattened * into a string within the variable \$classes. * - \$block_zebra: Outputs 'odd' and 'even' dependent on each block region. * - \$zebra: Same output as \$block_zebra but independent of any block region. * - \$block_id: Counter dependent on each block region. * - \$id: Same output as \$block_id but independent of any block region. * - \$is_front: Flags true when presented in the front page. * - \$logged_in: Flags true when the current user is a logged-in member. * - \$is_admin: Flags true when the current user is an administrator. * - \$block_html_id: A valid HTML ID and guaranteed unique. * * @ingroup templates * * @see bootstrap_preprocess_block() * @see template_preprocess() * @see template_preprocess_block() * @see bootstrap_process_block() * @see template_process() */ #} {% set classes = [ 'block', 'block-' ~ configuration.provider|clean_class, 'block-' ~ plugin_id|clean_class, 'clearfix', ] %} {{ title_prefix }} {% if label %} {{ label }} {% endif %} {{ title_suffix }} {% block content %} {{ content }} {% endblock %} ", "themes/contrib/bootstrap/templates/block/block.html.twig", "E:\\websites\\nationalregistry_new\\web\\themes\\contrib\\bootstrap\\templates\\block\\block.html.twig"); } public function checkSecurity() { static $tags = array("set" => 49, "if" => 58, "block" => 63); static $filters = array("clean_class" => 51, "escape" => 56); static $functions = array(); try { $this->sandbox->checkSecurity( ['set', 'if', 'block'], ['clean_class', 'escape'], [] ); } catch (SecurityError $e) { $e->setSourceContext($this->source); 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; } } } ') (Line: 112) Drupal\Core\Template\TwigPhpStorageCache->write('681e97c6d0177_block.html.twig_25TqHbuK16eIv4uTclKrwGlwc', '<?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template; /* themes/contrib/bootstrap/templates/block/block.html.twig */ class __TwigTemplate_980a72915faa6e4b0cdc2a3f2693515a extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ 'content' => [$this, 'block_content'], ]; $this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension'); $this->checkSecurity(); } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 49 $context["classes"] = [0 => "block", 1 => ("block-" . \Drupal\Component\Utility\Html::getClass($this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, // line 51 ($context["configuration"] ?? null), "provider", [], "any", false, false, true, 51), 51, $this->source))), 2 => ("block-" . \Drupal\Component\Utility\Html::getClass($this->sandbox->ensureToStringAllowed( // line 52 ($context["plugin_id"] ?? null), 52, $this->source))), 3 => "clearfix"]; // line 56 echo "extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, ($context["attributes"] ?? null), "addClass", [0 => ($context["classes"] ?? null)], "method", false, false, true, 56), 56, $this->source), "html", null, true); echo "> "; // line 57 echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["title_prefix"] ?? null), 57, $this->source), "html", null, true); echo " "; // line 58 if (($context["label"] ?? null)) { // line 59 echo " extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, ($context["title_attributes"] ?? null), "addClass", [0 => "block-title"], "method", false, false, true, 59), 59, $this->source), "html", null, true); echo ">"; echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["label"] ?? null), 59, $this->source), "html", null, true); echo " "; } // line 61 echo " "; echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["title_suffix"] ?? null), 61, $this->source), "html", null, true); echo " "; // line 63 $this->displayBlock('content', $context, $blocks); // line 66 echo " "; } // line 63 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 64 echo " "; echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["content"] ?? null), 64, $this->source), "html", null, true); echo " "; } public function getTemplateName() { return "themes/contrib/bootstrap/templates/block/block.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 81 => 64, 77 => 63, 71 => 66, 69 => 63, 63 => 61, 55 => 59, 53 => 58, 49 => 57, 44 => 56, 42 => 52, 41 => 51, 40 => 49,); } public function getSourceContext() { return new Source("{# /** * @file * Default theme implementation to display a block. * * Available variables: * - \$block->subject: Block title. * - \$content: Block content. * - \$block->module: Module that generated the block. * - \$block->delta: An ID for the block, unique within each module. * - \$block->region: The block region embedding the current block. * - \$classes: String of classes that can be used to style contextually through * CSS. It can be manipulated through the variable \$classes_array from * preprocess functions. The default values can be one or more of the * following: * - block: The current template type, i.e., \"theming hook\". * - block-[module]: The module generating the block. For example, the user * module is responsible for handling the default user navigation block. In * that case the class would be 'block-user'. * - \$title_prefix (array): An array containing additional output populated by * modules, intended to be displayed in front of the main title tag that * appears in the template. * - \$title_suffix (array): An array containing additional output populated by * modules, intended to be displayed after the main title tag that appears in * the template. * * Helper variables: * - \$classes_array: Array of html class attribute values. It is flattened * into a string within the variable \$classes. * - \$block_zebra: Outputs 'odd' and 'even' dependent on each block region. * - \$zebra: Same output as \$block_zebra but independent of any block region. * - \$block_id: Counter dependent on each block region. * - \$id: Same output as \$block_id but independent of any block region. * - \$is_front: Flags true when presented in the front page. * - \$logged_in: Flags true when the current user is a logged-in member. * - \$is_admin: Flags true when the current user is an administrator. * - \$block_html_id: A valid HTML ID and guaranteed unique. * * @ingroup templates * * @see bootstrap_preprocess_block() * @see template_preprocess() * @see template_preprocess_block() * @see bootstrap_process_block() * @see template_process() */ #} {% set classes = [ 'block', 'block-' ~ configuration.provider|clean_class, 'block-' ~ plugin_id|clean_class, 'clearfix', ] %} {{ title_prefix }} {% if label %} {{ label }} {% endif %} {{ title_suffix }} {% block content %} {{ content }} {% endblock %} ", "themes/contrib/bootstrap/templates/block/block.html.twig", "E:\\websites\\nationalregistry_new\\web\\themes\\contrib\\bootstrap\\templates\\block\\block.html.twig"); } public function checkSecurity() { static $tags = array("set" => 49, "if" => 58, "block" => 63); static $filters = array("clean_class" => 51, "escape" => 56); static $functions = array(); try { $this->sandbox->checkSecurity( ['set', 'if', 'block'], ['clean_class', 'escape'], [] ); } catch (SecurityError $e) { $e->setSourceContext($this->source); 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; } } } ') (Line: 352) Twig\Environment->loadTemplate('__TwigTemplate_980a72915faa6e4b0cdc2a3f2693515a', 'themes/contrib/bootstrap/templates/block/block.html.twig') (Line: 312) Twig\Environment->load('themes/contrib/bootstrap/templates/block/block.html.twig') (Line: 53) twig_render_template('themes/contrib/bootstrap/templates/block/block.html.twig', Array) (Line: 372) Drupal\Core\Theme\ThemeManager->render('block', Array) (Line: 445) Drupal\Core\Render\Renderer->doRender(Array) (Line: 458) Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 204) Drupal\Core\Render\Renderer->render(Array) (Line: 474) Drupal\Core\Template\TwigExtension->escapeFilter(Object, Array, 'html', NULL, 1) (Line: 100) __TwigTemplate_d8cd7175826f7c3d13b63831b9608968->block_navbar(Array, Array) (Line: 171) Twig\Template->displayBlock('navbar', Array, Array) (Line: 60) __TwigTemplate_d8cd7175826f7c3d13b63831b9608968->doDisplay(Array, Array) (Line: 394) Twig\Template->displayWithErrorHandling(Array, Array) (Line: 367) Twig\Template->display(Array) (Line: 379) Twig\Template->render(Array, Array) (Line: 40) Twig\TemplateWrapper->render(Array) (Line: 53) twig_render_template('themes/custom/asc/templates/page.html.twig', Array) (Line: 372) Drupal\Core\Theme\ThemeManager->render('page', Array) (Line: 445) Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 204) Drupal\Core\Render\Renderer->render(Array) (Line: 474) Drupal\Core\Template\TwigExtension->escapeFilter(Object, Array, 'html', NULL, 1) (Line: 90) __TwigTemplate_ebb78f26b6b6d2ad71361897b625d942->doDisplay(Array, Array) (Line: 394) Twig\Template->displayWithErrorHandling(Array, Array) (Line: 367) Twig\Template->display(Array) (Line: 379) Twig\Template->render(Array, Array) (Line: 40) Twig\TemplateWrapper->render(Array) (Line: 53) twig_render_template('themes/custom/asc/templates/html/html.html.twig', Array) (Line: 372) Drupal\Core\Theme\ThemeManager->render('html', Array) (Line: 445) Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 204) Drupal\Core\Render\Renderer->render(Array) (Line: 158) Drupal\Core\Render\MainContent\HtmlRenderer->Drupal\Core\Render\MainContent\{closure}() (Line: 592) Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 159) Drupal\Core\Render\MainContent\HtmlRenderer->renderResponse(Array, Object, Object) (Line: 90) Drupal\Core\EventSubscriber\MainContentViewSubscriber->onViewRenderArray(Object, 'kernel.view', Object) call_user_func(Array, Object, 'kernel.view', Object) (Line: 111) Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch(Object, 'kernel.view') (Line: 186) Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 76) Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 58) Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 48) Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 191) Drupal\page_cache\StackMiddleware\PageCache->fetch(Object, 1, 1) (Line: 128) Drupal\page_cache\StackMiddleware\PageCache->lookup(Object, 1, 1) (Line: 82) Drupal\page_cache\StackMiddleware\PageCache->handle(Object, 1, 1) (Line: 48) Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51) Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 51) Drupal\Core\StackMiddleware\StackedHttpKernel->handle(Object, 1, 1) (Line: 704) Drupal\Core\DrupalKernel->handle(Object) (Line: 19)
- Warning: rename(sites/default/files/php/twig/.9FxGPeZwbcEek39-nP4lIZk-S6Y,sites/default/files/php/twig/681e97c6d0177_region.html.twig_2KkPhIxUeGfA851IJMgX-gRpt/0gRLfDRc4STcoxseZMR5TSeW1PBto5r8wAwcClYlYWM.php): Access is denied (code: 5) in Drupal\Component\PhpStorage\MTimeProtectedFastFileStorage->save() (line 88 of core\lib\Drupal\Component\PhpStorage\MTimeProtectedFastFileStorage.php).
Drupal\Component\PhpStorage\MTimeProtectedFastFileStorage->save('681e97c6d0177_region.html.twig_2KkPhIxUeGfA851IJMgX-gRpt', '<?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template; /* themes/custom/asc/templates/region.html.twig */ class __TwigTemplate_b9318eec9820b556b7b9e51b72bc0941 extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ ]; $this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension'); $this->checkSecurity(); } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 18 $context["classes"] = [0 => "region", 1 => ("region-" . \Drupal\Component\Utility\Html::getClass($this->sandbox->ensureToStringAllowed( // line 20 ($context["region"] ?? null), 20, $this->source))), 2 => "clearfix"]; // line 24 if (($context["content"] ?? null)) { // line 25 echo " extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, ($context["attributes"] ?? null), "addClass", [0 => ($context["classes"] ?? null)], "method", false, false, true, 25), 25, $this->source), "html", null, true); echo "> "; // line 26 echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["content"] ?? null), 26, $this->source), "html", null, true); echo " "; } } public function getTemplateName() { return "themes/custom/asc/templates/region.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 49 => 26, 44 => 25, 42 => 24, 40 => 20, 39 => 18,); } public function getSourceContext() { return new Source("{# /** * @file * Theme override to display a region. * * Available variables: * - content: The content for this region, typically blocks. * - attributes: HTML attributes for the region div. * - region: The name of the region variable as defined in the theme's * .info.yml file. * * @ingroup templates * * @see template_preprocess_region() */ #} {% set classes = [ 'region', 'region-' ~ region|clean_class, \t'clearfix', ] %} {% if content %} {{ content }} {% endif %} ", "themes/custom/asc/templates/region.html.twig", "E:\\websites\\nationalregistry_new\\web\\themes\\custom\\asc\\templates\\region.html.twig"); } public function checkSecurity() { static $tags = array("set" => 18, "if" => 24); static $filters = array("clean_class" => 20, "escape" => 25); static $functions = array(); try { $this->sandbox->checkSecurity( ['set', 'if'], ['clean_class', 'escape'], [] ); } catch (SecurityError $e) { $e->setSourceContext($this->source); 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; } } } ') (Line: 112) Drupal\Core\Template\TwigPhpStorageCache->write('681e97c6d0177_region.html.twig_2KkPhIxUeGfA851IJMgX-gRpt', '<?php use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template; /* themes/custom/asc/templates/region.html.twig */ class __TwigTemplate_b9318eec9820b556b7b9e51b72bc0941 extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ ]; $this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension'); $this->checkSecurity(); } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 18 $context["classes"] = [0 => "region", 1 => ("region-" . \Drupal\Component\Utility\Html::getClass($this->sandbox->ensureToStringAllowed( // line 20 ($context["region"] ?? null), 20, $this->source))), 2 => "clearfix"]; // line 24 if (($context["content"] ?? null)) { // line 25 echo " extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(twig_get_attribute($this->env, $this->source, ($context["attributes"] ?? null), "addClass", [0 => ($context["classes"] ?? null)], "method", false, false, true, 25), 25, $this->source), "html", null, true); echo "> "; // line 26 echo $this->extensions['Drupal\Core\Template\TwigExtension']->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["content"] ?? null), 26, $this->source), "html", null, true); echo " "; } } public function getTemplateName() { return "themes/custom/asc/templates/region.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 49 => 26, 44 => 25, 42 => 24, 40 => 20, 39 => 18,); } public function getSourceContext() { return new Source("{# /** * @file * Theme override to display a region. * * Available variables: * - content: The content for this region, typically blocks. * - attributes: HTML attributes for the region div. * - region: The name of the region variable as defined in the theme's * .info.yml file. * * @ingroup templates * * @see template_preprocess_region() */ #} {% set classes = [ 'region', 'region-' ~ region|clean_class, \t'clearfix', ] %} {% if content %} {{ content }} {% endif %} ", "themes/custom/asc/templates/region.html.twig", "E:\\websites\\nationalregistry_new\\web\\themes\\custom\\asc\\templates\\region.html.twig"); } public function checkSecurity() { static $tags = array("set" => 18, "if" => 24); static $filters = array("clean_class" => 20, "escape" => 25); static $functions = array(); try { $this->sandbox->checkSecurity( ['set', 'if'], ['clean_class', 'escape'], [] ); } catch (SecurityError $e) { $e->setSourceContext($this->source); 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; } } } ') (Line: 352) Twig\Environment->loadTemplate('__TwigTemplate_b9318eec9820b556b7b9e51b72bc0941', 'themes/custom/asc/templates/region.html.twig') (Line: 312) Twig\Environment->load('themes/custom/asc/templates/region.html.twig') (Line: 53) twig_render_template('themes/custom/asc/templates/region.html.twig', Array) (Line: 372) Drupal\Core\Theme\ThemeManager->render('region', Array) (Line: 501) Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 204) Drupal\Core\Render\Renderer->render(Array) (Line: 474) Drupal\Core\Template\TwigExtension->escapeFilter(Object, Array, 'html', NULL, 1) (Line: 100) __TwigTemplate_d8cd7175826f7c3d13b63831b9608968->block_navbar(Array, Array) (Line: 171) Twig\Template->displayBlock('navbar', Array, Array) (Line: 60) __TwigTemplate_d8cd7175826f7c3d13b63831b9608968->doDisplay(Array, Array) (Line: 394) Twig\Template->displayWithErrorHandling(Array, Array) (Line: 367) Twig\Template->display(Array) (Line: 379) Twig\Template->render(Array, Array) (Line: 40) Twig\TemplateWrapper->render(Array) (Line: 53) twig_render_template('themes/custom/asc/templates/page.html.twig', Array) (Line: 372) Drupal\Core\Theme\ThemeManager->render('page', Array) (Line: 445) Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 204) Drupal\Core\Render\Renderer->render(Array) (Line: 474) Drupal\Core\Template\TwigExtension->escapeFilter(Object, Array, 'html', NULL, 1) (Line: 90) __TwigTemplate_ebb78f26b6b6d2ad71361897b625d942->doDisplay(Array, Array) (Line: 394) Twig\Template->displayWithErrorHandling(Array, Array) (Line: 367) Twig\Template->display(Array) (Line: 379) Twig\Template->render(Array, Array) (Line: 40) Twig\TemplateWrapper->render(Array) (Line: 53) twig_render_template('themes/custom/asc/templates/html/html.html.twig', Array) (Line: 372) Drupal\Core\Theme\ThemeManager->render('html', Array) (Line: 445) Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 204) Drupal\Core\Render\Renderer->render(Array) (Line: 158) Drupal\Core\Render\MainContent\HtmlRenderer->Drupal\Core\Render\MainContent\{closure}() (Line: 592) Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 159) Drupal\Core\Render\MainContent\HtmlRenderer->renderResponse(Array, Object, Object) (Line: 90) Drupal\Core\EventSubscriber\MainContentViewSubscriber->onViewRenderArray(Object, 'kernel.view', Object) call_user_func(Array, Object, 'kernel.view', Object) (Line: 111) Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch(Object, 'kernel.view') (Line: 186) Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 76) Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 58) Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 48) Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 191) Drupal\page_cache\StackMiddleware\PageCache->fetch(Object, 1, 1) (Line: 128) Drupal\page_cache\StackMiddleware\PageCache->lookup(Object, 1, 1) (Line: 82) Drupal\page_cache\StackMiddleware\PageCache->handle(Object, 1, 1) (Line: 48) Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51) Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 51) Drupal\Core\StackMiddleware\StackedHttpKernel->handle(Object, 1, 1) (Line: 704) Drupal\Core\DrupalKernel->handle(Object) (Line: 19)