function configuration_drush_help in Configuration Management 7.2
Implements of hook_drush_help()
File
- ./
configuration.drush.inc, line 14 - configuration.drush.inc Let you perform configuration actions from the console.
Code
function configuration_drush_help($section) {
switch ($section) {
case 'drush:cgi':
return dt("Return the list of identifiers for a given component.");
case 'drush:cgc':
return dt("Return the list of configurations components that can be exported.");
case 'drush:cgt':
return dt("Return the list of configurations components that are tracked.");
case 'drush:cgnt':
return dt("Return the list of configurations components that are not tracked.");
case 'drush:cexp':
return dt("Export a configuration to the Data Store.");
case 'drush:csyn':
return dt("Synchronize configurations based on config://tracked.inc.");
case 'drush:csta':
return dt("Start tracking a configuration changes.");
case 'drush:csto':
return dt("Stop tracking a configuration changes.");
case 'drush:clist':
return dt("Return the list of components and identifiers.");
}
}