generate:plugin:fieldtype

Génère un plugin de type de champ.

Utilisation:

drupal generate:plugin:fieldtype  [options]
gpft

Options disponibles

OptionDétails

--module

Le nom du module.

--class

Nom de la classe du plugin

--label

Label du plugin

--plugin-id

Id du plugin

--description

Description du plugin

--default-widget

Widget de champ par défaut de ce plugin

--default-formatter

Formateur de champ par défaut de ce plugin

Exemples

Generate a field type plugin specifying the module name, the class, its label, the plugin id and a description

drupal generate:plugin:fieldtype  \
  --module="modulename"  \
  --class="ExampleFieldType"  \
  --label="Example field type"  \
  --plugin-id="example_field_type"  \
  --description="My Field Type"

Generate a field type plugin with a default widget and formatter specifying the module name, the class, its label, the plugin id and a description

drupal generate:plugin:fieldtype  \
  --module="modulename"  \
  --class="ExampleFieldType"  \
  --label="Example field type"  \
  --plugin-id="example_field_type"  \
  --description="My Field Type"  \
  --default-widget="DefaultWidget"  \
  --default-formatter="DefaultFormatter"