You are here

function contemplate_features_export_options in Content Templates (Contemplate) 6

Implementation of hook_features_export_options().

File

includes/contemplate.features.inc, line 6

Code

function contemplate_features_export_options() {
  $options = array();
  foreach (contemplate_get_templates() as $template) {
    if (strlen($template['type'])) {
      $options[$template['type']] = $template['type'];
    }
  }
  return $options;
}