'. t('Please go to the !fckeditorlink to download the latest version. After that you must extract the files to %fckeditorpath and make sure that the directory %fckeditorsubdir and the file %fckeditorfile exist. Refer to the !readme for more information.', array( '%checkfile' => $fckconfig_file, '!fckeditorlink' => l(t('FCKeditor homepage'), 'http://www.fckeditor.net/download'), '!readme' => l(t('readme.txt'), 'admin/help/fckeditor'), '%fckeditorpath' => $editor_path, '%fckeditorsubdir' => $editor_path .'/editor', '%fckeditorfile' => $editor_path .'/fckeditor.js', )), 'error'); drupal_set_message(t('If you have FCKeditor already installed please edit !editgloballink and update FCKeditor path.', array( '!editgloballink' => l(t('FCKeditor Global Profile'), 'admin/settings/fckeditor/editg'), )), 'warning'); return FALSE; } $access_fckeditor_roles = user_roles(FALSE, 'access fckeditor'); if (!$access_fckeditor_roles) { drupal_set_message(t('There is currently no role with the %accesspermission permission. Visit !permissionslink administration section.', array( '%accesspermission' => t('access fckeditor'), '!permissionslink' => l(t('permissions'), 'admin/user/permissions') )), 'warning'); } else { $result = db_query_range("SELECT name FROM {fckeditor_settings} WHERE name <> 'FCKeditor Global Profile'", 0, 1); $has_profiles = FALSE; //find profile other than Global if (($obj = db_fetch_object($result))) { $has_profiles = TRUE; } //find roles with profiles $result = db_query("SELECT rid FROM {fckeditor_role}"); $rids = array(); while (($obj = db_fetch_object($result))) { $rids[] = $obj->rid; } $rids = array_unique($rids); if (!$has_profiles) { drupal_set_message(t('No FCKeditor profiles found. At this moment, nobody is able to use FCKeditor. Create new profile below.'), 'error'); } else { //not all roles with access fckeditor has their FCKeditor profile assigned $diff = array_diff(array_keys($access_fckeditor_roles), $rids); if ($diff) { $items = array(); foreach ($diff as $rid) { $items[] = $access_fckeditor_roles[$rid]; } drupal_set_message(t('Not all roles with %accesspermission permission are associated with FCKeditor profiles. As a result, users having the following roles may be unable to use FCKeditor: !list Create new or edit FCKeditor profiles below and in the %basicsetupsection section, check %rolesetting.', array( '%accesspermission' => t('access fckeditor'), '%basicsetupsection' => t('Basic setup'), '%rolesetting' => t('Roles allowed to use this profile'), '!list' => theme('item_list', $items), )), 'warning'); } } } return fckeditor_profile_overview(); } /** * Controller for fckeditor profiles. */ function fckeditor_profile_overview() { $output = ''; $profiles = fckeditor_profile_load(); if ($profiles) { $access_fckeditor_roles = user_roles(FALSE, 'access fckeditor'); $header = array(t('Profile'), t('Roles'), t('Operations')); foreach ($profiles as $p) { $rids = $p->rids; if ($p->name !== 'FCKeditor Global Profile') { foreach (array_keys($p->rids) as $rid) { if (!isset($access_fckeditor_roles[$rid])) { unset($rids[$rid]); } } $rows[] = array( array('data' => $p->name, 'valign' => 'top'), array('data' => implode("
\n", $rids)), array('data' => l(t('edit'), 'admin/settings/fckeditor/edit/'. rawurlencode($p->name)) .' '. l(t('clone'), 'admin/settings/fckeditor/clone/'. rawurlencode($p->name)) .' '. l(t('delete'), 'admin/settings/fckeditor/delete/'. rawurlencode($p->name)), 'valign' => 'top' ) ); } } $output .= '

'. t('Profiles') .'

'; $output .= theme('table', $header, $rows); $output .= '

'. l(t('Create new profile'), 'admin/settings/fckeditor/add') .'

'; } else { drupal_set_message(t('No profiles found. Click here to !createlink.', array( '!createlink' => l(t('create a new profile'), 'admin/settings/fckeditor/add'), ))); } $rows = array(); if (!isset($profiles['FCKeditor Global Profile'])) { drupal_set_message(t('Global profile not found. Click here to !createlink.', array( '!createlink' => l(t('create the global profile'), 'admin/settings/fckeditor/addg'), ))); } else { $output .= '

'. t('Global settings') .'

'; $rows[] = array( array('data' => t('FCKeditor Global Profile'), 'valign' => 'top'), array('data' => l(t('edit'), 'admin/settings/fckeditor/editg') .' '. l(t('delete'), 'admin/settings/fckeditor/delete/FCKeditor Global Profile'), 'valign' => 'top') ); $output .= theme('table', array(t('Profile'), t('Operations')), $rows); } return $output; } /** * Clone profile */ function fckeditor_admin_profile_clone_form($form_state, $oldprofile) { return fckeditor_admin_profile_form($form_state, $oldprofile); } function fckeditor_admin_profile_clone_form_validate($form_state, $oldprofile) { fckeditor_admin_profile_form_validate($form_state, $oldprofile); } function fckeditor_admin_profile_clone_form_submit($form, &$form_state) { $edit =& $form_state['values']; drupal_set_message(t('Your FCKeditor profile has been created.')); $settings = fckeditor_admin_values_to_settings($edit); db_query("INSERT INTO {fckeditor_settings} (name, settings) VALUES ('%s', '%s')", $edit['name'], $settings); fckeditor_rebuild_selectors($edit['name']); if (!empty($edit['rids'])) { foreach (array_keys($edit['rids']) as $rid) { if ($edit['rids'][$rid]!=0) { db_query("INSERT INTO {fckeditor_role} (name, rid) VALUES ('%s', %d)", $edit['name'], $rid); } } } $form_state['redirect'] = 'admin/settings/fckeditor'; } /** * Form builder for a normal profile */ function fckeditor_admin_profile_form($form_state, $profile = NULL) { if ($profile != NULL) { $form['_profile'] = array( '#type' => 'value', '#value' => $profile, ); } else { $profile = new stdClass(); } module_load_include('lib.inc', 'fckeditor'); $toolbar_options = fckeditor_load_toolbar_options(); $skin_options = fckeditor_load_skin_options(); $lang_options = fckeditor_load_lang_options(); // Only display the roles that currently don't have a fckeditor profile. One // profile per role. $orig_roles = user_roles(FALSE, 'access fckeditor'); $roles = $orig_roles; if (!empty($profile->rids) && !user_roles(FALSE, 'access fckeditor')) { drupal_set_message(t('You haven\'t assigned %accesspermission !permissionslink yet. It is recommended to assign the %accesspermission !permissionslink before updating FCKeditor profiles.', array( '%accesspermission' => t('access fckeditor'), '!permissionslink' => l(t('permission'), 'admin/user/permissions'), )), 'warning'); } if (empty($profile->name)) { $result = db_query("SELECT DISTINCT(rid) FROM {fckeditor_role}"); while (($data = db_fetch_object($result))) { if ((empty($profile->rids) || !in_array($data->rid, array_keys((array) $profile->rids))) && !form_get_errors()) { unset($roles[$data->rid]); } } if (count($orig_roles) != count($roles)) { drupal_set_message(t('Not all user roles are shown since they already have FCKeditor profiles. You must first unassign profiles in order to add them to a new one.')); } } $form['basic'] = array( '#type' => 'fieldset', '#title' => t('Basic setup'), '#collapsible' => TRUE, '#collapsed' => TRUE ); if (arg(3) == 'clone') { //load all profiles to check their names $profiles = fckeditor_profile_load(); $oldname = $profile->name; $maxsize=128; //default max name length $res=array(); $pat = "/^(?.*?)_(?[0-9]*)$/"; if (preg_match_all($pat, $oldname, $res)) { // oldname like 'name_nr' $name=$res['name'][0]; $num=$res['n'][0]+1; } else{ $name=$oldname; $num=2; } $newname=substr($name, 0, $maxsize-3) .'_'. $num; // +limit while (isset($profiles[$newname])) { //find next free number $num++; $newname=substr($name, 0, $maxsize-3) .'_'. $num; } //dont clone rids $profile->settings['rids']=array(); $profile->rids=array(); } else { $newname = $profile->name; } $form['basic']['name'] = array( '#type' => 'textfield', '#title' => t('Profile name'), '#default_value' => !empty($profile->name) ? $newname : '', '#size' => 40, '#maxlength' => 128, '#description' => t('Enter a name for this profile. This name is only visible within the fckeditor administration page.'), '#required' => TRUE ); $form['basic']['rids'] = array( '#type' => 'checkboxes', '#title' => t('Roles allowed to use this profile'), '#default_value' => !empty($profile->rids) ? array_keys((array) $profile->rids) : array(), '#options' => $roles, '#description' => t('Only roles with %accesspermission permission will be shown here. If no role is available, make sure that you have assigned the %accesspermission !permissionslink.', array( '%accesspermission' => t('access fckeditor'), '!permissionslink' => l(t('permission'), 'admin/user/permissions'), )), '#required' => TRUE ); $form['basic']['allow_user_conf'] = array( '#type' => 'radios', '#title' => t('Allow users to customize FCKeditor appearance'), '#default_value' => !empty($profile->settings['allow_user_conf']) ? $profile->settings['allow_user_conf'] : 'f', '#options' => array( 'f' => t('No'), 't' => t('Yes') ), '#description' => t('If allowed, users will be able to override the %appearancesection by visiting their profile page.', array('%appearancesection' => t('Editor appearance'))), ); $form['security'] = array( '#type' => 'fieldset', '#title' => t('Security'), '#description' => '

'. t('The FCKeditor security system protects you from executing malicious code that is already in your database. In plain text areas database content is harmless because it is not executed, but the FCKeditor WYSIWYG editor evaluates HTML like a web browser and content needs to be filtered before it is loaded.') .'

', '#collapsible' => TRUE, '#collapsed' => TRUE ); $all = filter_list_all(); $form['security']['filters'] = array( '#type' => 'fieldset', '#title' => t('Security filters'), '#description' => t('Please choose carefully all filters that protect your content (probably not all filters listed below are security filters).'), '#tree' => TRUE, ); //don't bother administrator with filters that definitely are not security filters $modules_with_filters_to_skip = array('amazon_filter', 'asy', 'bbcode', 'biblio', 'blockquote', 'bookpost', 'chessboard', 'citation_filter', 'codefilter', 'collapse_text', 'contextlinks', 'coolfilter', 'dialectic', 'dript', 'dme', 'drutex', 'embedfilter', 'ext_link_page', 'extlink', 'elf', 'flickr', 'flickrstickr', 'footnotes', 'formdefaults', 'freelinking', 'gallery', 'geogebra', 'geshifilter', 'gotwo', 'googtube', 'gotcha', 'gtspam', 'hidden_content', 'img_assist', 'image_filter', 'inlinetags', 'insert_view', 'insertframe', 'insertnode', 'interwiki', 'jlightbox', 'jsmath', 'language_sections', 'link_node', 'lootz', 'markdown', 'marksmarty', 'mobile_codes', 'mykml', 'nofollowlist', 'oagwt', 'paging', 'pathfilter', 'pearwiki_filter', 'php', 'pirate', 'reptag', 'scrippet', 'scripturefilter', 'signwriter', 'slideshowpro', 'smartlinebreakconverter', 'smartypants', 'smileys', 'spamspan', 'spam_tokens', 'spoiler', 'table_altrow', 'tablemanager', 'tableofcontents', 'textile', 'tooltips', 'twikifilter', 'typogrify', 'unwrap', 'urlclass', 'urlicon', 'url_replace_filter', 'username_highlighter', 'video_filter', 'quote'); if (!isset($profile->settings['ss'])) { $profile->settings['filters']['filter/0'] = 1; } foreach ($all as $id => $filter) { if (in_array(strtolower($filter->module), $modules_with_filters_to_skip)) { continue; } //skip line break converter and email -> link if ($filter->module == 'filter' && in_array($filter->delta, array(1, 2))) { continue; } $form['security']['filters'][$id] = array( '#type' => 'checkbox', '#title' => $filter->name, '#default_value' => !empty($profile->settings['filters'][$id]), '#description' => module_invoke($filter->module, 'filter', 'description', $filter->delta), ); } $form['security']['ss'] = array( '#type' => 'radios', '#title' => t('Security settings'), '#default_value' => isset($profile->settings['ss']) ? $profile->settings['ss'] : '2', '#options' => array( '2' => t('Always run security filters for FCKeditor.'), '1' => t('Run security filters only when FCKeditor is set to start automatically.'), ), '#description' => t('There are two ways of starting FCKeditor: automatically and manually (via toggle or in a popup). If you decide to apply security filters only when FCKeditor starts automatically, you will not be protected when toggling manually from plain text area to FCKeditor or when using FCKeditor in a popup mode. So choose this option only, if you can detect various attacks (mainly XSS) by yourself just by looking at the HTML code.'), ); $form['fckeditor_exclude_settings'] = array( '#type' => 'fieldset', '#title' => t('Visibility settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#description' => t('The following settings are combined with the visibility settings of the global profile.'), ); $form['fckeditor_exclude_settings']['min_rows'] = array( '#type' => 'textfield', '#title' => t('Minimum rows'), '#default_value' => !empty($profile->settings['min_rows']) ? $profile->settings['min_rows'] : '5', '#description' => t('FCKeditor will be triggered if the textarea has more rows than entered here. Enter \'1\' if you do not want to use this feature.'), ); $form['fckeditor_exclude_settings']['excl_mode'] = array( '#type' => 'radios', '#title' => t('Use inclusion or exclusion mode'), '#default_value' => (empty($profile->settings['excl_mode']) || in_array($profile->settings['excl_mode'], array(0, 2))) ? 0 : 1, '#options' => array( '0' => t('Exclude'), '1' => t('Include') ), '#description' => t('Choose the way of disabling/enabling FCKeditor on selected fields/paths (see below). Use exclude to disable FCKeditor on selected fields/paths. Use include if you want to load FCKeditor only on selected paths/fields.'), ); /** * get excluded fields - so we can have normal textareas too * split the phrase by any number of commas or space characters, * which include " ", \r, \t, \n and \f */ $form['fckeditor_exclude_settings']['excl'] = array( '#type' => 'textarea', '#title' => t('Fields to exclude/include'), '#cols' => 60, '#rows' => 5, '#prefix' => '
', '#suffix' => '
', '#default_value' => !empty($profile->settings['excl']) ? $profile->settings['excl'] : '', '#description' => t('Enter the paths to the textarea fields on which you want to enable or disable FCKeditor.') .' '. t('Please see the !helppagelink for more information about defining field names. Short instruction is available below.', array( '!helppagelink' => l(t('help page'), 'admin/help/fckeditor', array('fragment' => 'fieldinclexcl')), )) . ' ', '#wysiwyg' => FALSE, ); $form['fckeditor_exclude_settings']['simple_incl'] = array( '#type' => 'textarea', '#title' => t('Force simplified toolbar on the following fields'), '#cols' => 60, '#rows' => 5, '#default_value' => !empty($profile->settings['simple_incl']) ? $profile->settings['simple_incl'] : '', '#description' => t('Enter the paths to the textarea fields on which you want to force the simplified toolbar (%toolbarname).', array( '%toolbarname' => FCKEDITOR_FORCE_SIMPLE_TOOLBAR_NAME, )) .' '. t('Please see the !helppagelink for more information about defining field names. Take a look at the exclusion settings (above) for short instruction.', array( '!helppagelink' => l(t('help page'), 'admin/help/fckeditor', array('fragment' => 'fieldinclexcl')), )), '#wysiwyg' => FALSE, ); $form['appearance'] = array( '#type' => 'fieldset', '#title' => t('Editor appearance'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['appearance']['default'] = array( '#type' => 'radios', '#title' => t('Default state'), '#default_value' => !empty($profile->settings['default']) ? $profile->settings['default'] : 't', '#options' => array( 't' => t('Enabled'), 'f' => t('Disabled') ), '#description' => t('Default editor state. If disabled, rich text editor may still be enabled using toggle or popup window.'), ); $form['appearance']['show_toggle'] = array( '#type' => 'radios', '#title' => t('Show disable/enable rich text editor toggle'), '#default_value' => !empty($profile->settings['show_toggle']) ? $profile->settings['show_toggle'] : 't', '#options' => array( 't' => t('Show'), 'f' => t('Hide') ), '#description' => t('Whether or not to show the disable/enable rich text editor toggle below the textarea. Works only if FCKeditor is not running in a popup window (see below).'), ); $form['appearance']['popup'] = array( '#type' => 'radios', '#title' => t('Use FCKeditor in a popup window'), '#default_value' => !empty($profile->settings['popup']) ? $profile->settings['popup'] : 'f', '#options' => array( 'f' => t('No'), 't' => t('Yes') ), '#description' => t('If this option is enabled a link to a popup window will be used instead of a textarea replace.'), ); $form['appearance']['skin'] = array( '#type' => 'select', '#title' => t('Skin'), '#default_value' => !empty($profile->settings['skin']) ? $profile->settings['skin'] : 'default', '#options' => $skin_options, '#description' => t('Choose a default skin.'), ); $form['appearance']['toolbar'] = array( '#type' => 'select', '#title' => t('Toolbar'), '#default_value' => !empty($profile->settings['toolbar']) ? $profile->settings['toolbar'] : 'default', '#options' => $toolbar_options, '#description' => t('Choose a default toolbar set. To define new toolbar, edit %configfile located in %module_path.', array( '%configfile' => 'fckeditor.config.js', '%module_path' => drupal_get_path('module', 'fckeditor'), )), ); $form['appearance']['expand'] = array( '#type' => 'radios', '#title' => t('Start the toolbar expanded'), '#default_value' => !empty($profile->settings['expand']) ? $profile->settings['expand'] : 't', '#options' => array( 't' => t('Expanded'), 'f' => t('Collapsed') ), '#description' => t('The toolbar start expanded or collapsed.'), ); $form['appearance']['width'] = array( '#type' => 'textfield', '#title' => t('Width'), '#default_value' => !empty($profile->settings['width']) ? $profile->settings['width'] : '100%', '#description' => t('Width in pixels or percent.') .' '. t('Example') .': 400 '. t('or') .' 100%.', '#size' => 40, '#maxlength' => 128, ); $form['appearance']['lang'] = array( '#type' => 'select', '#title' => t('Language'), '#default_value' => !empty($profile->settings['lang']) ? $profile->settings['lang'] : 'en', '#options' => $lang_options, '#description' => t('The language for the FCKeditor interface.') ); $form['appearance']['auto_lang'] = array( '#type' => 'radios', '#title' => t('Auto-detect language'), '#default_value' => !empty($profile->settings['auto_lang']) ? $profile->settings['auto_lang'] : 't', '#options' => array( 't' => t('Enabled'), 'f' => t('Disabled') ), '#description' => t('Use auto detect user language feature.') ); $form['output'] = array( '#type' => 'fieldset', '#title' => t('Cleanup and output'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['output']['enter_mode'] = array( '#type' => 'select', '#title' => t('Enter mode'), '#default_value' => !empty($profile->settings['enter_mode']) ? $profile->settings['enter_mode'] : 'p', '#options' => array( 'p' => '

', 'br' => '
', 'div' => '

' ), '#description' => t('Set which tag FCKeditor should use when [Enter] key is pressed.') ); $form['output']['shift_enter_mode'] = array( '#type' => 'select', '#title' => t('Shift + Enter mode'), '#default_value' => !empty($profile->settings['shift_enter_mode']) ? $profile->settings['shift_enter_mode'] : 'br', '#options' => array( 'p' => '

', 'br' => '
', 'div' => '

' ), '#description' => t('Set which tag FCKeditor should use when [Shift] + [Enter] is pressed.') ); $form['output']['font_format'] = array( '#type' => 'textfield', '#title' => t('Font formats'), '#default_value' => !empty($profile->settings['font_format']) ? $profile->settings['font_format'] : 'p;div;pre;address;h1;h2;h3;h4;h5;h6', '#size' => 40, '#maxlength' => 250, '#description' => t('Semicolon separated list of HTML font formats.') .' '. t('Allowed values are') .': p;div;pre;address;h1;h2;h3;h4;h5;h6', ); $form['output']['format_source'] = array( '#type' => 'radios', '#title' => t('Apply source formatting'), '#default_value' => !empty($profile->settings['format_source']) ? $profile->settings['format_source'] : 't', '#options' => array( 't' => t('Yes'), 'f' => t('No') ), '#description' => t('When set to %true the editor will format the XHTML when switching from WYSIWYG view to Source view, by inserting line breaks on some tags endings and indenting paragraphs, tables and lists.', array( '%true' => t('Yes'), )), ); $form['output']['format_output'] = array( '#type' => 'radios', '#title' => t('Format output'), '#default_value' => !empty($profile->settings['format_output']) ? $profile->settings['format_output'] : 't', '#options' => array( 't' => t('Yes'), 'f' => t('No') ), '#description' => t('When set to %true the editor will format the XHTML output by inserting line breaks on some tags endings and indenting paragraphs, tables and lists.', array( '%true' => t('Yes'), )), ); $form['css'] = array( '#type' => 'fieldset', '#title' => t('Style and template files'), '#collapsible' => TRUE, '#collapsed' => TRUE ); $form['css']['css_mode'] = array( '#type' => 'select', '#title' => t('Editor CSS'), '#default_value' => !empty($profile->settings['css_mode']) ? $profile->settings['css_mode'] : 'theme', '#options' => array( 'theme' => t('Use theme CSS'), 'self' => t('Define CSS'), 'none' => t('FCKeditor default') ), '#description' => t('Defines the CSS to be used in the editor area.') .'
'. t('Use theme CSS') .': '. t('load style.css from current site theme.') .'
'. t('Define CSS') .': '. t('enter path for CSS file below.') .'
'. t('FCKeditor default') .': '. t('uses default CSS from editor.') ); $form['css']['css_path'] = array( '#type' => 'textfield', '#title' => t('CSS path'), '#default_value' => !empty($profile->settings['css_path']) ? $profile->settings['css_path'] : "", '#size' => 40, '#maxlength' => 255, '#description' => t('Enter path to CSS file (Example: %cssexample1) or a list of CSS files separated by a comma (Example: %cssexample2). Make sure to select %defcss above.', array( '%cssexample1' => 'css/editor.css', '%cssexample2' => '/themes/garland/style.css,http://example.com/style.css', '%defcss' => 'Define css', )) .'
'. t('Available placeholders') .':
'. '%h - '. t('host name (%host)', array('%host' => base_path())) .'
'. '%t - '. t('path to theme (%theme)', array('%theme' => base_path() . path_to_theme() .'/')) ); $form['css']['css_style'] = array( '#type' => 'select', '#title' => t('Predefined styles'), '#default_value' => !empty($profile->settings['css_style']) ? $profile->settings['css_style'] : 'theme', '#options' => array( 'theme' => t('Use theme fckstyles.xml'), 'self' => t('Define path to fckstyles.xml'), 'default' => t('FCKeditor default') ), '#description' => t('Define the location of %file file. It is used by the %setting dropdown list available in the default toolbar. Copy %sourcefile inside your theme directory (%themefile) and adjust it to your needs.', array( '%file' => 'fckstyles.xml', '%setting' => t('Style'), '%sourcefile' => fckeditor_path(TRUE) .'/fckstyles.xml', '%themefile' => path_to_theme() .'/fckstyles.xml', )) ); $form['css']['styles_path'] = array( '#type' => 'textfield', '#title' => t('Predefined styles path'), '#default_value' => !empty($profile->settings['styles_path']) ? $profile->settings['styles_path'] : "", '#size' => 40, '#maxlength' => 255, '#description' => t('Enter the path to XML file with predefined @type (Example: %example). Be sure to select %setting above.', array( '@type' => t('styles'), '%example' => '/fckstyles.xml', '%setting' => t('Define path to fckstyles.xml'), )) .'
'. t('Available placeholders') .':
'. '%h - '. t('host name (%host)', array('%host' => base_path())) .'
'. '%t - '. t('path to theme (%theme)', array('%theme' => base_path() . path_to_theme() .'/')) .'
'. '%m - '. t('path to FCKeditor module (%module)', array('%module' => drupal_get_path('module', 'fckeditor'))), ); $form['css']['templatefile_mode'] = array( '#type' => 'select', '#title' => t('Predefined templates'), '#default_value' => !empty($profile->settings['templatefile_mode']) ? $profile->settings['templatefile_mode'] : 'default', '#options' => array( 'default' => t('FCKeditor default'), 'theme' => t('Use theme fcktemplates.xml'), 'self' => t('Define path to fcktemplates.xml'), ), '#description' => t('Define the location of %file file. It is used by the %setting dropdown list available in the default toolbar. Copy %sourcefile inside your theme directory (%themefile) and adjust it to your needs.', array( '%file' => 'fcktemplates.xml', '%setting' => t('Templates'), '%sourcefile' => fckeditor_path(TRUE) .'/fcktemplates.xml', '%themefile' => path_to_theme() .'/fcktemplates.xml', )) ); $form['css']['templatefile_path'] = array( '#type' => 'textfield', '#title' => t('Predefined templates path'), '#default_value' => !empty($profile->settings['templatefile_path']) ? $profile->settings['templatefile_path'] : '', '#size' => 40, '#maxlength' => 255, '#description' => t('Enter the path to XML file with predefined @type (Example: %example). Be sure to select %setting above.', array( '@type' => t('templates'), '%example' => '/fckstyles.xml', '%setting' => t('Define path to fckstyles.xml'), )) .'
'. t('Available placeholders') .':
'. '%h - '. t('host name (%host)', array('%host' => base_path())) .'
'. '%t - '. t('path to theme (%theme)', array('%theme' => base_path() . path_to_theme() .'/')) .'
'. '%m - '. t('path to FCKeditor module (%module)', array('%module' => drupal_get_path('module', 'fckeditor'))), ); $form['fckeditor_upload_settings'] = array( '#type' => 'fieldset', '#title' => t('File browser settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#description' => t('Set file browser settings. A file browser will allow you to explore the files contained on the server and embed them as links, images or flash movies. Besides the built-in FCKeditor file browser, you can also use a contributed module like !imcelink, !iblink or !webfmlink. The quick upload setting controls whether images, flash movies and files can be uploaded using the upload tab of the respective dialogs. Please note that these options require manual configuration, check !readmelink for more information.', array( '!imcelink' => l(t('IMCE'), 'http://drupal.org/project/imce'), '!iblink' => l(t('Image Browser'), 'http://drupal.org/project/imagebrowser'), '!webfmlink' => l(t('Web File Manager'), 'http://drupal.org/project/webfm'), '!readmelink' => l(t('readme.txt'), 'admin/help/fckeditor'), )) ); $filebrowsers = array( 'none' => t('None'), 'builtin' => t('Built-in file browser'), ); if (module_exists('imce')) { $filebrowsers['imce'] = t('IMCE'); } if (module_exists('imagebrowser')) { $filebrowsers['ib'] = t('Image Browser'); } if (module_exists('webfm_popup')) { $filebrowsers['webfm'] = t('Web File Manager'); } $form['fckeditor_upload_settings']['filebrowser'] = array( '#type' => 'select', '#title' => t('File browser type'), '#default_value' => !empty($profile->settings['filebrowser']) ? $profile->settings['filebrowser'] : 'none', '#options' => $filebrowsers, '#description' => t('Select the file browser that you would like to use to upload files, images and flash movies.'), ); $form['fckeditor_upload_settings']['quickupload'] = array( '#type' => 'radios', '#title' => t('Allow quick uploads'), '#default_value' => !empty($profile->settings['quickupload']) ? $profile->settings['quickupload'] : 'f', '#options' => array( 'f' => t('No'), 't' => t('Yes') ), '#description' => t('The quick upload functionality can be disabled and enabled independently of the file browser. It will always use the settings below. To enable quick uploads you must follow the same configuration procedure as when enabling the built-in file browser.'), ); $current_user_files_path = empty($profile->settings['UserFilesPath']) ? "" : strtr($profile->settings['UserFilesPath'], array("%f" => file_directory_path(), "%u" => "UID", "%b" => base_path(), "%n" => "UNAME")); $current_user_files_absolute_path = empty($profile->settings['UserFilesAbsolutePath']) ? "" : strtr($profile->settings['UserFilesAbsolutePath'], array("%f" => file_directory_path(), "%u" => "UID", "%b" => base_path(), "%d" => $_SERVER['DOCUMENT_ROOT'], "%n" => "UNAME")); $form['fckeditor_upload_settings']['UserFilesPath'] = array( '#type' => 'textfield', '#title' => t('Path to uploaded files'), '#default_value' => !empty($profile->settings['UserFilesPath']) ? $profile->settings['UserFilesPath'] : "%b%f/", '#size' => 40, '#maxlength' => 255, '#description' => t('Path to uploaded files relative to the document root.') .'
'. t('Available placeholders') .':
'. '%b - '. t('base URL path of the Drupal installation (%base)', array('%base' => base_path())) .'
'. '%f - '. t('Drupal file system path where the files are stored (%files)', array('%files' => file_directory_path())) .'
'. '%u - '. t('User ID') .'
'. '%n - '. t('Username') .'
'. t('Current path: %path', array('%path' => $current_user_files_path)), ); $form['fckeditor_upload_settings']['UserFilesAbsolutePath'] = array( '#type' => 'textfield', '#title' => t('Absolute path to uploaded files'), '#default_value' => !empty($profile->settings['UserFilesAbsolutePath']) ? $profile->settings['UserFilesAbsolutePath'] : "%d%b%f/", '#size' => 40, '#maxlength' => 255, '#description' => t('The path to the local directory (in the server) which points to the path defined above. If empty, FCKeditor will try to discover the right path.') .'
'. t('Available placeholders') .':
'. '%d - '. t('server path to document root (%root)', array('%root' => $_SERVER['DOCUMENT_ROOT'])) .'
'. '%b - '. t('base URL path of the Drupal installation (%base)', array('%base' => base_path())) .'
'. '%f - '. t('Drupal file system path where the files are stored (%files)', array('%files' => file_directory_path())) .'
'. '%u - '. t('User ID') .'
'. '%n - '. t('Username') .'
'. t('Current path: %path', array('%path' => $current_user_files_absolute_path)), ); if (variable_get('file_downloads', '') == FILE_DOWNLOADS_PRIVATE) { $form['fckeditor_upload_settings']['UserFilesPath']['#description'] = t('Setting relative path to uploaded files has been disabled because private downloads are enabled and this path is calculated automatically. To change the location of uploaded files in the private file system, edit the !globallink.', array('!globallink' => l(t('FCKeditor Global Profile'), 'admin/settings/fckeditor/editg'))); $form['fckeditor_upload_settings']['UserFilesPath']['#disabled'] = TRUE; $form['fckeditor_upload_settings']['UserFilesAbsolutePath']['#description'] = t('Setting path to uploaded files has been disabled because private downloads are enabled and this path is calculated automatically.To change the location of uploaded files in the private file system, edit the !globallink.', array('!globallink' => l(t('FCKeditor Global Profile'), 'admin/settings/fckeditor/editg'))); $form['fckeditor_upload_settings']['UserFilesAbsolutePath']['#disabled'] = TRUE; } $form['advanced'] = array( '#type' => 'fieldset', '#title' => t('Advanced options'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['advanced']['theme_config_js'] = array( '#type' => 'radios', '#title' => t('Load fckeditor.config.js from theme path'), '#default_value' => !empty($profile->settings['theme_config_js']) ? $profile->settings['theme_config_js'] : 'f', '#options' => array( 't' => t('Yes'), 'f' => t('No') ), '#description' => t('When set to %true the editor will try to load the %configfile file from theme directory.', array( '%true' => t('Yes'), '%configfile' => 'fckeditor.config.js', )), ); $form['advanced']['js_conf'] = array( '#type' => 'textarea', '#title' => t('Custom javascript configuration'), '#default_value' => !empty($profile->settings['js_conf']) ? $profile->settings['js_conf'] : "", '#cols' => 60, '#rows' => 5, '#description' => t('To change FCKeditor configuration globally, you should modify the config file: %fckeditor_config. Sometimes it is required to change the FCKeditor configuration for a single profile only. Use this box to define settings that are unique for this profile. Available options are listed in the !docslink. Add the following code snippet to disable some advanced tabs in dialog windows of FCKeditor.', array( '%fckeditor_config' => drupal_get_path('module', 'fckeditor') .'/fckeditor.config.js', '!docslink' => l(t('FCKeditor documentation'), 'http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options'), )) . "
LinkDlgHideTarget = true;\nLinkDlgHideAdvanced = true;\nImageDlgHideLink = true;\nImageDlgHideAdvanced = true;\nFlashDlgHideAdvanced = true;
". ''. t('Warning') .': '. t('If you do something wrong here, FCKeditor may fail to load.'), '#wysiwyg' => FALSE, ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Save') ); return $form; } /** * Profile validation. */ function fckeditor_admin_profile_form_validate($form, &$form_state) { $edit =& $form_state['values']; //include mode and all other fields are empty, invalid if ($edit['excl_mode'] == 1 && empty($edit['excl'])) { form_set_error('excl_mode', t('Include mode selected, but no paths given. Enter at least one path where FCKeditor should appear.')); } else { fckeditor_admin_profile_validate_fieldpaths('excl', $edit['excl']); } fckeditor_admin_profile_validate_fieldpaths('simple_incl', $edit['simple_incl']); if (!preg_match('/^\d+$/', trim($edit['min_rows']))) { form_set_error('min_rows', t('Minimum rows must be a valid number.')); } if ($edit['default'] == 't' && $edit['popup'] == 't') { form_set_error('popup', t('If FCKeditor is enabled by default, popup window must be disabled.')); } if ($edit['show_toggle'] == 't' && $edit['popup'] == 't') { form_set_error('popup', t('If toggle is enabled, popup window must be disabled.')); } if (!$edit['name']) { form_set_error('name', t('You must give a profile name.')); } elseif ($edit['name'] == 'FCKeditor Global Profile') { form_set_error('name', t('This profile name is reserved. Please choose a different name.')); } elseif (!isset($edit['_profile']) || ($edit['_profile']->name != $edit['name'])) { $result = fckeditor_profile_load($edit['name']); if (!empty($result)) { form_set_error('name', t('The profile name must be unique. A profile with this name already exists.')); } } if (!preg_match('/^\d+%?$/', $edit['width'])) { form_set_error('width', t('Enter valid width.') .' '. t('Example') .': 400 '. t('or') .' 100%.'); } if (!empty($edit['css_path'])) { if ($edit['css_mode'] != 'self') { form_set_error('css_path', t('CSS path is not empty.') .' '. t('Please set the %settingname option to %settingoption mode.', array('%settingname' => t('Editor CSS'), '%settingoption' => t('Define CSS')))); } elseif (FALSE !== strpos($edit['css_path'], '"')) { form_set_error('css_path', t('Double quotes are not allowed in CSS path.')); } elseif (substr($edit['css_path'], 0, 1) == "'" && substr($edit['css_path'], -1) == "'") { form_set_error('css_path', t('Enter valid path, do not surround it with quotes.')); } } if (!empty($edit['styles_path'])) { if ($edit['css_style'] != 'self') { form_set_error('styles_path', t('Path to predefined styles is not empty.') .' '. t('Please set the %settingname option to %settingoption mode.', array('%settingname' => t('Predefined styles'), '%settingoption' => t('Define path to fckstyles.xml')))); } elseif (FALSE !== strpos($edit['styles_path'], '"')) { form_set_error('styles_path', t('Double quotes are not allowed in path.')); } elseif (substr($edit['styles_path'], 0, 1) == "'" && substr($edit['styles_path'], -1) == "'") { form_set_error('styles_path', t('Enter valid path, do not surround it with quotes.')); } } if (!empty($edit['templatefile_path'])) { if ($edit['templatefile_mode'] != 'self') { form_set_error('templatefile_path', t('Path to predefined templates is not empty.') .' '. t('Please set the %settingname option to %settingoption mode.', array('%settingname' => t('Predefined templates'), '%settingoption' => t('Define path to fcktemplates.xml')))); } elseif (FALSE !== strpos($edit['templatefile_path'], '"')) { form_set_error('templatefile_path', t('Double quotes are not allowed in path.')); } elseif (substr($edit['templatefile_path'], 0, 1) == "'" && substr($edit['styles_path'], -1) == "'") { form_set_error('templatefile_path', t('Enter valid path, do not surround it with quotes.')); } } if (!empty($edit['font_format'])) { if (!preg_match('/^((p|div|pre|address|h1|h2|h3|h4|h5|h6);)*(p|div|pre|address|h1|h2|h3|h4|h5|h6)$/', $edit['font_format'])) { form_set_error('font_format', t('Enter valid, semicolon separated, list of HTML font formats (no semicolon at the end of list expected).')); } } if (variable_get('file_downloads', '') !== FILE_DOWNLOADS_PRIVATE) { if (!empty($edit['UserFilesAbsolutePath']) && empty($edit['UserFilesPath'])) { form_set_error('UserFilesPath', t('Path to uploaded files is required.')); } if (!empty($edit['UserFilesPath']) && empty($edit['UserFilesAbsolutePath'])) { form_set_error('UserFilesPath', t('Absolute path to uploaded files is required.')); } } } function fckeditor_admin_profile_form_submit($form, &$form_state) { $edit =& $form_state['values']; if (isset($edit['_profile'])) { db_query("DELETE FROM {fckeditor_settings} WHERE name = '%s'", $edit['_profile']->name); db_query("DELETE FROM {fckeditor_role} WHERE name = '%s'", $edit['_profile']->name); drupal_set_message(t('Your FCKeditor profile has been updated.')); } else { drupal_set_message(t('Your FCKeditor profile has been created.')); } $settings = fckeditor_admin_values_to_settings($edit); db_query("INSERT INTO {fckeditor_settings} (name, settings) VALUES ('%s', '%s')", $edit['name'], $settings); fckeditor_rebuild_selectors($edit['name']); if (!empty($edit['rids'])) { foreach (array_keys($edit['rids']) as $rid) { if ($edit['rids'][$rid]!=0) { db_query("INSERT INTO {fckeditor_role} (name, rid) VALUES ('%s', %d)", $edit['name'], $rid); } } } $form_state['redirect'] = 'admin/settings/fckeditor'; } function fckeditor_admin_global_profile_form($form_state, $mode = 'add') { module_load_include('lib.inc', 'fckeditor'); if ($mode == 'edit') { $profile = fckeditor_profile_load('FCKeditor Global Profile'); $form['_profile'] = array( '#type' => 'value', '#value' => $profile, ); } else { $profile = new stdClass(); } if ($mode == 'add') { $data = fckeditor_profile_load('FCKeditor Global Profile'); if (!empty($data)) { drupal_set_message(t('Global profile already exist. Only one global profile is allowed.'), 'error'); drupal_not_found(); } $btn = t('Create global profile'); } else { $btn = t('Update global profile'); } $form['common'] = array( '#type' => 'fieldset', '#title' => t('Main setup'), '#collapsible' => TRUE, '#collapsed' => TRUE ); $roles = fckeditor_sorted_roles(); $rids = $rtext = array(); foreach ($roles as $rid => $name) { $rids[] = $rid; $rtext[] = ''. $rid .' - '. $name; } $form['common']['rank'] = array( '#type' => 'textfield', '#title' => t('Role precedence'), '#default_value' => implode('>', $rids), '#description' => t('A user having multiple roles gets the permissions of the highest one. Sort role IDs according to their precedence from higher to lower by putting > in between.'), ); if ($rids) { $form['common']['rank']['#description'] .= '
'. t('Here are the id-name pairs of roles having access to FCKeditor:') .'
'. implode('
', $rtext) .'
'; } else { $form['common']['rank']['#description'] .= '
'. t('You haven\'t assigned the %accesspermission !permissionslink yet.', array('%accesspermission' => t('access fckeditor'), '!permissionslink' => l(t('permission'), 'admin/user/permissions'))); } $form['fckeditor_exclude_settings'] = array( '#type' => 'fieldset', '#title' => t('Visibility settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#description' => t('The following settings are combined with the visibility settings of the specific profile.'), ); $form['fckeditor_exclude_settings']['excl_mode'] = array( '#type' => 'radios', '#title' => t('Use inclusion or exclusion mode'), '#default_value' => (empty($profile->settings['excl_mode']) || in_array($profile->settings['excl_mode'], array(0, 2))) ? 0 : 1, '#options' => array( '0' => t('Exclude'), '1' => t('Include') ), '#description' => t('Choose the way of disabling/enabling FCKeditor on selected fields/paths (see below). Use exclude to disable FCKeditor on selected fields/paths. Use include if you want to load FCKeditor only on selected paths/fields.'), ); /** * get excluded fields - so we can have normal textareas too * split the phrase by any number of commas or space characters, * which include " ", \r, \t, \n and \f */ $form['fckeditor_exclude_settings']['excl'] = array( '#type' => 'textarea', '#title' => t('Fields to exclude/include'), '#cols' => 60, '#rows' => 5, '#prefix' => '
', '#suffix' => '
', '#default_value' => !empty($profile->settings['excl']) ? $profile->settings['excl'] : '', '#description' => t('Enter the paths to the textarea fields on which you want to enable or disable FCKeditor.') .' '. t('Please see the !helppagelink for more information about defining field names. Short instruction is available below.', array( '!helppagelink' => l(t('help page'), 'admin/help/fckeditor', array('fragment' => 'fieldinclexcl')), )) . '
    ' . '
  • '. t('Path structure') .': content_type@path.element_id
  • '. '
  • '. t('The following wildcards are available: *, ?') .'
  • '. '
  • '. t('Content type is optional. You may even specify only path or field id') .'
  • '. '
  • '. t('Examples') .':
      '. '
    • blog@*.edit-body - '. t('matches all fields of type %type called %field, on any page', array('%type' => 'blog', '%field' => 'edit-body')) . '
    • node/add/*.edit-user-* - '. t('matches fields starting with %field on pages starting with %path', array('%field' => 'edit-user-', '%path' => 'node/add/')) .'
    '. '
', '#wysiwyg' => FALSE, ); $form['fckeditor_exclude_settings']['simple_incl'] = array( '#type' => 'textarea', '#title' => t('Force simplified toolbar on the following fields'), '#cols' => 60, '#rows' => 5, '#default_value' => !empty($profile->settings['simple_incl']) ? $profile->settings['simple_incl'] : '', '#description' => t('Enter the paths to the textarea fields on which you want to force the simplified toolbar (%toolbarname).', array( '%toolbarname' => FCKEDITOR_FORCE_SIMPLE_TOOLBAR_NAME, )) .' '. t('Please see the !helppagelink for more information about defining field names. Take a look at the exclusion settings (above) for short instruction.', array( '!helppagelink' => l(t('help page'), 'admin/help/fckeditor', array('fragment' => 'fieldinclexcl')), )), '#wysiwyg' => FALSE, ); $form['fckeditor_advanced_settings'] = array( '#type' => 'fieldset', '#title' => t('Advanced settings'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $module_drupal_path = drupal_get_path('module', 'fckeditor'); $form['fckeditor_advanced_settings']['fckeditor_path'] = array( '#type' => 'textfield', '#title' => t('Path to FCKeditor'), '#default_value' => !empty($profile->settings['fckeditor_path']) ? $profile->settings['fckeditor_path'] : '%m/fckeditor', '#size' => 40, '#maxlength' => 128, '#description' => t('Path to FCKeditor (the HTML editor, downloaded from !fckeditorlink) relative to the document root.', array( '!fckeditorlink' => l('www.fckeditor.net', 'http://www.fckeditor.net/download'), )) .'
'. t('Available placeholders') .':
'. '%b - '. t('base URL path of the Drupal installation (%base)', array('%base' => base_path())) .'
'. '%m - '. t('base URL path where FCKeditor module is stored (%files)', array('%files' => base_path() . $module_drupal_path)) .'
'. t('Current path: %path', array('%path' => fckeditor_path(FALSE))), '#required' => TRUE, ); $form['fckeditor_advanced_settings']['fckeditor_local_path'] = array( '#type' => 'textfield', '#title' => t('Local path to FCKeditor'), '#default_value' => isset($profile->settings['fckeditor_local_path'])?$profile->settings['fckeditor_local_path']:'', '#size' => 40, '#maxlength' => 128, '#description' => t('The path to the local directory (on the server) which points to the path defined above. Enter either an absolute server path or path relative to %index. If empty, FCKeditor module will try to find the right path.', array('%index' => 'index.php')) .'
'. t('Current path: %path', array('%path' => fckeditor_path(TRUE))), ); $form['fckeditor_advanced_settings']['show_fieldnamehint'] = array( '#type' => 'radios', '#title' => t('Show field name hint below each rich text editor'), '#default_value' => !empty($profile->settings['show_fieldnamehint']) ? $profile->settings['show_fieldnamehint'] : 't', '#options' => array( 't' => t('Yes'), 'f' => t('No') ), '#description' => t('This only applies for users with %adminpermission permissions.', array('%adminpermission' => t('administer fckeditor'))), ); if (variable_get('file_downloads', '') == FILE_DOWNLOADS_PRIVATE) { global $user; $current_private_dir = isset($profile->settings['private_dir']) ? trim($profile->settings['private_dir'], '\/') : ''; $current_private_dir = strtr($current_private_dir, array('%u' => $user->uid, '%n' => $user->name)); $form['fckeditor_advanced_settings']['private_dir'] = array( '#type' => 'textfield', '#title' => t('Location of files uploaded with FCKeditor in the private folder'), '#default_value' => !empty($profile->settings['private_dir']) ? $profile->settings['private_dir'] : '', '#size' => 40, '#maxlength' => 255, '#description' => t('The path relative to the location of the private directory where FCKeditor should store uploaded files.') .'
'. ''. t('Warning') .': '. t('FCKeditor does not implement any kind of access protection on files available in this location. All files stored in the directory defined above might be accessible by unauthenticated users if there is no information about the file in the Drupal\'s database.') .'
'. t('System path to the private folder is: @system_path.', array('@system_path' => realpath(file_directory_path()) . DIRECTORY_SEPARATOR)) .'
'. t('Available placeholders') .':
'. '%u - '. t('User ID') .'
'. '%n - '. t('Username') .'
'. t('Current path: @path', array('@path' => $current_private_dir .' ('. file_create_path($current_private_dir) .')')), ); } $form['submit'] = array( '#type' => 'submit', '#value' => $btn, ); return $form; } function fckeditor_admin_global_profile_form_validate($form, &$form_state) { $edit =& $form_state['values']; //include mode and all other fields are empty, invalid if ($edit['excl_mode'] == 1 && empty($edit['excl'])) { form_set_error('excl_mode', t('Include mode selected, but no paths given. Enter at least one path where FCKeditor should appear.')); } else { fckeditor_admin_profile_validate_fieldpaths('excl', $edit['excl']); } fckeditor_admin_profile_validate_fieldpaths('simple_incl', $edit['simple_incl']); } function fckeditor_admin_global_profile_form_submit($form, &$form_state) { module_load_include('lib.inc', 'fckeditor'); $edit =& $form_state['values']; $edit['name'] = 'FCKeditor Global Profile'; if (isset($edit['rank'])) { $edit['rank'] = explode('>', str_replace(' ', '', $edit['rank'])); } if (isset($edit['_profile'])) { db_query("DELETE FROM {fckeditor_settings} WHERE name = '%s'", $edit['_profile']->name); db_query("DELETE FROM {fckeditor_role} WHERE name = '%s'", $edit['_profile']->name); } //strip whitespaces if (empty($edit['fckeditor_local_path'])) { $edit['fckeditor_local_path'] = ''; } else { $edit['fckeditor_local_path'] = trim($edit['fckeditor_local_path']); } //strip slash from the end if (empty($edit['fckeditor_path'])) { $edit['fckeditor_path'] = ''; } $edit['fckeditor_path'] = trim(rtrim($edit['fckeditor_path'], '/')); if ($edit['fckeditor_path'] && 0 !== strpos($edit['fckeditor_path'], '/') && 0 !== strpos($edit['fckeditor_path'], '%')) { //ensure that slash is at the beginning $edit['fckeditor_path'] = '/'. $edit['fckeditor_path']; } //no slash at the end $edit['fckeditor_local_path'] = trim(rtrim($edit['fckeditor_local_path'], '/')); $settings = fckeditor_admin_values_to_settings($edit); db_query("INSERT INTO {fckeditor_settings} (name, settings) VALUES ('%s', '%s')", $edit['name'], $settings); fckeditor_rebuild_selectors($edit['name']); drupal_set_message(t('FCKeditor global profile has been saved.')); $form_state['redirect'] = 'admin/settings/fckeditor'; } /** * Converts an array of form values to a serialized array that does not * contain Drupal Form API values */ function fckeditor_admin_values_to_settings($values) { unset($values['name'], $values['rids'], $values['_profile'], $values['op'], $values['submit'], $values['form_build_id'], $values['form_token'], $values['form_id']); return serialize($values); } function fckeditor_admin_profile_validate_fieldpaths($fieldname, $paths) { $myerrors = array(); $rules = preg_split('/[\s,]+/', $paths); foreach ($rules as $rule) { $rule = trim($rule); if (!empty($rule) && strpos($rule, '.') === FALSE && strpos($rule, '/') === FALSE && strpos($rule, '-') === FALSE) { $myerrors[] = t('Rule %rule is ambiguous: please append .* if %rule is a path or prepend *. if %rule is a field', array('%rule' => $rule)); } } if (!empty($myerrors)) { form_set_error($fieldname, implode('
', $myerrors)); } } function fckeditor_admin_profile_delete_form($form_state, $profile) { $form = array(); $form['_profile'] = array( '#type' => 'value', '#value' => $profile, ); $form['question'] = array( '#type' => 'item', '#value' => t('Are you sure that you want to delete the FCKeditor profile %profile?', array('%profile' => $profile->name)), ); $form['delete'] = array( '#type' => 'submit', '#id' => 'delete', '#value' => t('Delete'), ); $form['back'] = array( '#type' => 'submit', '#id' => 'back', '#value' => t('Cancel'), ); return $form; } function fckeditor_admin_profile_delete_form_submit($form, &$form_state) { $v =& $form_state['values']; if ($form_state['clicked_button']['#id'] == 'delete') { fckeditor_profile_delete($v['_profile']->name); drupal_set_message(t('Deleted FCKeditor profile.')); } $form_state['redirect'] = 'admin/settings/fckeditor'; } /** * Rebuilds the regular expression that is used to match the inclusion/exclusion rules * and the simplified toolbar rules * * @param string $name Name of the profile to process. If omitted, all profiles are rebuilt */ function fckeditor_rebuild_selectors($name = NULL) { if ($name == NULL) { $result = db_query("SELECT * FROM {fckeditor_settings}"); } else { $result = db_query("SELECT * FROM {fckeditor_settings} WHERE name = '%s'", $name); } while (($data = db_fetch_object($result))) { if ($data->settings) { $settings = unserialize($data->settings); foreach (array('excl', 'simple_incl') as $var) { $settings[$var .'_regex'] = ''; $rules = preg_split('/[\s,]+/', $settings[$var]); $regex = array(); if (!empty($rules)) { foreach ($rules as $rule) { if (!empty($rule)) { $rule = fckeditor_parse_rule($rule); $regex[] = '(?:'. fckeditor_rule_to_regex($rule) .')'; } } if (!empty($regex)) { $settings[$var .'_regex'] = '#'. implode('|', $regex) .'#'; } } } db_query("UPDATE {fckeditor_settings} SET settings='%s' WHERE name='%s'", serialize($settings), $data->name); } } } function fckeditor_rule_create($nodetype = '*', $path = '*', $fieldname = '*') { $rule = new stdClass(); $rule->nodetype = $nodetype; $rule->path = $path; $rule->field = $fieldname; return $rule; } function fckeditor_parse_rule($rule) { $ruleobj = new stdClass(); $atpos = strpos($rule, '@'); if ($atpos !== FALSE) { $ruleobj->nodetype = substr($rule, 0, $atpos); $rule = substr($rule, $atpos + 1); } else { $ruleobj->nodetype = '*'; } $dotpos = strpos($rule, '.'); if ($dotpos === FALSE) { if (strpos($rule, '/') === FALSE && strpos($rule, '-') !== FALSE) { // assume it's a field $ruleobj->path = '*'; $ruleobj->field = $rule; } elseif (strpos($rule, '/') !== FALSE) { // assume it's a path $ruleobj->path = $rule; $ruleobj->field = '*'; } else { return NULL; } } else { $ruleobj->path = substr($rule, 0, $dotpos); $ruleobj->field = str_replace('\.', '.', substr($rule, $dotpos + 1)); } return $ruleobj; } function fckeditor_rule_to_regex($rule) { static $replace = array('\*' => '.*', '\?' => '.'); $field = str_replace('.', '\.', $rule->field); $regex = '^'. preg_quote($rule->nodetype, '#') .'@'. preg_quote($rule->path, '#') .'\.'. preg_quote($field, '#') .'$'; $regex = strtr($regex, $replace); return $regex; } function fckeditor_rule_to_string($rule) { $field = str_replace('.', '\.', $rule->field); $rulestr = ''; if ($rule->nodetype != '*') { $rulestr .= $rule->nodetype .'@'; } return $rulestr . $rule->path .'.'. $field; } /** * Remove a profile from the database. */ function fckeditor_profile_delete($name) { db_query("DELETE FROM {fckeditor_settings} WHERE name = '%s'", $name); db_query("DELETE FROM {fckeditor_role} WHERE name = '%s'", $name); }