คุณสามารถสร้างคำสั่ง drush content-type-list
ที่ชื่อว่า สร้างโมดูลชื่อdrush_content_types
ภายในdrush_content_types.drush.inc
ไฟล์ใส่รหัสนี้:
<?php
/**
* @file
* Drush commands related to Content Types.
*/
/**
* Implements hook_drush_command().
*/
function drush_content_types_drush_command() {
$items['content-type-list'] = array(
'description' => dt("Show a list of available content types."),
'aliases' => array('ctl'),
);
return $items;
}
/**
* Callback for the content-type-list command.
*/
function drush_drush_content_types_content_type_list() {
$content_types = array_keys(node_type_get_types());
sort($content_types);
drush_print(dt("Machine name"));
drush_print(implode("\r\n", $content_types));
}
ติดตั้งโมดูลรันdrush cc drush
เพื่อล้างแคช drush และใช้คำสั่งดังนี้:
drush ctl
หรือ
drush content-type-list
หากคุณต้องการเพิ่มนามแฝงอื่นในคำสั่งเพิ่มองค์ประกอบไปยังอาร์เรย์ชื่อแทนดังนี้:
'aliases' => array('ctl', 'all-content-types', 'act'),
และคุณสามารถใช้คำสั่งนี้:
drush act
drush all-content-types
drush ctl
drush content-type-list
ผลลัพธ์จะเป็น:
Machine name:
content 1
content 2
content...
content n