Bootstrap 5 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 stylesheets %}
    <!-- Copy CSS from https://getbootstrap.com/docs/5.0/getting-started/introduction/#css -->
{% endblock %}
{% block javascripts %}
    <!-- Copy JavaScript from https://getbootstrap.com/docs/5.0/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 5 styles when rendering forms. If you want to apply them to all forms, define this configuration:

次のステップは、フォームのレンダリング時に Bootstrap 5 スタイルを使用するように Symfony アプリケーションを構成することです。それらをすべてのフォームに適用する場合は、次の構成を定義します。
  • YAML
    YAML
  • XML
    XML
  • PHP
    PHP
1
2
3
# config/packages/twig.yaml
twig:
    form_themes: ['bootstrap_5_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_5_layout.html.twig' %}

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

Note

ノート

By default, all inputs are rendered with the mb-3 class on their container. If you override the row_attr class option, the mb-3 will be overridden too and you will need to explicitly add it.

デフォルトでは、すべての入力はコンテナーの mb-3 クラスでレンダリングされます。 row_attr クラス オプションをオーバーライドすると、mb-3 もオーバーライドされるため、明示的に追加する必要があります。

Error Messages

Unlike in the Bootstrap 4 theme, errors are rendered after the input element. However, this still makes a strong connection between the error and its <input>, as required by the WCAG 2.0 standard.

Bootstrap 4 テーマとは異なり、エラーは入力要素の後にレンダリングされます。ただし、WCAG 2.0 標準で要求されているように、これでもエラーとそのエラーの間に強い関連性があります。

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() によって既にレンダリングされています。

Inline Checkboxes and Radios

If you want to render your checkbox or radio fields inline, you can add the checkbox-inline or radio-inline class (depending on your Symfony Form type or ChoiceType configuration) to the label class.

チェックボックスまたはラジオフィールドをインラインでレンダリングしたい場合は、checkbox-inline または radio-inline クラス (SymfonyForm タイプまたは ChoiceType 設定に応じて) をラベルクラスに追加できます。
  • PHP
    PHP
  • Twig
    小枝
1
2
3
4
5
6
7
8
9
10
11
$builder
    ->add('myCheckbox', CheckboxType::class, [
        'label_attr' => [
            'class' => 'checkbox-inline',
        ],
    ])
    ->add('myRadio', RadioType::class, [
        'label_attr' => [
            'class' => 'radio-inline',
        ],
    ]);

Switches

Bootstrap 5 allows to render checkboxes as switches. You can enable this feature on your Symfony Form CheckboxType by adding the checkbox-switch class to the label:

Bootstrap 5 では、チェックボックスをスイッチとしてレンダリングできます。ラベルにcheckbox-switchclassを追加することで、SymfonyフォームのCheckboxTypeでこの機能を有効にすることができます:
  • PHP
    PHP
  • Twig
    小枝
1
2
3
4
5
$builder->add('myCheckbox', CheckboxType::class, [
    'label_attr' => [
        'class' => 'checkbox-switch',
    ],
]);

Tip

ヒント

You can also render your switches inline by simply adding the checkbox-inline class on the label_attr option:

label_attr オプションに checkbox-inline クラスを追加するだけで、スイッチをインラインでレンダリングすることもできます。
1
2
3
4
5
// ...
'label_attr' => [
    'class' => 'checkbox-inline checkbox-switch',
],
// ...

Caution

注意

Switches only work with checkbox.

スイッチはチェックボックスでのみ機能します。

Input group

To create input group in your Symfony Form, simply add the input-group class to the row_attr option.

Symfony フォームで入力グループを作成するには、input-groupclass を row_attr オプションに追加するだけです。
  • PHP
    PHP
  • Twig
    小枝
1
2
3
4
5
6
$builder->add('email', EmailType::class, [
    'label' => '@',
    'row_attr' => [
        'class' => 'input-group',
    ],
]);

Caution

注意

If you fill the help option of your form, it will also be rendered as part of the group.

フォームのヘルプ オプションを入力すると、それもグループの一部としてレンダリングされます。

Floating labels

To render an input field with a floating label, you must add a label, a placeholder and the form-floating class to the row_attr option of your form type.

入力フィールドをフローティング ラベルでレンダリングするには、ラベル、プレースホルダー、およびフォーム フローティング クラスをフォーム タイプの row_attr オプションに追加する必要があります。
  • PHP
    PHP
  • Twig
    小枝
1
2
3
4
5
6
7
8
9
$builder->add('name', TextType::class, [
    'label' => 'Name',
    'attr' => [
        'placeholder' => 'Name',
    ],
    'row_attr' => [
        'class' => 'form-floating',
    ],
]);

Caution

注意

You must provide a label and a placeholder to make floating labels work properly.

フローティングラベルを適切に機能させるには、ラベルとプレースホルダーを提供する必要があります。

Accessibility

The Bootstrap 5 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 5 フレームワークは、障害のある視覚や認知能力などの機能的なバリエーションにアクセスできるようにするために良い仕事をしました. 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 サイト全体が自動的に完全な標準に準拠していることを意味するわけではありませんが、すべてのユーザー向けのデザインを作成する作業がかなり進んでいることを意味します。