function wysiwyg_jwysiwyg_settings in Wysiwyg 7.2
Same name and namespace in other branches
- 6.2 editors/jwysiwyg.inc \wysiwyg_jwysiwyg_settings()
Return runtime editor settings for a given wysiwyg profile.
Parameters
$editor: A processed hook_editor() array of editor properties.
$config: An array containing wysiwyg editor profile settings.
$theme: The name of a theme/GUI/skin to use.
Return value
A settings array to be populated in Drupal.settings.wysiwyg.configs.{editor}
1 string reference to 'wysiwyg_jwysiwyg_settings'
- wysiwyg_jwysiwyg_editor in editors/
jwysiwyg.inc - Plugin implementation of hook_editor().
File
- editors/
jwysiwyg.inc, line 61 - Editor integration functions for jWYSIWYG.
Code
function wysiwyg_jwysiwyg_settings($editor, $config, $theme) {
$settings = array(
'initialContent' => '',
);
return $settings;
}