Ви можете створити команду 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 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