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

Latest commit

 

History

History
31 lines (28 loc) · 919 Bytes

generate-command.md

File metadata and controls

31 lines (28 loc) · 919 Bytes

generate:command

Tạo ra các lệnh cho trình điều khiển.

Usage:

drupal generate:command [options]
gco

Available options

Option Details
--extension The extension name.
--extension-type The extension type.
--class Lớp miêu tả dòng lện. (Phải kết thúc bằng từ 'Commmand').
--name Tên dòng lệnh.
--initialize Add initialize method.
--interact Add interact method.
--container-aware Dòng lệnh có nhận thức được sự cài đặt drupal site khi thực hiện hay không
--services Nạp các dịch vụ từ container.
--generator Add a Generator class for this command.

Examples

  • Generate a command specifying the extension name and type, its class and the name.
drupal generate:command  \
  --extension="ExtensionName"  \
  --extension-type="module"  \
  --class="DefaultCommand"  \
  --name="CommandName"