Error message

Warning: file_put_contents(sites/default/files/php/twig/5df940fe5b88f_checkbox.html.twig_w8vCsyRKU6BSCvazlYs0qPyPS/.htaccess): failed to open stream: Permission denied in Drupal\Component\PhpStorage\FileStorage->ensureDirectory() (line 123 of core/lib/Drupal/Component/PhpStorage/FileStorage.php).
Drupal\Component\PhpStorage\FileStorage->ensureDirectory('sites/default/files/php/twig/5df940fe5b88f_checkbox.html.twig_w8vCsyRKU6BSCvazlYs0qPyPS') (Line: 86)
Drupal\Component\PhpStorage\MTimeProtectedFastFileStorage->save('5df940fe5b88f_checkbox.html.twig_w8vCsyRKU6BSCvazlYs0qPyPS', '<?php

use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
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;

/* @burgernet_theme/components/form-elements/checkbox.html.twig */
class __TwigTemplate_118635c4cb38e1c17bd3e53cdb5045f4fad3bf2c0034fbc0185fb08c9176bc2a extends \Twig\Template
{
    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->parent = false;

        $this->blocks = [
        ];
        $this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension');
        $tags = ["macro" => 22, "if" => 25, "for" => 33];
        $filters = ["escape" => 24, "raw" => 43];
        $functions = [];

        try {
            $this->sandbox->checkSecurity(
                ['macro', 'if', 'for'],
                ['escape', 'raw'],
                []
            );
        } 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 21
        echo "
";
        // line 61
        echo "
";
    }

    // line 22
    public function getcheckbox($__data__ = null, ...$__varargs__)
    {
        $context = $this->env->mergeGlobals([
            "data" => $__data__,
            "varargs" => $__varargs__,
        ]);

        $blocks = [];

        ob_start(function () { return ''; });
        try {
            // line 23
            echo "
    env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
            echo " js-form-item-";
            echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
            // line 25
            if ($this->getAttribute(($context["data"] ?? null), "horizontal", [])) {
                echo " checkbox--horizontal";
            }
            // line 26
            if ($this->getAttribute(($context["data"] ?? null), "switch", [])) {
                echo " checkbox--has-switch";
            }
            // line 27
            if ($this->getAttribute(($context["data"] ?? null), "class", [])) {
                echo " ";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "class", [])), "html", null, true);
            }
            // line 28
            if ($this->getAttribute(($context["data"] ?? null), "disabled", [])) {
                echo " form-disabled";
            }
            echo "\"";
            // line 29
            if ($this->getAttribute(($context["data"] ?? null), "validationTypes", [])) {
                echo " data-validation-types=\"";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "validationTypes", [])), "html", null, true);
                echo "\"";
            }
            // line 30
            if ($this->getAttribute(($context["data"] ?? null), "formName", [])) {
                echo " js-hook-input=\"";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "formName", [])), "html", null, true);
                echo "\"";
            }
            echo ">

        
        ";
            // line 33
            $context['_parent'] = $context;
            $context['_seq'] = twig_ensure_traversable($this->getAttribute(($context["data"] ?? null), "options", []));
            foreach ($context['_seq'] as $context["_key"] => $context["option"]) {
                // line 34
                echo "            env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
                echo "\"
                value=\"";
                // line 37
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "value", [])), "html", null, true);
                echo "\"
                id=\"";
                // line 38
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "id", [])), "html", null, true);
                echo "\"";
                // line 39
                if ($this->getAttribute(($context["data"] ?? null), "required", [])) {
                    echo " required=\"required\"";
                }
                // line 40
                if ($this->getAttribute($context["option"], "disabled", [])) {
                    echo " disabled=\"disabled\"";
                }
                // line 41
                if (($this->getAttribute($context["option"], "checked", []) === "true")) {
                    echo " checked=\"checked\"";
                }
                // line 42
                if ($this->getAttribute($context["option"], "hook", [])) {
                    echo " js-hook-";
                    echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "hook", [])), "html", null, true);
                }
                // line 43
                if ($this->getAttribute($context["option"], "attr", [])) {
                    echo " ";
                    echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "attr", [])));
                }
                echo ">
            env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "id", [])), "html", null, true);
                echo "\" role=\"button\">
                ";
                // line 45
                if ($this->getAttribute(($context["data"] ?? null), "switch", [])) {
                    // line 46
                    echo "                
                    
                
                ";
                }
                // line 50
                echo "                ";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "label", [])));
                echo "
                
            
        ";
            }
            $_parent = $context['_parent'];
            unset($context['_seq'], $context['_iterated'], $context['_key'], $context['option'], $context['_parent'], $context['loop']);
            $context = array_intersect_key($context, $_parent) + $_parent;
            // line 54
            echo "        

        ";
            // line 56
            echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "error", [])), "html", null, true);
            echo "

    

";
        } catch (\Exception $e) {
            ob_end_clean();

            throw $e;
        } catch (\Throwable $e) {
            ob_end_clean();

            throw $e;
        }

        return ('' === $tmp = ob_get_clean()) ? '' : new Markup($tmp, $this->env->getCharset());
    }

    // line 62
    public function getpaddedCheckbox($__data__ = null, ...$__varargs__)
    {
        $context = $this->env->mergeGlobals([
            "data" => $__data__,
            "varargs" => $__varargs__,
        ]);

        $blocks = [];

        ob_start(function () { return ''; });
        try {
            // line 63
            echo "
    env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
            echo " js-form-item-";
            echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
            // line 65
            if ($this->getAttribute(($context["data"] ?? null), "horizontal", [])) {
                echo " checkbox--horizontal";
            }
            // line 66
            if ($this->getAttribute(($context["data"] ?? null), "switch", [])) {
                echo " checkbox--has-switch";
            }
            // line 67
            if ($this->getAttribute(($context["data"] ?? null), "class", [])) {
                echo " ";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "class", [])), "html", null, true);
            }
            // line 68
            if ($this->getAttribute(($context["data"] ?? null), "disabled", [])) {
                echo " form-disabled";
            }
            echo "\"";
            // line 69
            if ($this->getAttribute(($context["data"] ?? null), "validationTypes", [])) {
                echo " data-validation-types=\"";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "validationTypes", [])), "html", null, true);
                echo "\"";
            }
            // line 70
            if ($this->getAttribute(($context["data"] ?? null), "formName", [])) {
                echo " js-hook-input=\"";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "formName", [])), "html", null, true);
                echo "\"";
            }
            echo ">
        

            
            ";
            // line 74
            $context['_parent'] = $context;
            $context['_seq'] = twig_ensure_traversable($this->getAttribute(($context["data"] ?? null), "options", []));
            foreach ($context['_seq'] as $context["_key"] => $context["option"]) {
                // line 75
                echo "                env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
                echo "\"
                    value=\"";
                // line 78
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "value", [])), "html", null, true);
                echo "\"
                    id=\"";
                // line 79
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "id", [])), "html", null, true);
                echo "\"";
                // line 80
                if ($this->getAttribute(($context["data"] ?? null), "required", [])) {
                    echo " required=\"required\"";
                }
                // line 81
                if ($this->getAttribute($context["option"], "disabled", [])) {
                    echo " disabled=\"disabled\"";
                }
                // line 82
                if ($this->getAttribute($context["option"], "checked", [])) {
                    echo " checked=\"checked\"";
                }
                // line 83
                if ($this->getAttribute($context["option"], "hook", [])) {
                    echo " js-hook-";
                    echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "hook", [])), "html", null, true);
                }
                // line 84
                if ($this->getAttribute($context["option"], "attr", [])) {
                    echo " ";
                    echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "attr", [])));
                }
                echo ">
                env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "id", [])), "html", null, true);
                echo "\" role=\"button\">
                    ";
                // line 86
                if ($this->getAttribute(($context["data"] ?? null), "switch", [])) {
                    // line 87
                    echo "                    
                        
                    
                    ";
                }
                // line 91
                echo "                    ";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "label", [])));
                echo "
                    
                
            ";
            }
            $_parent = $context['_parent'];
            unset($context['_seq'], $context['_iterated'], $context['_key'], $context['option'], $context['_parent'], $context['loop']);
            $context = array_intersect_key($context, $_parent) + $_parent;
            // line 95
            echo "            
            
                ";
            // line 97
            if ($this->getAttribute(($context["data"] ?? null), "caller", [])) {
                // line 98
                echo "
                    ";
                // line 99
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "caller", [])));
                echo "

                ";
            }
            // line 102
            echo "            
        
        ";
            // line 104
            echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "error", [])), "html", null, true);
            echo "
    

";
        } catch (\Exception $e) {
            ob_end_clean();

            throw $e;
        } catch (\Throwable $e) {
            ob_end_clean();

            throw $e;
        }

        return ('' === $tmp = ob_get_clean()) ? '' : new Markup($tmp, $this->env->getCharset());
    }

    public function getTemplateName()
    {
        return "@burgernet_theme/components/form-elements/checkbox.html.twig";
    }

    public function isTraitable()
    {
        return false;
    }

    public function getDebugInfo()
    {
        return array (  345 => 104,  341 => 102,  335 => 99,  332 => 98,  330 => 97,  326 => 95,  315 => 91,  309 => 87,  307 => 86,  303 => 85,  296 => 84,  291 => 83,  287 => 82,  283 => 81,  279 => 80,  276 => 79,  272 => 78,  268 => 77,  264 => 75,  260 => 74,  249 => 70,  243 => 69,  238 => 68,  233 => 67,  229 => 66,  225 => 65,  221 => 64,  218 => 63,  206 => 62,  186 => 56,  182 => 54,  171 => 50,  165 => 46,  163 => 45,  159 => 44,  152 => 43,  147 => 42,  143 => 41,  139 => 40,  135 => 39,  132 => 38,  128 => 37,  124 => 36,  120 => 34,  116 => 33,  106 => 30,  100 => 29,  95 => 28,  90 => 27,  86 => 26,  82 => 25,  78 => 24,  75 => 23,  63 => 22,  58 => 61,  55 => 21,);
    }

    /** @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("", "@burgernet_theme/components/form-elements/checkbox.html.twig", "/var/www/website/app/web/themes/burgernet_theme/templates/components/form-elements/checkbox.html.twig");
    }
}
') (Line: 111)
Drupal\Core\Template\TwigPhpStorageCache->write('5df940fe5b88f_checkbox.html.twig_w8vCsyRKU6BSCvazlYs0qPyPS', '<?php

use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
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;

/* @burgernet_theme/components/form-elements/checkbox.html.twig */
class __TwigTemplate_118635c4cb38e1c17bd3e53cdb5045f4fad3bf2c0034fbc0185fb08c9176bc2a extends \Twig\Template
{
    public function __construct(Environment $env)
    {
        parent::__construct($env);

        $this->parent = false;

        $this->blocks = [
        ];
        $this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension');
        $tags = ["macro" => 22, "if" => 25, "for" => 33];
        $filters = ["escape" => 24, "raw" => 43];
        $functions = [];

        try {
            $this->sandbox->checkSecurity(
                ['macro', 'if', 'for'],
                ['escape', 'raw'],
                []
            );
        } 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 21
        echo "
";
        // line 61
        echo "
";
    }

    // line 22
    public function getcheckbox($__data__ = null, ...$__varargs__)
    {
        $context = $this->env->mergeGlobals([
            "data" => $__data__,
            "varargs" => $__varargs__,
        ]);

        $blocks = [];

        ob_start(function () { return ''; });
        try {
            // line 23
            echo "
    env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
            echo " js-form-item-";
            echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
            // line 25
            if ($this->getAttribute(($context["data"] ?? null), "horizontal", [])) {
                echo " checkbox--horizontal";
            }
            // line 26
            if ($this->getAttribute(($context["data"] ?? null), "switch", [])) {
                echo " checkbox--has-switch";
            }
            // line 27
            if ($this->getAttribute(($context["data"] ?? null), "class", [])) {
                echo " ";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "class", [])), "html", null, true);
            }
            // line 28
            if ($this->getAttribute(($context["data"] ?? null), "disabled", [])) {
                echo " form-disabled";
            }
            echo "\"";
            // line 29
            if ($this->getAttribute(($context["data"] ?? null), "validationTypes", [])) {
                echo " data-validation-types=\"";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "validationTypes", [])), "html", null, true);
                echo "\"";
            }
            // line 30
            if ($this->getAttribute(($context["data"] ?? null), "formName", [])) {
                echo " js-hook-input=\"";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "formName", [])), "html", null, true);
                echo "\"";
            }
            echo ">

        
        ";
            // line 33
            $context['_parent'] = $context;
            $context['_seq'] = twig_ensure_traversable($this->getAttribute(($context["data"] ?? null), "options", []));
            foreach ($context['_seq'] as $context["_key"] => $context["option"]) {
                // line 34
                echo "            env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
                echo "\"
                value=\"";
                // line 37
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "value", [])), "html", null, true);
                echo "\"
                id=\"";
                // line 38
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "id", [])), "html", null, true);
                echo "\"";
                // line 39
                if ($this->getAttribute(($context["data"] ?? null), "required", [])) {
                    echo " required=\"required\"";
                }
                // line 40
                if ($this->getAttribute($context["option"], "disabled", [])) {
                    echo " disabled=\"disabled\"";
                }
                // line 41
                if (($this->getAttribute($context["option"], "checked", []) === "true")) {
                    echo " checked=\"checked\"";
                }
                // line 42
                if ($this->getAttribute($context["option"], "hook", [])) {
                    echo " js-hook-";
                    echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "hook", [])), "html", null, true);
                }
                // line 43
                if ($this->getAttribute($context["option"], "attr", [])) {
                    echo " ";
                    echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "attr", [])));
                }
                echo ">
            env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "id", [])), "html", null, true);
                echo "\" role=\"button\">
                ";
                // line 45
                if ($this->getAttribute(($context["data"] ?? null), "switch", [])) {
                    // line 46
                    echo "                
                    
                
                ";
                }
                // line 50
                echo "                ";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "label", [])));
                echo "
                
            
        ";
            }
            $_parent = $context['_parent'];
            unset($context['_seq'], $context['_iterated'], $context['_key'], $context['option'], $context['_parent'], $context['loop']);
            $context = array_intersect_key($context, $_parent) + $_parent;
            // line 54
            echo "        

        ";
            // line 56
            echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "error", [])), "html", null, true);
            echo "

    

";
        } catch (\Exception $e) {
            ob_end_clean();

            throw $e;
        } catch (\Throwable $e) {
            ob_end_clean();

            throw $e;
        }

        return ('' === $tmp = ob_get_clean()) ? '' : new Markup($tmp, $this->env->getCharset());
    }

    // line 62
    public function getpaddedCheckbox($__data__ = null, ...$__varargs__)
    {
        $context = $this->env->mergeGlobals([
            "data" => $__data__,
            "varargs" => $__varargs__,
        ]);

        $blocks = [];

        ob_start(function () { return ''; });
        try {
            // line 63
            echo "
    env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
            echo " js-form-item-";
            echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
            // line 65
            if ($this->getAttribute(($context["data"] ?? null), "horizontal", [])) {
                echo " checkbox--horizontal";
            }
            // line 66
            if ($this->getAttribute(($context["data"] ?? null), "switch", [])) {
                echo " checkbox--has-switch";
            }
            // line 67
            if ($this->getAttribute(($context["data"] ?? null), "class", [])) {
                echo " ";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "class", [])), "html", null, true);
            }
            // line 68
            if ($this->getAttribute(($context["data"] ?? null), "disabled", [])) {
                echo " form-disabled";
            }
            echo "\"";
            // line 69
            if ($this->getAttribute(($context["data"] ?? null), "validationTypes", [])) {
                echo " data-validation-types=\"";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "validationTypes", [])), "html", null, true);
                echo "\"";
            }
            // line 70
            if ($this->getAttribute(($context["data"] ?? null), "formName", [])) {
                echo " js-hook-input=\"";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "formName", [])), "html", null, true);
                echo "\"";
            }
            echo ">
        

            
            ";
            // line 74
            $context['_parent'] = $context;
            $context['_seq'] = twig_ensure_traversable($this->getAttribute(($context["data"] ?? null), "options", []));
            foreach ($context['_seq'] as $context["_key"] => $context["option"]) {
                // line 75
                echo "                env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "name", [])), "html", null, true);
                echo "\"
                    value=\"";
                // line 78
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "value", [])), "html", null, true);
                echo "\"
                    id=\"";
                // line 79
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "id", [])), "html", null, true);
                echo "\"";
                // line 80
                if ($this->getAttribute(($context["data"] ?? null), "required", [])) {
                    echo " required=\"required\"";
                }
                // line 81
                if ($this->getAttribute($context["option"], "disabled", [])) {
                    echo " disabled=\"disabled\"";
                }
                // line 82
                if ($this->getAttribute($context["option"], "checked", [])) {
                    echo " checked=\"checked\"";
                }
                // line 83
                if ($this->getAttribute($context["option"], "hook", [])) {
                    echo " js-hook-";
                    echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "hook", [])), "html", null, true);
                }
                // line 84
                if ($this->getAttribute($context["option"], "attr", [])) {
                    echo " ";
                    echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "attr", [])));
                }
                echo ">
                env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "id", [])), "html", null, true);
                echo "\" role=\"button\">
                    ";
                // line 86
                if ($this->getAttribute(($context["data"] ?? null), "switch", [])) {
                    // line 87
                    echo "                    
                        
                    
                    ";
                }
                // line 91
                echo "                    ";
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute($context["option"], "label", [])));
                echo "
                    
                
            ";
            }
            $_parent = $context['_parent'];
            unset($context['_seq'], $context['_iterated'], $context['_key'], $context['option'], $context['_parent'], $context['loop']);
            $context = array_intersect_key($context, $_parent) + $_parent;
            // line 95
            echo "            
            
                ";
            // line 97
            if ($this->getAttribute(($context["data"] ?? null), "caller", [])) {
                // line 98
                echo "
                    ";
                // line 99
                echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->renderVar($this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "caller", [])));
                echo "

                ";
            }
            // line 102
            echo "            
        
        ";
            // line 104
            echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["data"] ?? null), "error", [])), "html", null, true);
            echo "
    

";
        } catch (\Exception $e) {
            ob_end_clean();

            throw $e;
        } catch (\Throwable $e) {
            ob_end_clean();

            throw $e;
        }

        return ('' === $tmp = ob_get_clean()) ? '' : new Markup($tmp, $this->env->getCharset());
    }

    public function getTemplateName()
    {
        return "@burgernet_theme/components/form-elements/checkbox.html.twig";
    }

    public function isTraitable()
    {
        return false;
    }

    public function getDebugInfo()
    {
        return array (  345 => 104,  341 => 102,  335 => 99,  332 => 98,  330 => 97,  326 => 95,  315 => 91,  309 => 87,  307 => 86,  303 => 85,  296 => 84,  291 => 83,  287 => 82,  283 => 81,  279 => 80,  276 => 79,  272 => 78,  268 => 77,  264 => 75,  260 => 74,  249 => 70,  243 => 69,  238 => 68,  233 => 67,  229 => 66,  225 => 65,  221 => 64,  218 => 63,  206 => 62,  186 => 56,  182 => 54,  171 => 50,  165 => 46,  163 => 45,  159 => 44,  152 => 43,  147 => 42,  143 => 41,  139 => 40,  135 => 39,  132 => 38,  128 => 37,  124 => 36,  120 => 34,  116 => 33,  106 => 30,  100 => 29,  95 => 28,  90 => 27,  86 => 26,  82 => 25,  78 => 24,  75 => 23,  63 => 22,  58 => 61,  55 => 21,);
    }

    /** @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("", "@burgernet_theme/components/form-elements/checkbox.html.twig", "/var/www/website/app/web/themes/burgernet_theme/templates/components/form-elements/checkbox.html.twig");
    }
}
') (Line: 487)
Twig\Environment->loadClass('__TwigTemplate_118635c4cb38e1c17bd3e53cdb5045f4fad3bf2c0034fbc0185fb08c9176bc2a', '@burgernet_theme/components/form-elements/checkbox.html.twig', NULL) (Line: 445)
Twig\Environment->loadTemplate('@burgernet_theme/components/form-elements/checkbox.html.twig', NULL) (Line: 377)
Twig\Template->loadTemplate('@burgernet_theme/components/form-elements/checkbox.html.twig', '@burgernet_theme/components/form-elements.html.twig', 8) (Line: 108)
__TwigTemplate_1ffa257dfbc0eaf8f8b791c2f627a498e4b59892a4b699506435e71639881158->getcheckbox(Array) (Line: 152)
__TwigTemplate_30619872ed8821629c687188ce2090a01b5c9308d795dab8d9cf146057f76afc->getformRegistration(Array) (Line: 144)
__TwigTemplate_0a1a6fcbc9870430c3b536e05adba2bc96314209bb4793c95085426d9dd414c7->doDisplay(Array, Array) (Line: 455)
Twig\Template->displayWithErrorHandling(Array, Array) (Line: 422)
Twig\Template->display(Array, Array) (Line: 60)
__TwigTemplate_4aedd51e5e4121e19ac7484186546891a2f399c1b9020c1edc85b6d111b4cad6->doDisplay(Array, Array) (Line: 455)
Twig\Template->displayWithErrorHandling(Array, Array) (Line: 422)
Twig\Template->display(Array) (Line: 434)
Twig\Template->render(Array) (Line: 64)
twig_render_template('themes/burgernet_theme/templates/layout/page.html.twig', Array) (Line: 384)
Drupal\Core\Theme\ThemeManager->render('page', Array) (Line: 437)
Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 195)
Drupal\Core\Render\Renderer->render(Array) (Line: 501)
Drupal\Core\Template\TwigExtension->escapeFilter(Object, Array, 'html', NULL, 1) (Line: 195)
__TwigTemplate_ab819fb8b523d48381a8c1241ed83852ce6b2ce0da1be6f11621471746a6e509->doDisplay(Array, Array) (Line: 455)
Twig\Template->displayWithErrorHandling(Array, Array) (Line: 422)
Twig\Template->display(Array) (Line: 434)
Twig\Template->render(Array) (Line: 64)
twig_render_template('themes/burgernet_theme/templates/layout/html.html.twig', Array) (Line: 384)
Drupal\Core\Theme\ThemeManager->render('html', Array) (Line: 437)
Drupal\Core\Render\Renderer->doRender(Array, ) (Line: 195)
Drupal\Core\Render\Renderer->render(Array) (Line: 147)
Drupal\Core\Render\MainContent\HtmlRenderer->Drupal\Core\Render\MainContent\{closure}() (Line: 582)
Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 148)
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('kernel.view', Object) (Line: 156)
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 68)
Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 57)
Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 47)
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: 47)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 52)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 23)
Stack\StackedHttpKernel->handle(Object, 1, 1) (Line: 693)
Drupal\Core\DrupalKernel->handle(Object) (Line: 19)

Afgeronde actie HOUTEN

Start actie

09/07/2019 15:11

Einde actie

09/07/2019 16:13

Status van deze actie

Afgeronde actie

Locatie

HOUTEN

Afloopbericht
HOUTEN 09/07/2019 16:13

De BN-actie in Houten wordt afgesloten. De persoon is nog niet aangetroffen. Vragen? Bel 09008844 Spoed 112 Bedankt voor het uitkijken.

Startbericht
HOUTEN 09/07/2019 15:11

Politie zoekt blanke man. Ong.40 jr., T shirt zwart naar boven lopend naar blauw met cijfers. Heeft een kuikentje bij zich.... Tips? Bel nu 112