आप नाम से ड्रश कमांड बना सकते हैं 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