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 = []) { // line 3 $context["value"] = null; // line 1 $this->parent = $this->loadTemplate("forms/field.html.twig", "forms/fields/password/password.html.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 5 public function block_input_attributes($context, array $blocks = []) { // line 6 echo " type=\"password\" "; // line 7 $this->displayParentBlock("input_attributes", $context, $blocks); echo " "; } public function getTemplateName() { return "forms/fields/password/password.html.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 48 => 7, 45 => 6, 42 => 5, 37 => 1, 35 => 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\" %} {% set value = null %} {% block input_attributes %} type=\"password\" {{ parent() }} {% endblock %} ", "forms/fields/password/password.html.twig", "/mnt/wpool1_tempdisk/webwndt/steintiger/user/plugins/form/templates/forms/fields/password/password.html.twig"); } }