Вы можете создать команду 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