DateIntervalType Field

This field allows the user to select an interval of time. For example, if you want to allow the user to choose how often they receive a status email, they could use this field to choose intervals like every "10 minutes" or "3 days".

このフィールドにより、ユーザーは時間間隔を選択できます。たとえば、ユーザーがステータス メールを受信する頻度を選択できるようにする場合、このフィールドを使用して、「10 分ごと」または「3 日ごと」などの間隔を選択できます。

The field can be rendered in a variety of different ways (see widget) and can be configured to give you a DateInterval object, an ISO 8601 duration string (e.g. P1DT12H) or an array (see input).

フィールドはさまざまな方法でレンダリングでき (ウィジェットを参照)、DateInterval オブジェクト、ISO 8601 期間文字列 (P1DT12H など)、または配列 (入力を参照) を提供するように構成できます。
Underlying Data Type can be DateInterval, string or array (see the input option)
Rendered as single text box, multiple text boxes or select fields - see the widget option
Default invalid message Please choose a valid date interval.
Legacy invalid message The value {{ value }} is not valid.
Parent type FormType
Class DateIntervalType

Tip

ヒント

The full list of options defined and inherited by this form type is available running this command in your app:

このフォーム タイプによって定義および継承されるオプションの完全なリストは、アプリで次のコマンドを実行して利用できます。
1
2
# replace 'FooType' by the class name of your form type
$ php bin/console debug:form FooType

Basic Usage

This field type is highly configurable. The most important options are input and widget.

このフィールド タイプは高度な設定が可能です。最も重要なオプションは入力とウィジェットです。

You can configure a lot of different options, including exactly which range options to show (e.g. don't show "months", but do show "days"):

正確にどの範囲オプションを表示するかなど、さまざまなオプションを構成できます (たとえば、「月」を表示せずに「日」を表示する)。
1
2
3
4
5
6
7
8
9
10
$builder->add('remindEvery', DateIntervalType::class, [
    'widget'      => 'integer', // render a text field for each part
    // 'input'    => 'string',  // if you want the field to return a ISO 8601 string back to you

    // customize which text boxes are shown
    'with_years'  => false,
    'with_months' => false,
    'with_days'   => true,
    'with_hours'  => true,
]);

Field Options

days

type: array default: 0 to 31

タイプ: 配列 デフォルト: 0 ~ 31

List of days available to the days field type. This option is only relevant when the widget option is set to choice:

日フィールド タイプで使用できる日のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。
1
2
3
4
5
// values displayed to users range from 0 to 30 (both inclusive)
'days' => range(1, 31),

// values displayed to users range from 1 to 31 (both inclusive)
'days' => array_combine(range(1, 31), range(1, 31)),

placeholder

type: string or array

タイプ: 文字列または配列

If your widget option is set to choice, then this field will be represented as a series of select boxes. The placeholder option can be used to add a "blank" entry to the top of each select box:

ウィジェット オプションが選択に設定されている場合、このフィールドは一連の選択ボックスとして表されます。プレースホルダー オプションを使用して、各選択ボックスの上部に「空白」のエントリを追加できます。
1
2
3
$builder->add('remindEvery', DateIntervalType::class, [
    'placeholder' => '',
]);

Alternatively, you can specify a string to be displayed for the "blank" value:

または、「空白」値に表示する文字列を指定できます。
1
2
3
$builder->add('remindEvery', DateIntervalType::class, [
    'placeholder' => ['years' => 'Years', 'months' => 'Months', 'days' => 'Days'],
]);

hours

type: array default: 0 to 24

タイプ: 配列 デフォルト: 0 ~ 24

List of hours available to the hours field type. This option is only relevant when the widget option is set to choice:

時間フィールド タイプで使用できる時間のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。
1
2
3
4
5
// values displayed to users range from 0 to 23 (both inclusive)
'hours' => range(1, 24),

// values displayed to users range from 1 to 24 (both inclusive)
'hours' => array_combine(range(1, 24), range(1, 24)),

input

type: string default: dateinterval

タイプ: 文字列 デフォルト: 日付間隔

The format of the input data - i.e. the format that the interval is stored on your underlying object. Valid values are:

入力データの形式 - つまり、基礎となるオブジェクトに間隔が保存される形式。有効な値は次のとおりです。
  • string (a string formatted with ISO 8601 standard, e.g. P7Y6M5DT12H15M30S)
    文字列 (ISO 8601 標準でフォーマットされた文字列。例: P7Y6M5DT12H15M30S)
  • dateinterval (a DateInterval object)
    dateinterval (DateInterval オブジェクト)
  • array (e.g. ['days' => '1', 'hours' => '12',])
    配列 (例: ['days' => '1', 'hours' => '12',])

The value that comes back from the form will also be normalized back into this format.

フォームから返される値も、この形式に正規化されます。

labels

type: array default: (see below)

タイプ: 配列 デフォルト: (下記参照)

The labels displayed for each of the elements of this type. The default values are null, so they display the "humanized version" of the child names (Invert, Years, etc.):

このタイプの要素ごとに表示されるラベル。デフォルト値は null であるため、子の名前の「人間化されたバージョン」が表示されます (Invert、Years など)。
1
2
3
4
5
6
7
8
9
10
'labels' => [
    'invert' => null,
    'years' => null,
    'months' => null,
    'weeks' => null,
    'days' => null,
    'hours' => null,
    'minutes' => null,
    'seconds' => null,
]

minutes

type: array default: 0 to 60

タイプ:配列 デフォルト:0~60

List of minutes available to the minutes field type. This option is only relevant when the widget option is set to choice:

分フィールド タイプで使用できる分のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。
1
2
3
4
5
// values displayed to users range from 0 to 59 (both inclusive)
'minutes' => range(1, 60),

// values displayed to users range from 1 to 60 (both inclusive)
'minutes' => array_combine(range(1, 60), range(1, 60)),

months

type: array default: 0 to 12

タイプ: 配列 デフォルト: 0 ~ 12

List of months available to the months field type. This option is only relevant when the widget option is set to choice:

月フィールド タイプで使用できる月のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。
1
2
3
4
5
// values displayed to users range from 0 to 11 (both inclusive)
'months' => range(1, 12),

// values displayed to users range from 1 to 12 (both inclusive)
'months' => array_combine(range(1, 12), range(1, 12)),

seconds

type: array default: 0 to 60

タイプ:配列 デフォルト:0~60

List of seconds available to the seconds field type. This option is only relevant when the widget option is set to choice:

秒フィールド タイプで使用できる秒のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。
1
2
3
4
5
// values displayed to users range from 0 to 59 (both inclusive)
'seconds' => range(1, 60),

// values displayed to users range from 1 to 60 (both inclusive)
'seconds' => array_combine(range(1, 60), range(1, 60)),

weeks

type: array default: 0 to 52

タイプ: 配列 デフォルト: 0 ~ 52

List of weeks available to the weeks field type. This option is only relevant when the widget option is set to choice:

週フィールド タイプで使用できる週のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。
1
2
3
4
5
// values displayed to users range from 0 to 51 (both inclusive)
'weeks' => range(1, 52),

// values displayed to users range from 1 to 52 (both inclusive)
'weeks' => array_combine(range(1, 52), range(1, 52)),

widget

type: string default: choice

タイプ: 文字列 デフォルト: 選択

The basic way in which this field should be rendered. Can be one of the following:

このフィールドをレンダリングする基本的な方法。次のいずれかになります。
  • choice: renders one to six select inputs for years, months, weeks, days, hours, minutes and/or seconds, depending on the with_years, with_months, with_weeks, with_days, with_hours, with_minutes and with_seconds options. Default: Three fields for years, months and days.
    選択: with_years、with_months、with_weeks、with_days、with_hours、with_minutes、および with_seconds オプションに応じて、年、月、週、日、時、分、および/または秒の 1 ~ 6 の選択入力をレンダリングします。デフォルト: 年、月の 3 つのフィールドと日。
  • text: renders one to six text inputs for years, months, weeks, days, hours, minutes and/or seconds, depending on the with_years, with_months, with_weeks, with_days, with_hours, with_minutes and with_seconds options. Default: Three fields for years, months and days.
    text: with_years、with_months、with_weeks、with_days、with_hours、with_minutes、および with_seconds オプションに応じて、年、月、週、日、時、分、および/または秒の 1 ~ 6 個のテキスト入力をレンダリングします。デフォルト: 年、月の 3 つのフィールドと日。
  • integer: renders one to six integer inputs for years, months, weeks, days, hours, minutes and/or seconds, depending on the with_years, with_months, with_weeks, with_days, with_hours, with_minutes and with_seconds options. Default: Three fields for years, months and days.
    整数: with_years、with_months、with_weeks、with_days、with_hours、with_minutes、および with_seconds オプションに応じて、年、月、週、日、時、分、および/または秒の 1 ~ 6 個の整数入力をレンダリングします。デフォルト: 年、月の 3 つのフィールドと日。
  • single_text: renders a single input of type text. User's input will be validated against the form PnYnMnDTnHnMnS (or PnW if using only weeks).
    single_text: テキスト型の単一の入力をレンダリングします。ユーザーの入力は、フォーム PnYnMnDTnHnMnS (週のみを使用する場合は PnW) に対して検証されます。

with_days

type: Boolean default: true

タイプ: ブール デフォルト: true

Whether or not to include days in the input. This will result in an additional input to capture days.

入力に日数を含めるかどうか。これにより、日をキャプチャするための追加の入力が発生します。

Caution

注意

This can not be used when with_weeks is enabled.

with_weeks が有効な場合は使用できません。

with_hours

type: Boolean default: false

タイプ: ブール デフォルト: false

Whether or not to include hours in the input. This will result in an additional input to capture hours.

入力に時間を含めるかどうか。これにより、時間をキャプチャするための追加の入力が発生します。

with_invert

type: Boolean default: false

タイプ: ブール デフォルト: false

Whether or not to include invert in the input. This will result in an additional checkbox. This can not be used when the widget option is set to single_text.

入力に反転を含めるかどうか。これにより、追加のチェックボックスが表示されます。これは、ウィジェット オプションが single_text に設定されている場合は使用できません。

with_minutes

type: Boolean default: false

タイプ: ブール デフォルト: false

Whether or not to include minutes in the input. This will result in an additional input to capture minutes.

入力に分を含めるかどうか。これにより、分をキャプチャするための追加の入力が発生します。

with_months

type: Boolean default: true

タイプ: ブール デフォルト: true

Whether or not to include months in the input. This will result in an additional input to capture months.

入力に月を含めるかどうか。これにより、月をキャプチャするための追加の入力が発生します。

with_seconds

type: Boolean default: false

タイプ: ブール デフォルト: false

Whether or not to include seconds in the input. This will result in an additional input to capture seconds.

入力に秒を含めるかどうか。これにより、秒をキャプチャするための追加の入力が発生します。

with_weeks

type: Boolean default: false

タイプ: ブール デフォルト: false

Whether or not to include weeks in the input. This will result in an additional input to capture weeks.

入力に週を含めるかどうか。これにより、週をキャプチャするための追加の入力が発生します。

Caution

注意

This can not be used when with_days is enabled.

with_days が有効な場合は使用できません。

with_years

type: Boolean default: true

タイプ: ブール デフォルト: true

Whether or not to include years in the input. This will result in an additional input to capture years.

入力に年を含めるかどうか。これにより、年を取得するための追加の入力が発生します。

years

type: array default: 0 to 100

タイプ:配列 デフォルト:0~100

List of years available to the years field type. This option is only relevant when the widget option is set to choice:

年フィールド タイプで使用できる年のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。
1
2
3
4
5
// values displayed to users range from 0 to 99 (both inclusive)
'years' => range(1, 100),

// values displayed to users range from 1 to 100 (both inclusive)
'years' => array_combine(range(1, 100), range(1, 100)),

Overridden Options

invalid_message

type: string default: This value is not valid

タイプ: 文字列 デフォルト: この値は無効です

This is the validation error message that's used if the data entered into this field doesn't make sense (i.e. fails validation).

これは、このフィールドに入力されたデータが意味をなさない場合 (つまり、検証に失敗した場合) に使用される検証エラー メッセージです。

This might happen, for example, if the user enters a nonsense string into a TimeType field that cannot be converted into a real time or if the user enters a string (e.g. apple) into a number field.

これは、たとえば、ユーザーがリアルタイムに変換できない無意味な文字列を TimeType フィールドに入力した場合、またはユーザーが文字列 (例: apple) を数値フィールドに入力した場合に発生する可能性があります。

Normal (business logic) validation (such as when setting a minimum length for a field) should be set using validation messages with your validation rules (reference).

通常の (ビジネス ロジック) 検証 (フィールドの最小長を設定する場合など) は、validationrules (参照) で検証メッセージを使用して設定する必要があります。

Inherited Options

These options inherit from the form type:

これらのオプションは、フォーム タイプから継承されます。

attr

type: array default: []

タイプ: 配列 デフォルト: []

If you want to add extra attributes to an HTML field representation you can use the attr option. It's an associative array with HTML attributes as keys. This can be useful when you need to set a custom class for some widget:

HTML フィールド表現に追加の属性を追加する場合は、attr オプションを使用できます。これは、HTML 属性をキーとする連想配列です。これは、一部のウィジェットにカスタム クラスを設定する必要がある場合に役立ちます。
1
2
3
$builder->add('body', TextareaType::class, [
    'attr' => ['class' => 'tinymce'],
]);

See also

こちらもご覧ください

Use the row_attr option if you want to add these attributes to the form type row element.

これらの属性をフォーム タイプの行要素に追加する場合は、row_attr オプションを使用します。

data

type: mixed default: Defaults to field of the underlying structure.

タイプ: 混合 デフォルト: 基礎となる構造のフィールドにデフォルト設定されます。

When you create a form, each field initially displays the value of the corresponding property of the form's domain data (e.g. if you bind an object to the form). If you want to override this initial value for the form or an individual field, you can set it in the data option:

フォームを作成すると、最初に各フィールドに、フォームのドメイン データの対応するプロパティの値が表示されます (たとえば、オブジェクトをフォームにバインドした場合)。フォームまたは個々のフィールドのこの初期値をオーバーライドする場合は、データ オプションで設定できます。
1
2
3
4
5
6
use Symfony\Component\Form\Extension\Core\Type\HiddenType;
// ...

$builder->add('token', HiddenType::class, [
    'data' => 'abcdef',
]);

Caution

注意

The data option always overrides the value taken from the domain data (object) when rendering. This means the object value is also overridden when the form edits an already persisted object, causing it to lose its persisted value when the form is submitted.

data オプションは、レンダリング時にドメイン データ (オブジェクト) から取得した値を常にオーバーライドします。これは、フォームがすでに永続化されているオブジェクトを編集すると、オブジェクトの値も上書きされ、フォームが送信されると永続化された値が失われることを意味します。

disabled

type: boolean default: false

タイプ: ブール値デフォルト: false

If you don't want a user to modify the value of a field, you can set the disabled option to true. Any submitted value will be ignored.

ユーザーがフィールドの値を変更できないようにするには、disabled オプションを true に設定します。送信された値は無視されます。

help

type: string or TranslatableInterface default: null

タイプ: 文字列または TranslatableInterface デフォルト: null

Allows you to define a help message for the form field, which by default is rendered below the field:

フォーム フィールドのヘルプ メッセージを定義できます。デフォルトではフィールドの下に表示されます。
1
2
3
4
5
6
7
8
9
10
11
12
13
use Symfony\Component\Translation\TranslatableMessage;

$builder
    ->add('zipCode', null, [
        'help' => 'The ZIP/Postal code for your credit card\'s billing address.',
    ])

    // ...

    ->add('status', null, [
        'help' => new TranslatableMessage('order.status', ['%order_id%' => $order->getId()], 'store'),
    ])
;

6.2

6.2

The support for TranslatableInterface objects as help contents was introduced in Symfony 6.2.

ヘルプ コンテンツとしての TranslatableInterface オブジェクトのサポートは、Symfony 6.2 で導入されました。

help_attr

type: array default: []

タイプ: 配列 デフォルト: []

Sets the HTML attributes for the element used to display the help message of the form field. Its value is an associative array with HTML attribute names as keys. These attributes can also be set in the template:

フォーム フィールドのヘルプ メッセージを表示するために使用される要素の HTML 属性を設定します。その値は、HTML 属性名をキーとする連想配列です。これらの属性は、テンプレートで設定することもできます。
1
2
3
{{ form_help(form.name, 'Your name', {
    'help_attr': {'class': 'CUSTOM_LABEL_CLASS'}
}) }}

help_html

type: boolean default: false

タイプ: ブール デフォルト: false

By default, the contents of the help option are escaped before rendering them in the template. Set this option to true to not escape them, which is useful when the help contains HTML elements.

デフォルトでは、ヘルプ オプションの内容は、テンプレートでレンダリングする前にエスケープされます。エスケープしないようにするには、このオプションを true に設定します。これは、ヘルプに HTML 要素が含まれている場合に役立ちます。

inherit_data

type: boolean default: false

タイプ: ブール デフォルト: false

This option determines if the form will inherit data from its parent form. This can be useful if you have a set of fields that are duplicated across multiple forms. See How to Reduce Code Duplication with "inherit_data".

このオプションは、フォームが親フォームからデータを継承するかどうかを決定します。これは、複数のフォームで重複する一連のフィールドがある場合に役立ちます。 「inherit_data」でコードの重複を減らす方法を参照してください。

Caution

注意

When a field has the inherit_data option set, it uses the data of the parent form as is. This means that Data Transformers won't be applied to that field.

フィールドに inherit_data オプションが設定されている場合、親フォームのデータがそのまま使用されます。これは、Data Transformers がそのフィールドに適用されないことを意味します。

invalid_message_parameters

type: array default: []

タイプ: 配列 デフォルト: []

When setting the invalid_message option, you may need to include some variables in the string. This can be done by adding placeholders to that option and including the variables in this option:

invalid_message オプションを設定する場合、文字列にいくつかの変数を含める必要がある場合があります。これは、そのオプションにプレースホルダーを追加し、このオプションに変数を含めることで実行できます。
1
2
3
4
5
$builder->add('someField', SomeFormType::class, [
    // ...
    'invalid_message' => 'You entered an invalid value, it should include %num% letters',
    'invalid_message_parameters' => ['%num%' => 6],
]);

mapped

type: boolean default: true

タイプ: ブール値デフォルト: true

If you wish the field to be ignored when reading or writing to the object, you can set the mapped option to false.

オブジェクトの読み取りまたは書き込み時にフィールドを無視する場合は、マップされたオプションを false に設定できます。

row_attr

type: array default: []

タイプ: 配列 デフォルト: []

An associative array of the HTML attributes added to the element which is used to render the form type row:

フォーム タイプの行をレンダリングするために使用される要素に追加される HTML 属性の連想配列:
1
2
3
$builder->add('body', TextareaType::class, [
    'row_attr' => ['class' => 'text-editor', 'id' => '...'],
]);

See also

こちらもご覧ください

Use the attr option if you want to add these attributes to the form type widget element.

これらの属性をフォーム タイプのウィジェット要素に追加する場合は、attr オプションを使用します。

Field Variables

Variable Type Usage
widget mixed The value of the widget option.
with_days Boolean The value of the with_days option.
with_invert Boolean The value of the with_invert option.
with_hours Boolean The value of the with_hours option.
with_minutes Boolean The value of the with_minutes option.
with_months Boolean The value of the with_months option.
with_seconds Boolean The value of the with_seconds option.
with_weeks Boolean The value of the with_weeks option.
with_years Boolean The value of the with_years option.