function ckeditor_profile_features_export_options in CKEditor - WYSIWYG HTML editor 7
Same name and namespace in other branches
- 6 includes/ckeditor.features.inc \ckeditor_profile_features_export_options()
Implementation of hook_features_export_options()
File
- includes/
ckeditor.features.inc, line 40 - CKEditor - The text editor for the Internet - http://ckeditor.com Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
Code
function ckeditor_profile_features_export_options() {
$options = array();
$profiles = (array) ckeditor_profile_load();
foreach ($profiles as $name => $profile) {
$options[$name] = $profile->name;
}
return $options;
}