34f0e0266b4db11a668b3b4b838de63bef49bdad2bad0967770a2814fd06e149.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. /* forms/fields/password/password.html.twig */
  3. class __TwigTemplate_4891545ac65630caa5b6f831a88ba0dabd08b5e44791c72e843e0898e4aca499 extends Twig_Template
  4. {
  5. public function __construct(Twig_Environment $env)
  6. {
  7. parent::__construct($env);
  8. // line 1
  9. $this->parent = $this->loadTemplate("forms/field.html.twig", "forms/fields/password/password.html.twig", 1);
  10. $this->blocks = array(
  11. 'input_attributes' => array($this, 'block_input_attributes'),
  12. );
  13. }
  14. protected function doGetParent(array $context)
  15. {
  16. return "forms/field.html.twig";
  17. }
  18. protected function doDisplay(array $context, array $blocks = array())
  19. {
  20. $this->parent->display($context, array_merge($this->blocks, $blocks));
  21. }
  22. // line 3
  23. public function block_input_attributes($context, array $blocks = array())
  24. {
  25. // line 4
  26. echo " type=\"password\"
  27. class=\"input\"
  28. ";
  29. // line 6
  30. $this->displayParentBlock("input_attributes", $context, $blocks);
  31. echo "
  32. ";
  33. }
  34. public function getTemplateName()
  35. {
  36. return "forms/fields/password/password.html.twig";
  37. }
  38. public function isTraitable()
  39. {
  40. return false;
  41. }
  42. public function getDebugInfo()
  43. {
  44. return array ( 35 => 6, 31 => 4, 28 => 3, 11 => 1,);
  45. }
  46. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  47. public function getSource()
  48. {
  49. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  50. return $this->getSourceContext()->getCode();
  51. }
  52. public function getSourceContext()
  53. {
  54. return new Twig_Source("{% extends \"forms/field.html.twig\" %}
  55. {% block input_attributes %}
  56. type=\"password\"
  57. class=\"input\"
  58. {{ parent() }}
  59. {% endblock %}
  60. ", "forms/fields/password/password.html.twig", "/mnt/data/Sites/static-ethica.net/user/plugins/form/templates/forms/fields/password/password.html.twig");
  61. }
  62. }