'jWYSIWYG', 'vendor url' => 'http://github.com/akzhan/jwysiwyg', 'download url' => 'http://github.com/akzhan/jwysiwyg/tags', 'libraries' => array( '' => array( 'title' => 'Source', 'files' => array('jquery.wysiwyg.js'), ), ), 'verified version range' => array('0.5', '0.97'), 'version callback' => 'wysiwyg_jwysiwyg_version', 'settings form callback' => 'wysiwyg_jwysiwyg_settings_form', 'settings callback' => 'wysiwyg_jwysiwyg_settings', // @todo Wrong property; add separate properties for editor requisites. 'css path' => wysiwyg_get_path('jwysiwyg'), 'versions' => array( '0.97' => array( 'js files' => array('jwysiwyg.js'), 'css files' => array('jquery.wysiwyg.css'), ), ), ); return $editor; } /** * Enhances the editor profile settings form for jWYSIWYG. */ function wysiwyg_jwysiwyg_settings_form(&$form, &$form_state) { $form['buttons']['#access'] = FALSE; $form['basic']['language']['#access'] = FALSE; $form['css']['#access'] = FALSE; } /** * Return runtime editor settings for a given wysiwyg profile. * * @param $editor * A processed hook_editor() array of editor properties. * @param $config * An array containing wysiwyg editor profile settings. * @param $theme * The name of a theme/GUI/skin to use. * * @return * A settings array to be populated in * Drupal.settings.wysiwyg.configs.{editor} */ function wysiwyg_jwysiwyg_settings($editor, $config, $theme) { $settings = array( 'initialContent' => '', ); return $settings; } /** * Detect editor version. * * @param $editor * An array containing editor properties as returned from hook_editor(). * * @return * The installed editor version. */ function wysiwyg_jwysiwyg_version($editor) { $script = $editor['library path'] . '/jquery.wysiwyg.js'; if (!file_exists($script)) { return; } $script = fopen($script, 'r'); fgets($script); $line = fgets($script); if (preg_match('@([0-9\.]+)$@', $line, $version)) { fclose($script); return $version[1]; } fclose($script); }