generate:plugin:condition

Tạo một plugin condition.

Usage:

drupal generate:plugin:condition  [options]
gpco

Available options

OptionDetails

--module

Tên module.

--class

Tên lớp plugin condition

--label

Nhãn Plugin condition

--plugin-id

Plugin condition id

--context-definition-id

Context definition ID

--context-definition-label

Nhãn Context definition

--context-definition-required

Yêu cầu Context definition (TRUE/FALSE)

Examples

Generate a plugin condition for a node entity type specifying the module name, the class, the label, its id and the context definition

drupal generate:plugin:condition  \
  --module="modulename"  \
  --class="ExampleCondition"  \
  --label="Example condition"  \
  --plugin-id="example_condition"  \
  --context-definition-id="entity:node"  \
  --context-definition-label="node"  \
  --context-definition-required

Generate a plugin condition for language specifying the module name, the class, the label, its id and the context definition

drupal generate:plugin:condition  \
  --module="modulename"  \
  --class="ExampleCondition"  \
  --label="Example condition"  \
  --plugin-id="example_condition"  \
  --context-definition-id="language"  \
  --context-definition-label="Language"  \
  --context-definition-required

Generate a plugin condition for role configuration specifying the module name, the class, the label, its id and the context definition

drupal generate:plugin:condition  \
  --module="modulename"  \
  --class="ExampleCondition"  \
  --label="Example condition"  \
  --plugin-id="example_condition"  \
  --context-definition-id="entity:user_role"  \
  --context-definition-label="user_role"  \
  --context-definition-required