app/Plugin/ReCaptcha/Resource/template/common/extension.twig line 1

Open in your IDE?
  1. {# エンティティ拡張の自動出力 #}
  2. {% for f in form|filter(f => f.vars.eccube_form_options.auto_render) %}
  3.     {% if f.vars.eccube_form_options.form_theme %}
  4.         {% form_theme f f.vars.eccube_form_options.form_theme %}
  5.         {{ form_row(f) }}
  6.     {% else %}
  7.         <dl>
  8.             <dt>
  9.                 {{ form_label(f) }}
  10.             </dt>
  11.             <dd>
  12.                 <div class="{{ f.vars.eccube_form_options.style_class }}{{ has_errors(f) ? ' error' }}">
  13.                     {{ form_widget(f) }}
  14.                     {{ form_errors(f) }}
  15.                 </div>
  16.             </dd>
  17.         </dl>
  18.     {% endif %}
  19. {% endfor %}