You are here

function _configuration_list in Configuration Management 7.2

1 string reference to '_configuration_list'
configuration_drush_command in ./configuration.drush.inc
Implements of hook_drush_command().

File

./configuration.drush.inc, line 192
configuration.drush.inc Let you perform configuration actions from the console.

Code

function _configuration_list() {
  $header = array();
  $header[] = array(
    'Component::Name',
    'Component::Machine Name',
    'Identifier',
  );
  $content = _get_component_and_identifier();
  $table = array_merge($header, $content);
  drush_print_table($table, TRUE);
}