function _components_indentifier_formater in Configuration Management 7.2
List of all components and its identifier in the following format component.identifier.
3 calls to _components_indentifier_formater()
File
- ./
configuration.drush.inc, line 178 - configuration.drush.inc Let you perform configuration actions from the console.
Code
function _components_indentifier_formater() {
$formated = array();
$components = _get_component_and_identifier();
foreach ($components as $component) {
if (!empty($component['identifier'])) {
$formated[] = $component['machine_name'] . "." . $component['identifier'];
}
}
return $formated;
}