Skip to content
This repository has been archived by the owner on Sep 12, 2019. It is now read-only.

Latest commit

 

History

History
25 lines (22 loc) · 639 Bytes

generate-plugin-skeleton.md

File metadata and controls

25 lines (22 loc) · 639 Bytes

generate:plugin:skeleton

Generate an implementation of a skeleton plugin for those plugins Drupal Console do not have a specific generator

Usage:

drupal generate:plugin:skeleton [options]
gps

Available options

Option Details
--module Tên module.
--plugin-id The Plugin Id.
--class Plugin class name
--services Nạp các dịch vụ từ container.

Examples

  • Generate a plugin skeleton specifying module name, the plugin id and the class
drupal generate:plugin:skeleton  \
  --module="modulename"  \
  --plugin-id="link_relation_type"  \
  --class="DefaultLinkRelationType"