You are here

function wysiwyg_features_api in Wysiwyg 7.2

Implements hook_features_api().

File

./wysiwyg.module, line 1453

Code

function wysiwyg_features_api() {
  return array(
    'wysiwyg' => array(
      'name' => t('Wysiwyg profiles'),
      'default_hook' => 'wysiwyg_default_profiles',
      'default_file' => FEATURES_DEFAULTS_INCLUDED,
      'feature_source' => TRUE,
      'file' => drupal_get_path('module', 'wysiwyg') . '/wysiwyg.features.inc',
    ),
  );
}