BirthdayType

This form field type is used to handle birthday data.

In contradiction to the BirthdayType provided by Symfony, this form field type renders the year field in descending order, as the birth year will most likely be closer to the current year, than to 120 years ago.

Rendered as:

  • select field
  • single input text field
  • three input text fields

Overridden options:

Parent type:

Basic Usage

$builder->add('birthday', BirthdayType::class, ['widget' => 'choice']);

Overridden Options

years

type: array default: the current year to 120 years ago

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