function wysiwyg_get_editor_config in Wysiwyg 5
Same name and namespace in other branches
- 5.2 wysiwyg.module \wysiwyg_get_editor_config()
- 6.2 wysiwyg.module \wysiwyg_get_editor_config()
- 6 wysiwyg.module \wysiwyg_get_editor_config()
- 7.2 wysiwyg.module \wysiwyg_get_editor_config()
Return an array of initial editor settings for a Wysiwyg profile.
1 call to wysiwyg_get_editor_config()
- wysiwyg_add_editor_settings in ./
wysiwyg.module - Add editor settings for a given input format.
File
- ./
wysiwyg.module, line 446 - Integrate client-side editors with Drupal.
Code
function wysiwyg_get_editor_config($profile, $theme) {
$editor = wysiwyg_get_editor($profile->editor);
$settings = array();
if (!empty($editor['settings callback']) && function_exists($editor['settings callback'])) {
$settings = $editor['settings callback']($editor, $profile->settings, $theme);
}
return $settings;
}