Bootstrap 4 Form Theme

Symfony provides several ways of integrating Bootstrap into your application. The most straightforward way is to add the required <link> and <script> elements in your templates (usually you only include them in the main layout template which other templates extend from):

Symfony は Bootstrap をアプリケーションに統合する方法をいくつか提供します。最も簡単な方法は、requiredand 要素をテンプレートに追加することです (通常は、他のテンプレートが拡張するメインのレイアウト テンプレートにのみそれらを含めます)。
1
2
3
4
5
6
7
8
9
{# templates/base.html.twig #}

{# beware that the blocks in your template may be named different #}
{% block head_css %}
    <!-- Copy CSS from https://getbootstrap.com/docs/4.4/getting-started/introduction/#css -->
{% endblock %}
{% block head_js %}
    <!-- Copy JavaScript from https://getbootstrap.com/docs/4.4/getting-started/introduction/#js -->
{% endblock %}

If your application uses modern front-end practices, it's better to use Webpack Encore and follow this tutorial to import Bootstrap's sources into your SCSS and JavaScript files.

アプリケーションが最新のフロントエンド プラクティスを使用している場合は、Webpack Encore を使用し、このチュートリアルに従って、Bootstrap のソースを SCSS および JavaScript ファイルにインポートすることをお勧めします。

The next step is to configure the Symfony application to use Bootstrap 4 styles when rendering forms. If you want to apply them to all forms, define this configuration:

次のステップは、フォームをレンダリングするときに Bootstrap 4 スタイルを使用するように Symfony アプリケーションを構成することです。それらをすべてのフォームに適用する場合は、次の構成を定義します。
  • YAML
    YAML
  • XML
    XML
  • PHP
    PHP
1
2
3
# config/packages/twig.yaml
twig:
    form_themes: ['bootstrap_4_layout.html.twig']

If you prefer to apply the Bootstrap styles on a form to form basis, include the form_theme tag in the templates where those forms are used:

フォームごとに Bootstrap スタイルを適用する場合は、それらのフォームが使用されるテンプレートに form_theme タグを含めます。
1
2
3
4
5
6
7
8
{# ... #}
{# this tag only applies to the forms defined in this template #}
{% form_theme form 'bootstrap_4_layout.html.twig' %}

{% block body %}
    <h1>User Sign Up:</h1>
    {{ form(form) }}
{% endblock %}

Error Messages

Form errors are rendered inside the <label> element to make sure there is a strong connection between the error and its <input>, as required by the WCAG 2.0 standard. To achieve this, form_errors() is called by form_label() internally. If you call to form_errors() in your template, you'll get the error messages displayed twice.

WCAG 2.0 標準で要求されているように、フォーム エラーは要素内でレンダリングされ、エラーとその の間に強い関連性があることを確認します。これを実現するために、form_errors() は内部で form_label() によって呼び出されます。テンプレートで form_errors() を呼び出すと、エラー メッセージが 2 回表示されます。

Tip

ヒント

Since form errors are rendered inside the <label>, you cannot use CSS :after to append an asterisk to the label, because it would be displayed after the error message. Use the label or label_html options instead.

フォーム エラーは 内でレンダリングされるため、CSS:after を使用してラベルにアスタリスクを追加することはできません。アスタリスクはエラー メッセージの後に表示されるからです。代わりに label または label_html オプションを使用してください。

Checkboxes and Radios

For a checkbox/radio field, calling form_label() doesn't render anything. Due to Bootstrap internals, the label is already rendered by form_widget().

チェックボックス/ラジオ フィールドの場合、form_label() を呼び出しても何もレンダリングされません。Bootstrap の内部構造により、ラベルは form_widget() によって既にレンダリングされています。

File inputs

File inputs are rendered using the Bootstrap "custom-file" class, which hides the name of the selected file. To fix that, use the bs-custom-file-input JavaScript plugin, as recommended by Bootstrap Forms documentation.

ファイル入力は、選択したファイルの名前を非表示にする Bootstrap の「カスタム ファイル」クラスを使用してレンダリングされます。これを修正するには、Bootstrap Forms ドキュメントで推奨されているように、bs-custom-file-inputJavaScript プラグインを使用します。

Accessibility

The Bootstrap 4 framework has done a good job making it accessible for functional variations like impaired vision and cognitive ability. Symfony has taken this one step further to make sure the form theme complies with the WCAG 2.0 standard.

Bootstrap 4 フレームワークは、視覚障害や認知能力などの機能的バリエーションにアクセスできるようにするために、優れた仕事をしてきました。 symfony は、フォームのテーマが WCAG 2.0 標準に準拠していることを確認するために、この一歩を踏み出しました。

This does not mean that your entire website automatically complies with the full standard, but it does mean that you have come far in your work to create a design for all users.

これは、Web サイト全体が自動的に完全な標準に準拠していることを意味するわけではありませんが、すべてのユーザー向けのデザインを作成する作業がかなり進んでいることを意味します。

Custom Forms

Bootstrap 4 has a feature called "`custom forms`_". You can enable that on your Symfony Form RadioType and CheckboxType by adding some classes to the label:

Bootstrap 4 には「`カスタム フォーム`_」という機能があります。ラベルにいくつかのクラスを追加することで、Symfony フォームの RadioType と CheckboxType でそれを有効にすることができます。
  • For a custom radio, use radio-custom;
    カスタム ラジオの場合は、radio-custom を使用します。
  • For a custom checkbox, use checkbox-custom;
    カスタム チェックボックスの場合は、checkbox-custom を使用します。
  • For having a switch instead of a checkbox, use switch-custom.
    チェックボックスの代わりにスイッチを使用するには、switch-custom を使用します。
1
2
3
{{ form_row(form.myRadio, {label_attr: {class: 'radio-custom'} }) }}
{{ form_row(form.myCheckbox, {label_attr: {class: 'checkbox-custom'} }) }}
{{ form_row(form.myCheckbox, {label_attr: {class: 'switch-custom'} }) }}