You are here

function wysiwyg_template_features_export_options in Wysiwyg API template plugin 7.2

Implements hook_features_export_options().

File

./wysiwyg_template.features.inc, line 10
Additional hooks for features support.

Code

function wysiwyg_template_features_export_options() {
  $options = array();
  foreach (wysiwyg_template_load_all() as $template) {
    $options[$template['name']] = $template['title'];
  }
  return $options;
}