function ccl_features_api in Custom Contextual Links 8
Same name and namespace in other branches
- 7 ccl.module \ccl_features_api()
Implements hook_features_api().
File
- ./
ccl.module, line 69 - Main CCL module file.
Code
function ccl_features_api() {
return array(
'ccl' => array(
'name' => 'Custom Contextual Links',
'file' => drupal_get_path('module', 'ccl') . '/ccl.features.inc',
'default_hook' => 'ccl_features_preset',
'feature_source' => TRUE,
),
);
}