You are here

function cloud_zoom_features_api in Cloud Zoom 6

Implementation of hook_features_api().

File

./cloud_zoom.module, line 310
This module integrates the Cloud Zoom JQuery library from: http://www.professorcloud.com/mainsite/cloud-zoom.htm

Code

function cloud_zoom_features_api() {
  return array(
    'cloud_zoom_preset' => array(
      'name' => t('Cloud Zoom Presets'),
      'default_hook' => 'cloud_zoom_preset_info',
      'default_file' => 'FEATURES_DEFAULTS_INCLUDED_COMMON',
      'features_source' => TRUE,
      'file' => drupal_get_path('module', 'cloud_zoom') . '/cloud_zoom.features.inc',
    ),
  );
}