You are here

function custom_formatters_features_api in Custom Formatters 6

Implements hook_features_api().

File

includes/features.inc, line 10
Provides Custom Formatters integration with the Features module.

Code

function custom_formatters_features_api() {
  return array(
    'custom_formatters' => array(
      'name' => t('Custom Formatters'),
      'feature_source' => TRUE,
      'default_hook' => 'custom_formatters_defaults',
      'default_file' => FEATURES_DEFAULTS_INCLUDED_COMMON,
    ),
  );
}