generate:plugin:block

生成区块插件

使用方法:

drupal generate:plugin:block  [options]
gpb

可用选项

选项详细信息

--module

模块名

--class

插件类名

--plugin-label

Plugin label

--plugin-id

插件 ID

--theme-region

呈现插件区块的主题区域

--inputs

在表单中创建输入。

--services

从容器加载服务。

--twigtemplate

Generate theme template

例子

Generate a plugin block in the header region with an input field specifying the module name, the class, the label, its id, the region and the input

drupal generate:plugin:block  \
  --module="modulename"  \
  --class="DefaultBlock"  \
  --label="Default block"  \
  --plugin-id="default_block"  \
  --theme-region="header"  \
  --inputs='"name":"inputtext", "type":"text_format", "label":"InputText", "options":"", "description":"Just an input text", "maxlength":"", "size":"", "default_value":"", "weight":"0", "fieldset":""'