You are here

function ctools_component_configuration_api in Configuration Management 7

Master implementation of hook_configuration_api() for all ctools components.

Note that this master hook does not use $component like the others, but uses the component module's namespace instead.

File

includes/configuration.ctools.inc, line 111

Code

function ctools_component_configuration_api($module_name) {
  $api = array();
  foreach (_ctools_configuration_get_info() as $component => $info) {
    $api[$component] = $info;
  }
  return $api;
}