You are here

function image_configuration_api in Configuration Management 7

Implements hook_configuration_api().

File

includes/configuration.image.inc, line 6

Code

function image_configuration_api() {
  return array(
    'image' => array(
      'name' => t('Image styles'),
      'feature_source' => TRUE,
      'default_hook' => 'configuration_image_default_styles',
      'default_file' => CONFIGURATION_DEFAULTS_INCLUDED,
    ),
  );
}