1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /* forms/fields/password/password.html.twig */
- class __TwigTemplate_4891545ac65630caa5b6f831a88ba0dabd08b5e44791c72e843e0898e4aca499 extends Twig_Template
- {
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
- // line 1
- $this->parent = $this->loadTemplate("forms/field.html.twig", "forms/fields/password/password.html.twig", 1);
- $this->blocks = array(
- 'input_attributes' => array($this, 'block_input_attributes'),
- );
- }
- protected function doGetParent(array $context)
- {
- return "forms/field.html.twig";
- }
- protected function doDisplay(array $context, array $blocks = array())
- {
- $this->parent->display($context, array_merge($this->blocks, $blocks));
- }
- // line 3
- public function block_input_attributes($context, array $blocks = array())
- {
- // line 4
- echo " type=\"password\"
- class=\"input\"
- ";
- // line 6
- $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 ( 35 => 6, 31 => 4, 28 => 3, 11 => 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 Twig_Source("{% extends \"forms/field.html.twig\" %}
- {% block input_attributes %}
- type=\"password\"
- class=\"input\"
- {{ parent() }}
- {% endblock %}
- ", "forms/fields/password/password.html.twig", "/mnt/data/Sites/static-ethica.net/user/plugins/form/templates/forms/fields/password/password.html.twig");
- }
- }
|