You are here

function contemplate_features_api in Content Templates (Contemplate) 6

Implementation of hook_features_api().

File

./contemplate.module, line 891
Create templates to customize teaser and body content.

Code

function contemplate_features_api() {
  return array(
    'contemplate' => array(
      'name' => t('Content Templates'),
      'default_hook' => 'contemplate_templates',
      'default_file' => FEATURES_DEFAULTS_INCLUDED,
      'file' => drupal_get_path('module', 'contemplate') . '/includes/contemplate.features.inc',
    ),
  );
}