TimeType Field

A field to capture time input.

時間入力をキャプチャするフィールド。

This can be rendered as a text field, a series of text fields (e.g. hour, minute, second) or a series of select fields. The underlying data can be stored as a DateTime object, a string, a timestamp or an array.

これは、テキスト フィールド、一連のテキスト フィールド (時間、分、秒など)、または一連の選択フィールドとしてレンダリングできます。基になるデータは、DateTime オブジェクト、文字列、タイムスタンプ、または配列として保存できます。
Underlying Data Type can be DateTime, string, timestamp, or array (see the input option)
Rendered as can be various tags (see below)
Default invalid message Please enter a valid time.
Legacy invalid message The value {{ value }} is not valid.
Parent type FormType
Class TimeType

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

The most important options are input and widget.

最も重要なオプションは入力とウィジェットです。

Suppose that you have a startTime field whose underlying time data is a DateTime object. The following configures the TimeType for that field as two different choice fields:

基になる時間データが DateTime オブジェクトである startTime フィールドがあるとします。以下は、そのフィールドの TimeType を 2 つの異なる選択肢フィールドとして構成します。
1
2
3
4
5
6
7
use Symfony\Component\Form\Extension\Core\Type\TimeType;
// ...

$builder->add('startTime', TimeType::class, [
    'input'  => 'datetime',
    'widget' => 'choice',
]);

The input option must be changed to match the type of the underlying date data. For example, if the startTime field's data were a unix timestamp, you'd need to set input to timestamp:

入力オプションは、基になる日付データの型と一致するように変更する必要があります。たとえば、startTime フィールドのデータが UNIX タイムスタンプの場合、入力をタイムスタンプに設定する必要があります。
1
2
3
4
5
6
7
use Symfony\Component\Form\Extension\Core\Type\TimeType;
// ...

$builder->add('startTime', TimeType::class, [
    'input'  => 'timestamp',
    'widget' => 'choice',
]);

The field also supports an array and string as valid input option values.

このフィールドは、有効な入力オプション値として配列と文字列もサポートしています。

Field Options

choice_translation_domain

type: string, boolean or null default: false

タイプ: 文字列、ブール値、または null デフォルト: false

This option determines if the choice values should be translated and in which translation domain.

このオプションは、選択値を翻訳するかどうか、およびどの翻訳ドメインで翻訳するかを決定します。

The values of the choice_translation_domain option can be true (reuse the current translation domain), false (disable translation), null (uses the parent translation domain or the default domain) or a string which represents the exact translation domain to use.

choice_translation_domain オプションの値は、true (現在の翻訳ドメインを再利用する)、false (翻訳を無効にする)、null (親の翻訳ドメインまたはデフォルト ドメインを使用する)、または使用する正確な翻訳ドメインを表す文字列です。

placeholder

type: string | array

タイプ: 文字列 |配列

If your widget option is set to choice, then this field will be represented as a series of select boxes. When the placeholder value is a string, it will be used as the blank value of all select boxes:

ウィジェット オプションが選択に設定されている場合、このフィールドは一連の選択ボックスとして表されます。プレースホルダ値が文字列の場合、すべての選択ボックスの空白値として使用されます:
1
2
3
$builder->add('startTime', 'time', [
    'placeholder' => 'Select a value',
]);

Alternatively, you can use an array that configures different placeholder values for the hour, minute and second fields:

または、時間、分、および秒のフィールドに異なるプレースホルダー値を構成する配列を使用できます。
1
2
3
4
5
$builder->add('startTime', 'time', [
    'placeholder' => [
        'hour' => 'Hour', 'minute' => 'Minute', 'second' => 'Second',
    ],
]);

hours

type: array default: 0 to 23

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

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

時間フィールド タイプで使用できる時間のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。

html5

type: boolean default: true

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

If this is set to true (the default), it'll use the HTML5 type (date, time or datetime-local) to render the field. When set to false, it'll use the text type.

これが true (デフォルト) に設定されている場合、HTML5 タイプ (date、time、または datetime-local) を使用してフィールドをレンダリングします。 false に設定すると、テキスト タイプが使用されます。

This is useful when you want to use a custom JavaScript datepicker, which often requires a text type instead of an HTML5 type.

これは、カスタムの JavaScript 日付ピッカーを使用する場合に便利です。これには、HTML5 型ではなくテキスト型が必要になることがよくあります。

input

type: string default: datetime

タイプ: 文字列 デフォルト: 日時

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

入力データの形式 - つまり、日付が基になるオブジェクトに格納される形式。有効な値は次のとおりです。
  • string (e.g. 12:17:26)
    文字列 (例: 12:17:26)
  • datetime (a DateTime object)
    datetime (DateTime オブジェクト)
  • datetime_immutable (a DateTimeImmutable object)
    datetime_immutable (DateTimeImmutable オブジェクト)
  • array (e.g. ['hour' => 12, 'minute' => 17, 'second' => 26])
    配列 (例: ['hour' => 12, 'minute' => 17, 'second' => 26])
  • timestamp (e.g. 1307232000)
    タイムスタンプ (例: 1307232000)

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

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

input_format

type: string default: H:i:s

タイプ: 文字列 デフォルト: H:i:s

If the input option is set to string, this option specifies the format of the time. This must be a valid PHP time format.

入力オプションが文字列に設定されている場合、このオプションは時刻の形式を指定します。これは、有効な PHP 時刻形式でなければなりません。

minutes

type: array default: 0 to 59

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

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

分フィールド タイプで使用できる分のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。

model_timezone

type: string default: system default timezone

タイプ: 文字列 デフォルト: システムのデフォルトのタイムゾーン

Timezone that the input data is stored in. This must be one of the PHP supported timezones.

入力データが保存されるタイムゾーン。これは、PHP がサポートするタイムゾーンの 1 つでなければなりません。

Caution

注意

When using different values for model_timezone and view_timezone, a reference_date must be configured.

model_timezone と view_timezone に異なる値を使用する場合、reference_date を構成する必要があります。

reference_date

type: DateTimeInterface default: null

タイプ: DateTimeInterface デフォルト: null

Configuring a reference date is required when the model_timezone and view_timezone are different. Timezone conversions will be calculated based on this date.

model_timezone と view_timezone が異なる場合、基準日の設定が必要です。タイムゾーン変換は、この日付に基づいて計算されます。

seconds

type: array default: 0 to 59

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

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

秒フィールド タイプで使用できる秒のリスト。このオプションは、ウィジェット オプションが選択に設定されている場合にのみ関連します。

view_timezone

type: string default: system default timezone

タイプ: 文字列 デフォルト: システムのデフォルトのタイムゾーン

Timezone for how the data should be shown to the user (and therefore also the data that the user submits). This must be one of the PHP supported timezones.

データをユーザーに表示する方法のタイムゾーン (したがって、ユーザーが送信するデータも)。これは、PHP がサポートするタイムゾーンの 1 つでなければなりません。

When no reference_date is set the view_timezone defaults to the configured model_timezone.

reference_date が設定されていない場合、view_timezone はデフォルトで構成された model_timezone になります。

Caution

注意

When using different values for model_timezone and view_timezone, a reference_date must be configured.

model_timezone と view_timezone に異なる値を使用する場合、reference_date を構成する必要があります。

widget

type: string default: choice

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

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

このフィールドをレンダリングする基本的な方法。次のいずれかになります。
  • choice: renders one, two (default) or three select inputs (hour, minute, second), depending on the with_minutes and with_seconds options.
    choice: with_minutes および with_seconds オプションに応じて、1 つ、2 つ (デフォルト)、または 3 つの選択入力 (時間、分、秒) をレンダリングします。
  • text: renders one, two (default) or three text inputs (hour, minute, second), depending on the with_minutes and with_seconds options.
    text: with_minutes および with_seconds オプションに応じて、1 つ、2 つ (デフォルト)、または 3 つのテキスト入力 (時、分、秒) をレンダリングします。
  • single_text: renders a single input of type time. User's input will be validated against the form hh:mm (or hh:mm:ss if using seconds).
    single_text: タイプ time の単一の入力をレンダリングします。ユーザーの入力は、hh:mm (秒を使用する場合は hh:mm:ss) の形式に対して検証されます。

Caution

注意

Combining the widget type single_text and the with_minutes option set to false can cause unexpected behavior in the client as the input type time might not support selecting an hour only.

ウィジェット タイプ single_text と with_minutes オプション セットを false に組み合わせると、クライアントで予期しない動作が発生する可能性があります。これは、入力タイプの time が時間のみの選択をサポートしていない可能性があるためです。

with_minutes

type: boolean default: true

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

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

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

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.

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

Overridden Options

by_reference

default: false

デフォルト: false

The DateTime classes are treated as immutable objects.

DateTime クラスは不変オブジェクトとして扱われます。

compound

type: boolean default: false

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

This option specifies whether the type contains child types or not. This option is managed internally for built-in types, so there is no need to configure it explicitly.

このオプションは、型に子型が含まれるかどうかを指定します。このオプションは、組み込み型の内部で管理されるため、明示的に構成する必要はありません。

data_class

type: string default: null

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

The internal normalized representation of this type is an array, not a \DateTime object. Therefore, the data_class option is initialized to null to avoid the FormType object from initializing it to \DateTime.

この型の内部正規化表現は配列であり、\DateTimeobject ではありません。したがって、data_class オプションは null に初期化され、FormType オブジェクトが \DateTime に初期化されないようにします。

error_bubbling

default: false

デフォルト: false

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 FormType:

これらのオプションは FormType から継承します。

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 に設定します。送信された値は無視されます。

error_mapping

type: array default: []

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

This option allows you to modify the target of a validation error.

このオプションを使用すると、検証エラーのターゲットを変更できます。

Imagine you have a custom method named matchingCityAndZipCode() that validates whether the city and zip code match. Unfortunately, there is no matchingCityAndZipCode field in your form, so all that Symfony can do is display the error on top of the form.

都市と郵便番号が一致するかどうかを検証する matchingCityAndZipCode() という名前のカスタム メソッドがあるとします。残念ながら、あなたのフォームには一致する CityAndZipCode フィールドがないため、Symfony ができることはフォームの上にエラーを表示することだけです。

With customized error mapping, you can do better: map the error to the city field so that it displays above it:

カスタマイズされたエラー マッピングを使用すると、より適切に実行できます。エラーを cityfield にマッピングして、その上に表示されるようにします。
1
2
3
4
5
6
7
8
public function configureOptions(OptionsResolver $resolver)
{
    $resolver->setDefaults([
        'error_mapping' => [
            'matchingCityAndZipCode' => 'city',
        ],
    ]);
}

Here are the rules for the left and the right side of the mapping:

マッピングの左側と右側の規則は次のとおりです。
  • The left side contains property paths;
    左側にはプロパティ パスが含まれています。
  • If the violation is generated on a property or method of a class, its path is the propertyName;
    違反がクラスのプロパティまたはメソッドで生成された場合、そのパスは propertyName です。
  • If the violation is generated on an entry of an array or ArrayAccess object, the property path is [indexName];
    違反が配列または ArrayAccess オブジェクトのエントリで生成された場合、プロパティ パスは [indexName] です。
  • You can construct nested property paths by concatenating them, separating properties by dots. For example: addresses[work].matchingCityAndZipCode;
    プロパティをドットで区切って連結することにより、ネストされたプロパティ パスを作成できます。例: address[work].matchingCityAndZipCode;
  • The right side contains the names of fields in the form.
    右側には、フォーム内のフィールドの名前が含まれています。

By default, errors for any property that is not mapped will bubble up to the parent form. You can use the dot (.) on the left side to map errors of all unmapped properties to a particular field. For instance, to map all these errors to the city field, use:

デフォルトでは、マップされていないプロパティのエラーは親フォームにバブル アップします。左側のドット (.) を使用して、マップされていないすべてのプロパティのエラーを特定のフィールドにマップできます。たとえば、これらすべてのエラーを都市フィールドにマップするには、次を使用します。
1
2
3
4
5
$resolver->setDefaults([
    'error_mapping' => [
        '.' => 'city',
    ],
]);

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 オプションを使用します。

Form Variables

Variable Type Usage
widget mixed The value of the widget option.
with_minutes boolean The value of the with_minutes option.
with_seconds boolean The value of the with_seconds option.
type string Only present when widget is single_text and HTML5 is activated, contains the input type to use (datetime, date or time).