generate:plugin:fieldtype
生成字段类型插件
使用方法:
drupal generate:plugin:fieldtype [options]
gpft
可用选项
选项 | 详细信息 |
---|---|
--module | 模块名 |
--class | 插件类名 |
--label | 插件标签 |
--plugin-id | 插件 ID |
--description | 插件描述 |
--default-widget | 该插件的默认字段 |
--default-formatter | 该插件的默认字段格式化器 |
例子
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"