generate:plugin:fieldwidget

Tạo field widget plugin.

Usage:

drupal generate:plugin:fieldwidget  [options]
gpfw

Available options

OptionDetails

--module

Tên module.

--class

Tên lớp plugin

--label

Nhãn plugin

--plugin-id

Plugin id

--field-type

Kiểu plugin có thể được sử dụng với

Examples

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

drupal generate:plugin:fieldwidget  \
  --module="modulename"  \
  --class="ExampleFieldWidget"  \
  --label="Example field widget"  \
  --plugin-id="example_field_widget"  \
  --field-type="text"