Bạn có thể tạo một lệnh drush có tên content-type-list
. Tạo một mô-đun có tên drush_content_types
, bên trong drush_content_types.drush.inc
tệp đặt mã này:
<?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));
}
Cài đặt mô-đun, chạy drush cc drush
để xóa bộ đệm ẩn và sử dụng lệnh như thế này:
drush ctl
hoặc là
drush content-type-list
Nếu bạn muốn thêm một bí danh khác vào lệnh, hãy thêm các phần tử vào mảng bí danh như thế này:
'aliases' => array('ctl', 'all-content-types', 'act'),
Và bạn có thể sử dụng các lệnh này:
drush act
drush all-content-types
drush ctl
drush content-type-list
Luôn luôn đầu ra sẽ là:
Machine name:
content 1
content 2
content...
content n