blocks = [ 'input_attributes' => [$this, 'block_input_attributes'], ]; } protected function doGetParent(array $context) { // line 1 return "forms/field.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $this->parent = $this->loadTemplate("forms/field.html.twig", "forms/fields/email/email.html.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_input_attributes($context, array $blocks = []) { // line 4 echo " type=\"email\" "; // line 5 if (twig_in_filter($this->getAttribute(($context["field"] ?? null), "multiple", []), [0 => "on", 1 => "true", 2 => 1])) { echo "multiple=\"multiple\""; } // line 6 echo " "; $this->displayParentBlock("input_attributes", $context, $blocks); echo " "; } public function getTemplateName() { return "forms/fields/email/email.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 49 => 6, 45 => 5, 42 => 4, 39 => 3, 29 => 1,); } /** @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("{% extends \"forms/field.html.twig\" %} {% block input_attributes %} type=\"email\" {% if field.multiple in ['on', 'true', 1] %}multiple=\"multiple\"{% endif %} {{ parent() }} {% endblock %}", "forms/fields/email/email.html.twig", "/mnt/wpool1_tempdisk/webwndt/steintiger/user/plugins/form/templates/forms/fields/email/email.html.twig"); } }