'),
'!filterlink' => l(t('filters'), 'admin/settings/filters'))
);
$output .= t('Installation troubleshooting If your FCKeditor does not show you must check if all files are extracted correctly. The directory %fckeditordir should have the following files fckeditor.js, fckconfig.js, fckstyles.xml, fcktemplates.xml
and a directory named editor
.
',
array(
'%fckeditordir' => base_path() . drupal_get_path('module', 'fckeditor') .'/fckeditor/')
);
$output .= t('The correct directory structure is as follows: !structure ', array(
'!structure' => "modules\n fckeditor\n fckeditor.module \n fckeditor\n _samples\n editor\n COPY_HERE.txt \n fckconfig.js \n ..."
));
$output .= t("Plugins: Teaser break and Pagebreak By default, FCKeditor module comes with two plugins that can handle teaser break (<!--break-->) and pagebreak (<!--pagebreak-->). You can enable any (or even both) of them.
Open !fckeditor.config.js
and uncomment these three lines: !code The second step is to add buttons to the toolbar (in the same file). The button names are: DrupalBreak, DrupalPageBreak
. For example if you have a toolbar with an array of buttons defined as follows: !buttons1 simply add those two buttons at the end of array: !buttons2 (remember about single quotes). ",
array(
'!fckeditor.config.js' => base_path() . drupal_get_path('module', 'fckeditor') .'/fckeditor.config.js',
'!code' => "
FCKConfig.PluginsPath = '../../plugins/' ;
FCKConfig.Plugins.Add( 'drupalbreak' ) ;
FCKConfig.Plugins.Add( 'drupalpagebreak' ) ;
",
'!buttons1' => "['Image','Flash','Table','Rule','SpecialChar']",
'!buttons2' => "['Image','Flash','Table','Rule','SpecialChar', 'DrupalBreak', 'DrupalPageBreak']",
));
$output .= t('Uploading images and files There are three ways of uploading files: By using the built-in file browser, by using a module like !imce or using the core upload module.
',
array(
'!imce' => l(t('IMCE'), 'http://drupal.org/project/imce')
)
);
// the rest is untranslated for the moment
$output .= t("How to enable the file browser The editor gives the end user the flexibility to create a custom file browser that can be integrated on it. The included file browser allows users to view the content of a specific directory on the server and add new content to that directory (create folders and upload files).
To enable file browsing you need to edit the connector configuration file in your fckeditor module directory, the file should be in:!config3
(FCKeditor 2.5+) or !config1
and !config2
(FCKeditor 2.3.x - 2.4.x)In this file(s) you will need to enable the file browser by adding one line that includes file with the special authentication function for Drupal (filemanager.config.php
). Add this code:
!code1
(FCKeditor 2.5+) or !code2
(FCKeditor 2.3.x - 2.4.x) straight below this line: !code3
The config.php file also holds some other important settings, please take a look at it and adjust it to your needs (optional). ",
array('!config1' => base_path() . drupal_get_path('module', 'fckeditor') ."/fckeditor/editor/filemanager/browser/default/connectors/php/config.php",
'!config2' => base_path() . drupal_get_path('module', 'fckeditor') ."/fckeditor/editor/filemanager/upload/php/config.php",
'!config3' => base_path() . drupal_get_path('module', 'fckeditor') ."/fckeditor/editor/filemanager/connectors/php/config.php",
'!filesdir' => file_directory_path(),
'!code1' => 'require_once "../../../../../filemanager.config.php";', //2.5
'!code2' => 'require_once "'. str_replace("\\", "\\\\", dirname(__FILE__) . DIRECTORY_SEPARATOR .'filemanager.config.php"'), //2.4
'!code3' => "\$Config['UserFilesAbsolutePath'] = '' ;",
)
);
$output .= t("As of Drupal 5.2, additional step is required: locate file named settings.php
inside your drupal directory (usually sites/default/settings.php
) and set $cookie_domain
variable to the appropiate domain (remember to uncomment that line). If you not do this, FCKeditor will claim that file browser is disabled ");
$output .= t('Enabling file uploads is a security risk . That\'s why you have to grant a !link to enable the file browser to certain groups. ', array('!link' => l(t('separate permission'), 'admin/user/permissions')));
$output .= t('Lastly, adjust the !fb for each !profile. ', array('!fb' => t('File browser settings'), '!profile' => l(t('profile'), 'admin/settings/fckeditor')));
//$output .= t("Modules: Image Assist Image Assist can be integrated with FCKeditor. To do this, simply copy the !iaf1
file to !iaf2
.
", array("!iaf1" => drupal_get_path('module', 'fckeditor') ."/img_assist_fckeditor.js", "!iaf2" => drupal_get_path('module', 'img_assist') ."/img_assist_fckeditor.js"));
break;
}
return $output;
}
/**
* Implementation of hook_perm
* Administer -> User management -> Access Control
*/
function fckeditor_perm() {
return array('administer fckeditor', 'access fckeditor', 'allow fckeditor file uploads');
}
/**
* Implementation of textarea
* Replace textarea with FCKeditor using callback function (fckeditor_process_textarea)
*/
function fckeditor_elements() {
$type = array();
if (user_access('administer fckeditor')) {
$type['textfield'] = array(
'#process' => array(
'fckeditor_process_input'
),
);
}
if (user_access('access fckeditor')) {
// only roles with permission get the fckeditor
if (fckeditor_is_compatible_client()) {
// it would be useless to dig deeper if we're not able or allowed to
$type['textarea'] = array(
'#process' => array(
'fckeditor_process_textarea'
),
);
}
}
return $type;
}
/**
* Allow more than 255 chars in Allowed HTML tags textfield
*
*/
function fckeditor_process_input($element) {
if ($element['#id']=='edit-allowed-html-1') {
$element['#maxlength'] = max($element['#maxlength'], 1024);
}
return $element;
}
/**
* Add link to FCKeditor configuration in "Administer -> Site configuration" section
*
*/
function fckeditor_menu() {
$items = array();
$items['admin/settings/fckeditor'] = array(
'title' => t('FCKeditor'),
'description' => t('Configure the rich editor.'),
'page callback' => 'fckeditor_admin',
'access arguments' => array('administer fckeditor'),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}
//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);
}
/**
* Profile validation.
*/
function fckeditor_profile_validate($edit) {
$errors = array();
if (!preg_match("/^\d+$/", trim($edit['min_rows']))) {
$errors['min_rows'] = t('Minimum rows must be a valid number');
}
if ($edit['default'] == 't' && $edit['popup'] == 't') {
$errors['popup'] = t('If FCKeditor is enabled by default, popup window must be disabled.');
}
if ($edit['show_toggle'] == 't' && $edit['popup'] == 't') {
$errors['popup'] = t('If toggle is enabled, popup window must be disabled.');
}
if (!$edit['name']) {
$errors['name'] = t('You must give a profile name.');
}
if (!preg_match("/^\d+%?$/", $edit['width'])) {
$errors['width'] = t('Enter valid width. Ex: 400 or 100%');
}
if (!empty($edit['css_path'])) {
if ($edit['css_mode'] != 'self') {
$errors['css_path'] = t('CSS path is not empty. Please set the "Editor CSS" option to "define css" mode.');
}
else if (false !== strpos($edit['css_path'], '"')) {
$errors['css_path'] = t('Double quotes are not allowed in CSS path.');
}
else if (substr($edit['css_path'], 0, 1) == "'" && substr($edit['css_path'], -1) == "'") {
$errors['css_path'] = t('Enter valid path, do not surround it with quotes.');
}
}
if (!empty($edit['styles_path'])) {
if ($edit['css_style'] != 'self') {
$errors['styles_path'] = t('Path to predefined styles is not empty. Please set the "Predefined styles" option to "define path to fckstyles.xml" mode.');
}
else if (false !== strpos($edit['styles_path'], '"')) {
$errors['styles_path'] = t('Double quotes are not allowed in path.');
}
else if (substr($edit['styles_path'], 0, 1) == "'" && substr($edit['styles_path'], -1) == "'") {
$errors['styles_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'])) {
$errors['font_format'] = t('Enter valid, semicolon separated, list of HTML font formats (no semicolon at the end of list expected).');
}
}
//validate fields
$fields = preg_split("/[\s,]+/", strip_tags($edit['excl_fields']));
foreach ($fields as $field) {
if ($field && !preg_match("/^[a-z]+(\-[a-z]+)+$/i", $field)) {
$errors['excl_fields'] = t("Invalid field specified: %1", array("%1" => $field));
break;
}
}
$fields = preg_split("/[\s,]+/", strip_tags($edit['simple_incl_fields']));
foreach ($fields as $field) {
if ($field && !preg_match("/^[a-z]+(\-[a-z]+)+$/i", $field)) {
$errors['excl_fields'] = t("Invalid field specified: %1", array("%1" => $field));
break;
}
}
//validate paths
$paths = preg_split("/[\s,]+/", strip_tags($edit['excl_paths']));
foreach ($paths as $path) {
if ($path && !preg_match("|^[a-z0-9-\*/]*$|i", $path)) {
$errors['excl_paths'] = t("Invalid path specified: %1", array("%1" => $path));
break;
}
}
$paths = preg_split("/[\s,]+/", strip_tags($edit['simple_incl_paths']));
foreach ($paths as $path) {
if ($path && !preg_match("|^[a-z0-9-\*/]*$|i", $path)) {
$errors['excl_paths'] = t("Invalid path specified: %1", array("%1" => $path));
break;
}
}
if ($edit['UserFilesAbsolutePath'] && !$edit['UserFilesPath']) {
$errors['UserFilesPath'] = t("Path to uploaded files is required.");
}
if ($edit['UserFilesPath'] && !$edit['UserFilesAbsolutePath']) {
$errors['UserFilesPath'] = t("Absolute path to uploaded files is required.");
}
foreach ($errors as $name => $message) {
form_set_error($name, $message);
}
return count($errors) == 0;
}
/**
* Global profile validation.
*/
function fckeditor_global_profile_validate($edit) {
$errors = array();
//validate fields
$fields = preg_split("/[\s,]+/", strip_tags($edit['excl_fields']));
foreach ($fields as $field) {
if ($field && !preg_match("/^[a-z]+(\-[a-z]+)+$/i", $field)) {
$errors['excl_fields'] = t("Invalid field specified: %1", array("%1" => $field));
break;
}
}
$fields = preg_split("/[\s,]+/", strip_tags($edit['simple_incl_fields']));
foreach ($fields as $field) {
if ($field && !preg_match("/^[a-z]+(\-[a-z]+)+$/i", $field)) {
$errors['excl_fields'] = t("Invalid field specified: %1", array("%1" => $field));
break;
}
}
//validate paths
$paths = preg_split("/[\s,]+/", strip_tags($edit['excl_paths']));
foreach ($paths as $path) {
if ($path && !preg_match("|^[a-z0-9-\*/]*$|i", $path)) {
$errors['excl_paths'] = t("Invalid path specified: %1", array("%1" => $path));
break;
}
}
$paths = preg_split("/[\s,]+/", strip_tags($edit['simple_incl_paths']));
foreach ($paths as $path) {
if ($path && !preg_match("|^[a-z0-9-\*/]*$|i", $path)) {
$errors['excl_paths'] = t("Invalid path specified: %1", array("%1" => $path));
break;
}
}
foreach ($errors as $name => $message) {
form_set_error($name, $message);
}
return count($errors) == 0;
}
/**
* Controller for FCKeditor administrative settings.
*/
function fckeditor_admin($arg = NULL) {
$module_drupal_path = drupal_get_path('module', 'fckeditor');
$fckconfig_file = $module_drupal_path .'/fckeditor/fckconfig.js';
if (!file_exists($fckconfig_file)) {
drupal_set_message(t('checking for %filename', array('%filename' => $fckconfig_file)));
drupal_set_message(
t('The FCKeditor component is not installed correctly. Please go to the !fckeditorlink to download the latest version. After that you must extract the files to %modulepath and make sure that the directory %modulesubdir and the file %modulefile exist. Refer to the !readme for more information.',
array(
'!fckeditorlink' => l(t('FCKeditor homepage'), 'http://www.fckeditor.net/download'),
'!readme' => l('readme.txt', 'admin/help/fckeditor'),
'%modulepath' => base_path() . $module_drupal_path .'/fckeditor/',
'%modulesubdir' => base_path() . $module_drupal_path .'/fckeditor/editor',
'%modulefile' => base_path() . $module_drupal_path .'/fckeditor/fckeditor.js')),
'error');
return false;
}
$edit = $_POST;
$op = isset($_POST['op']) ? $_POST['op'] : "";
$op = $arg && !$op ? $arg : $op;
switch ($op) {
case 'add':
$output = fckeditor_profile_form($edit);
break;
case 'addg':
$output = fckeditor_global_profile_form($edit);
break;
case 'edit':
drupal_set_title(t('Edit FCKeditor profile'));
$output = fckeditor_profile_form(fckeditor_profile_load(urldecode(arg(4))));
break;
case 'editg':
drupal_set_title(t('Edit FCKeditor profile'));
$output = fckeditor_global_profile_form(fckeditor_profile_load("FCKeditor Global Profile"));
break;
case 'delete':
fckeditor_profile_delete(urldecode(arg(4)));
drupal_set_message(t('Deleted profile'));
drupal_goto('admin/settings/fckeditor');
break;
case 'deleteg':
fckeditor_profile_delete("FCKeditor Global Profile");
drupal_set_message(t('Deleted Global profile'));
drupal_goto('admin/settings/fckeditor');
break;
case t('Create profile');
case t('Update profile');
if (fckeditor_profile_validate($edit)) {
fckeditor_profile_save($edit);
$edit['old_name'] ? drupal_set_message(t('Your FCKeditor profile has been updated.')) : drupal_set_message(t('Your FCKeditor profile has been created.'));
drupal_goto('admin/settings/fckeditor');
}
else {
$output = fckeditor_profile_form($edit);
}
break;
case t('Create global profile');
case t('Update global profile');
if (fckeditor_global_profile_validate($edit)) {
$edit['name'] = 'FCKeditor Global Profile';
fckeditor_global_profile_save($edit);
drupal_set_message(t('FCKeditor global profile has been saved.'));
drupal_goto('admin/settings/fckeditor');
}
else {
$output = fckeditor_global_profile_form($edit);
}
break;
default:
drupal_set_title(t('FCKeditor settings'));
//Check if FCKeditor is installed.
$fckeditor_loc = drupal_get_path('module', 'fckeditor') .'/fckeditor/';
if (!is_dir($fckeditor_loc)) {
drupal_set_message(t('Could not find the FCKeditor engine installed at !fckeditor-directory . Please !download, uncompress it and copy the folder into !fckeditor-path.', array('!fckeditor-path' => drupal_get_path('module', 'fckeditor'), '!fckeditor-directory' => $fckeditor_loc, '!download' => l(t("download FCKeditor"), "http://www.fckeditor.net/download"))), 'error');
}
$output = fckeditor_profile_overview();
}
return $output;
}
/**
* Save a profile to the database.
* @todo add more entries to array in the user_save line
*/
function fckeditor_profile_save($edit) {
db_query("DELETE FROM {fckeditor_settings} WHERE name = '%s' or name = '%s'", $edit['name'], $edit['old_name']);
db_query("DELETE FROM {fckeditor_role} WHERE name = '%s' or name = '%s'", $edit['name'], $edit['old_name']);
db_query("INSERT INTO {fckeditor_settings} (name, settings) VALUES ('%s', '%s')", $edit['name'], serialize($edit));
if ($edit['rids'])
foreach ($edit['rids'] as $rid => $value) {
db_query("INSERT INTO {fckeditor_role} (name, rid) VALUES ('%s', %d)", $edit['name'], $rid);
}
// if users can't set their own defaults, make sure to remove $user->fckeditor_status so their default doesn't override the main default
if ($edit['user_choose'] == 'false') {
global $user;
user_save($user, array('fckeditor_status' => NULL));
}
}
function fckeditor_global_profile_save($edit) {
if (isset($edit['rank'])) {
$edit['rank'] = explode('>', str_replace(' ', '', $edit['rank']));
}
db_query("DELETE FROM {fckeditor_settings} WHERE name = '%s' or name = '%s'", $edit['name'], $edit['old_name']);
db_query("DELETE FROM {fckeditor_role} WHERE name = '%s' or name = '%s'", $edit['name'], $edit['old_name']);
db_query("INSERT INTO {fckeditor_settings} (name, settings) VALUES ('%s', '%s')", $edit['name'], serialize($edit));
}
/**
* Controller for fckeditor profiles.
*/
function fckeditor_profile_overview() {
$output = '';
$profiles = fckeditor_profile_load();
if ($profiles) {
$roles = user_roles();
$header = array(t('Profile'), t('Roles'), t('Operations'));
foreach ($profiles as $p) {
if ($p->name !== "FCKeditor Global Profile") {
$rows[] = array(array('data' => $p->name, 'valign' => 'top'), array('data' => implode(" \n", $p->rids)), array('data' => l(t('edit'), 'admin/settings/fckeditor/edit/'. urlencode($p->name)) .' '. l(t('delete'), 'admin/settings/fckeditor/delete/'. urlencode($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 !create.', array('!create' => 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 !create.', array('!create' => 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/deleteg'), 'valign' => 'top'));
$output .= theme('table', array(t('Profile'), t('Operations')), $rows);
}
return $output;
}
/**
* Load all profiles. Just load one profile if $name is passed in.
*/
function fckeditor_profile_load($name = '') {
static $profiles = array();
if (!$profiles) {
$roles = user_roles();
$result = db_query('SELECT * FROM {fckeditor_settings}');
while ($data = db_fetch_object($result)) {
$data->settings = unserialize($data->settings);
$result2 = db_query("SELECT rid FROM {fckeditor_role} WHERE name = '%s'", $data->name);
$role = array();
while ($r = db_fetch_object($result2)) {
$role[$r->rid] = $roles[$r->rid];
}
$data->rids = $role;
$profiles[$data->name] = $data;
}
}
return ($name ? $profiles[$name] : $profiles);
}
/**
* @param int $excl_mode 1/include, exclude otherwise
* @param string $excl_fields fields (HTML IDs)
* @param string $excl_paths paths (drupal paths)
* @param string $element_id current ID
* @param string $get_q current path
*
* @return boolean
* returns true if FCKeditor is enabled
*/
function fckeditor_is_enabled($excl_mode, $excl_fields, $excl_paths, $element_id, $get_q) {
$arr_excl_fields = preg_split("/[\s,]+/", strip_tags($excl_fields));
$field_found = fckeditor_idsearch($element_id, $arr_excl_fields);
$path = drupal_get_path_alias($get_q);
$regexp = '/^('. preg_replace(array('/(\r\n?|\n)/', '/\\\\\*/', '/(^|\|)\\\\($|\|)/'), array('|', '.*', '\1'. preg_quote(variable_get('site_frontpage', 'node'), '/') .'\2'), preg_quote($excl_paths, '/')) .')$/';
$path_found = preg_match($regexp, $path);
$found = $field_found || $path_found;
$result = ($excl_mode == 1) ? $found : !$found;
return $result;
}
/**
* This function create the HTML objects required for the FCKeditor
*
* @param $element
* A fully populated form elment to add the editor to
* @return
* The same $element with extra FCKeditor markup and initialization
*/
function fckeditor_process_textarea($element) {
static $is_running = FALSE;
static $num = 1;
global $user, $fckeditor_simple_toolbar_ids;
static $profile_name;
//skip this one, surely nobody wants WYSIWYG here
switch ($element['#id']) {
case 'edit-excl-list':
case 'edit-simple-incl-list':
case 'edit-simple-incl-paths':
case 'edit-simple-incl-fields':
case 'edit-log':
case 'edit-excl-fields':
case 'edit-excl-paths':
case 'edit-js-conf':
return $element;
break;
}
if (isset($element['#attributes']['disabled']) && $element['#attributes']['disabled'] == 'disabled') {
return $element;
}
// Since fckeditor_profile_load() makes a db hit, only call it when we're pretty sure
// we're gonna render fckeditor.
if (!$profile_name) {
$sorted_roles = fckeditor_sorted_roles();
foreach ($sorted_roles as $rid => $name) {
if (isset($user->roles[$rid])) {
break;
}
}
$profile_name = db_result(db_query("SELECT s.name FROM {fckeditor_settings} s INNER JOIN {fckeditor_role} r ON r.name = s.name WHERE r.rid='%s'", $rid));
if (!$profile_name) {
return $element;
}
}
$profile = fckeditor_profile_load($profile_name);
$conf = array();
$conf = $profile->settings;
if ($conf['allow_user_conf']=='t') {
foreach (array('default', 'show_toggle', 'popup', 'skin', 'toolbar', 'expand', 'width', 'lang', 'auto_lang') as $setting) {
$conf[$setting] = fckeditor_user_get_setting($user, $profile, $setting);
}
}
if ($conf["popup"]=="t" && $conf["show_toggle"]=="t") {
$conf["show_toggle"]="f";
}
$themepath = path_to_theme() .'/';
$host = base_path();
// Set resizable to false to avoid drupal.js resizable function from taking control of the textarea
if ($conf["popup"]=="f") {
$element['#resizable'] = FALSE;
}
$enabled = fckeditor_is_enabled($conf['excl_mode'], $conf['excl_fields'], $conf['excl_paths'], $element['#id'], $_GET['q']);
if ($enabled) {
$global_profile = fckeditor_profile_load("FCKeditor Global Profile");
$global_conf = $global_profile->settings;
if ($global_conf) {
$enabled = fckeditor_is_enabled($global_conf['excl_mode'], $global_conf['excl_fields'], $global_conf['excl_paths'], $element['#id'], $_GET['q']);
}
}
if (($element['#rows'] > $conf['min_rows']) && $enabled) {
// only replace textarea when it has enough rows and it is enabled
$js_id = 'oFCK_'. $num++;
$fckeditor_on = ($conf['default']=='t') ? 1 : 0 ;
$wysiwyg_link = "
\n";
$wysiwyg_link .= "";
$wysiwyg_link .= $fckeditor_on ? t("Switch to plain text editor") : t("Switch to rich text editor");
$wysiwyg_link .= " ";
$wysiwyg_link .= "\n";
if (!isset($element['#suffix'])) {
$element['#suffix'] = "";
}
//settings are saved as strings, not booleans
if ($profile->settings['show_toggle'] == 't') {
// Make sure to append to #suffix so it isn't completely overwritten
$element['#suffix'] .= $wysiwyg_link;
}
// setting some variables
$module_drupal_path = drupal_get_path('module', 'fckeditor');
$module_full_path = base_path() . $module_drupal_path;
// get the default drupal files path
$files_path = base_path() . file_directory_path();
// module_drupal_path:
// 'modules/fckeditor' (length=17)
// module_full_path:
// '/drupal5/modules/fckeditor' (length=26)
// files_path:
// '/drupal5/files' (length=14)
// configured in settings
$width = $conf['width'];
// sensible default for small toolbars
$height = $element['#rows'] * 14 + 140;
if (!$is_running) {
drupal_add_js($module_drupal_path .'/fckeditor/fckeditor.js');
drupal_add_js($module_drupal_path .'/fckeditor.utils.js');
$is_running = true;
}
$toolbar = $conf['toolbar'];
//$height += 100; // for larger toolbars
$force_simple_toolbar = fckeditor_is_enabled(1, $conf['simple_incl_fields'], $conf['simple_incl_paths'], $element['#id'], $_GET['q']);
if (!$force_simple_toolbar) {
$force_simple_toolbar = fckeditor_is_enabled(1, $global_conf['simple_incl_fields'], $global_conf['simple_incl_paths'], $element['#id'], $_GET['q']);
}
if ($force_simple_toolbar) {
$toolbar = FCKEDITOR_FORCE_SIMPLE_TOOLBAR_NAME;
}
$textarea_id = $profile->settings['show_toggle'] == 't' ? $js_id : $element['#id'];
$element['#suffix'] .= "\n\n";
if ($conf['popup']=="t") {
// Add the script file with the popup open function.
drupal_add_js($module_drupal_path .'/fckeditor.popup.js');
$element['#suffix'] .= " ";
}
else {
// if no popup mode, add the editor initialization to the footer
// this obviously needs print($closure) in page.tpl.php
if ($fckeditor_on) {
drupal_add_js('if (Drupal.jsEnabled) {$(document).ready(function() {if (typeof ('. $js_id .') != "undefined") '. $js_id .'.ReplaceTextarea();});}', 'inline', 'footer');
}
}
}
// display the field id for administrators
if (user_access('administer fckeditor')) {
$element['#suffix'] .= t('The ID for !excluding this element is: !id - the path is: !path
', array(
'!excluding' => l(t("excluding or including"), 'admin/settings/fckeditor'),
'!id' => $element['#id'],
'!path' => $_GET['q'],
));
}
return $element;
}
/**
* Implementation of hook_user().
*/
function fckeditor_user($type, &$edit, &$user, $category = NULL) {
if ($type == 'form' && $category == 'account' && user_access('access fckeditor')) {
$profile = fckeditor_user_get_profile($user);
$toolbar_options = fckeditor_load_toolbar_options();
$skin_options = fckeditor_load_skin_options();
$lang_options = fckeditor_load_lang_options();
// because the settings are saved as strings we need to test for the string 'true'
if ($profile->settings['allow_user_conf'] == 't') {
$form['fckeditor'] = array(
'#type' => 'fieldset',
'#title' => t('Rich Text Editor settings'),
'#weight' => 10,
'#collapsible' => TRUE,
'#collapsed' => TRUE
);
$form['fckeditor']['fckeditor_default'] = array(
'#type' => 'select',
'#title' => t('Default state'),
'#default_value' => isset($user->fckeditor_default) ? $user->fckeditor_default : (isset($profile->settings['default']) ? $profile->settings['default'] : 'f'),
'#options' => array('t' => t('enabled'), 'f' => t('disabled')),
'#description' => t('Should rich-text editing be enabled or disabled by default in textarea fields? If disabled, rich text editor may still be enabled using toggle or popup window.'),
);
$form['fckeditor']['fckeditor_show_toggle'] = array(
'#type' => 'select',
'#title' => t('Show disable/enable rich text editor toggle'),
'#default_value' => isset($user->fckeditor_show_toggle) ? $user->fckeditor_show_toggle : (isset($profile->settings['show_toggle']) ? $profile->settings['show_toggle'] : 't'),
'#options' => array('t' => t('true'), 'f' => t('false')),
'#description' => t('Whether or not to show the disable/enable rich text editor toggle below the textarea. Works only if FCKeditor is not running a popup window (see below).'),
);
$form['fckeditor']['fckeditor_popup'] = array(
'#type' => 'select',
'#title' => t('Use FCKeditor in a popup window'),
'#default_value' => isset($user->fckeditor_popup) ? $user->fckeditor_popup : (isset($profile->settings['popup']) ? $profile->settings['popup'] : 'f'),
'#options' => array('f' => t('false'), 't' => t('true')),
'#description' => t('If this option is enabled a link to a popup window will be used instead of a textarea replace.'),
);
$form['fckeditor']['fckeditor_skin'] = array(
'#type' => 'select',
'#title' => t('Skin'),
'#default_value' => isset($user->fckeditor_skin) ? $user->fckeditor_skin : (isset($profile->settings['skin']) ? $profile->settings['skin'] : 'default'),
'#options' => $skin_options,
'#description' => t('Choose a FCKeditor skin.'),
);
$form['fckeditor']['fckeditor_toolbar'] = array(
'#type' => 'select',
'#title' => t('Toolbar'),
'#default_value' => isset($user->fckeditor_toolbar) ? $user->fckeditor_toolbar : (isset($profile->settings['toolbar']) ? $profile->settings['toolbar'] : 'default'),
'#options' => $toolbar_options,
'#description' => t('Choose a FCKeditor toolbar set.'),
);
$form['fckeditor']['fckeditor_expand'] = array(
'#type' => 'select',
'#title' => t('Start the toolbar expanded'),
'#default_value' => isset($user->fckeditor_expand) ? $user->fckeditor_expand : (isset($profile->settings['expand']) ? $profile->settings['expand'] : 't'),
'#options' => array('t' => t('enabled'), 'f' => t('disabled')),
'#description' => t('The toolbar start expanded or collapsed.'),
);
$form['fckeditor']['fckeditor_width'] = array(
'#type' => 'textfield',
'#title' => t('Width'),
'#default_value' => isset($user->fckeditor_width) ? $user->fckeditor_width : (isset($profile->settings['width']) ? $profile->settings['width'] : '100%'),
'#description' => t("Width in pixels or percent. Ex: 400 or 100%"),
'#size' => 40,
'#maxlength' => 128,
);
$form['fckeditor']['fckeditor_lang'] = array(
'#type' => 'select',
'#title' => t('Language'),
'#default_value' => isset($user->fckeditor_lang) ? $user->fckeditor_lang : (isset($profile->settings['lang']) ? $profile->settings['lang'] : 'en'),
'#options' => $lang_options,
'#description' => t('The language for the FCKeditor interface.')
);
$form['fckeditor']['fckeditor_auto_lang'] = array(
'#type' => 'select',
'#title' => t('Auto-detect language'),
'#default_value' => isset($user->fckeditor_auto_lang) ? $user->fckeditor_auto_lang : (isset($profile->settings['auto_lang']) ? $profile->settings['auto_lang'] : 't'),
'#options' => array('t' => t('true'), 'f' => t('false')),
'#description' => t('Use auto detect user language feature.')
);
return array('fckeditor' => $form);
}
}
if ($type == 'validate') {
return array(
'fckeditor_default' => $edit['fckeditor_default'],
'fckeditor_show_toggle' => $edit['fckeditor_show_toggle'],
'fckeditor_popup' => $edit['fckeditor_popup'],
'fckeditor_skin' => $edit['fckeditor_skin'],
'fckeditor_toolbar' => $edit['fckeditor_toolbar'],
'fckeditor_expand' => $edit['fckeditor_expand'],
'fckeditor_width' => $edit['fckeditor_width'],
'fckeditor_lang' => $edit['fckeditor_lang'],
'fckeditor_auto_lang' => $edit['fckeditor_auto_lang'],
);
}
}
/**
* Return an HTML form for profile configuration.
*/
function fckeditor_profile_form($edit) {
$output .= drupal_get_form('fckeditor_profile_form_build', $edit);
return $output;
}
/**
* Return an HTML form for global profile configuration.
*/
function fckeditor_global_profile_form($edit) {
$output .= drupal_get_form('fckeditor_global_profile_form_build', $edit);
return $output;
}
function fckeditor_load_toolbar_options() {
$arr = array();
$module_drupal_path = drupal_get_path('module', 'fckeditor');
$fckconfig_js = $module_drupal_path .'/fckeditor/fckconfig.js';
$fckeditor_config_js = $module_drupal_path .'/fckeditor.config.js';
if (file_exists($fckconfig_js) && is_readable($fckconfig_js)) {
$fp = @fopen($fckconfig_js, "r");
if ($fp) {
while (!feof($fp)) {
$line = fgets($fp, 1024);
if (preg_match("/FCKConfig\.ToolbarSets\[(\"|')(.*?)\\1\]/i", $line, $matches)) {
$arr[$matches[2]] = ucfirst($matches[2]);
}
}
fclose($fp);
}
}
if (file_exists($fckeditor_config_js) && is_readable($fckeditor_config_js)) {
$fp = @fopen($fckeditor_config_js, "r");
if ($fp) {
while (!feof($fp)) {
$line = fgets($fp, 1024);
if (preg_match("/FCKConfig\.ToolbarSets\[(\"|')(.*?)\\1\]/i", $line, $matches)) {
$arr[$matches[2]] = ucfirst($matches[2]);
}
}
fclose($fp);
}
}
//oops, we have no information about toolbars, let's use hardcoded array
if (empty($arr)) {
$arr = array(
'Basic' => 'Basic',
'Default' => 'Default',
);
}
asort($arr);
return $arr;
}
function fckeditor_load_skin_options() {
$arr = array();
$module_drupal_path = drupal_get_path('module', 'fckeditor');
$skin_dir = $module_drupal_path .'/fckeditor/editor/skins';
if (is_dir($skin_dir)) {
$dh = @opendir($skin_dir);
if (false !== $dh) {
while (($file = readdir($dh)) !== false ) {
if (in_array($file, array(".", "..", "CVS", ".svn"))) {
continue;
}
if (is_dir($skin_dir . DIRECTORY_SEPARATOR . $file)) {
$arr[$file] = ucfirst($file);
}
}
closedir( $dh );
}
}
//oops, we have no information about skins, let's use only default
if (empty($arr)) {
$arr = array(
'default' => 'Default',
);
}
asort($arr);
return $arr;
}
function fckeditor_load_lang_options() {
$arr = array();
$module_drupal_path = drupal_get_path('module', 'fckeditor');
$lang_dir = $module_drupal_path .'/fckeditor/editor/lang';
if (is_dir($lang_dir)) {
$dh = @opendir($lang_dir);
if (false !== $dh ) {
while (($file = readdir($dh)) !== false) {
if (in_array($file, array(".", "..", "CVS", ".svn"))) {
continue;
}
if (is_file($lang_dir . DIRECTORY_SEPARATOR . $file) && preg_match("/^(.*?)\.js$/", $file, $matches)) {
$lang = $matches[1];
$arr[$lang] = strtoupper($lang);
}
}
closedir( $dh );
}
}
//oops, we have no information about languages, let's use those available in FCKeditor 2.4.3
if (empty($arr)) {
$arr = array(
'af' => 'Afrikaans',
'ar' => 'Arabic',
'bg' => 'Bulgarian',
'bn' => 'Bengali/Bangla',
'bs' => 'Bosnian',
'ca' => 'Catalan',
'cs' => 'Czech',
'da' => 'Danish',
'de' => 'German',
'el' => 'Greek',
'en' => 'English',
'en-au' => 'English (Australia)',
'en-ca' => 'English (Canadian)',
'en-uk' => 'English (United Kingdom)',
'eo' => 'Esperanto',
'es' => 'Spanish',
'et' => 'Estonian',
'eu' => 'Basque',
'fa' => 'Persian',
'fi' => 'Finnish',
'fo' => 'Faroese',
'fr' => 'French',
'gl' => 'Galician',
'he' => 'Hebrew',
'hi' => 'Hindi',
'hr' => 'Croatian',
'hu' => 'Hungarian',
'it' => 'Italian',
'ja' => 'Japanese',
'km' => 'Khmer',
'ko' => 'Korean',
'lt' => 'Lithuanian',
'lv' => 'Latvian',
'mn' => 'Mongolian',
'ms' => 'Malay',
'nb' => 'Norwegian Bokmal',
'nl' => 'Dutch',
'no' => 'Norwegian',
'pl' => 'Polish',
'pt' => 'Portuguese (Portugal)',
'pt-br' => 'Portuguese (Brazil)',
'ro' => 'Romanian',
'ru' => 'Russian',
'sk' => 'Slovak',
'sl' => 'Slovenian',
'sr' => 'Serbian (Cyrillic)',
'sr-latn' => 'Serbian (Latin)',
'sv' => 'Swedish',
'th' => 'Thai',
'tr' => 'Turkish',
'uk' => 'Ukrainian',
'vi' => 'Vietnamese',
'zh' => 'Chinese Traditional',
'zh-cn' => 'Chinese Simplified',
);
}
asort($arr);
return $arr;
}
/**
* sort roles according to precedence settings. previously sorted roles are followed by latest added roles.
*/
function fckeditor_sorted_roles() {
static $order;
if (isset($order)) {
return $order;
}
$order = array();
$roles = user_roles(0, 'access fckeditor');
$result = db_query("SELECT settings FROM {fckeditor_settings} WHERE name='FCKeditor Global Profile'");
$data = db_fetch_object($result);
if ($data->settings) {
$settings = unserialize($data->settings);
if (isset($settings['rank']) && !empty($settings['rank']))
foreach ($settings['rank'] as $rid) {
if (isset($roles[$rid])) {
$order[$rid] = $roles[$rid];
unset($roles[$rid]);
}
}
}
krsort($roles);//sort the remaining unsorted roles by id, descending.
$order += $roles;
return $order;
}
function fckeditor_global_profile_form_build($sth, $edit) {
$edit = (object) $edit;
if (arg(3) == 'addg') {
drupal_set_breadcrumb(array(l(t('administer'), 'admin'), l(t('fckeditor'), 'admin/settings/fckeditor'), l(t('Add new FCKeditor Global Profile'), 'admin/settings/fckeditor/addg')));
$result = db_query("SELECT DISTINCT(rid) FROM {fckeditor_role} WHERE name='FCKeditor Global Profile'");
$data = db_fetch_object($result);
if ($data->rid) {
drupal_set_message(t("Global profile already exist. Only one global profile is allowed."), "error");
return array();
}
$btn = t('Create global profile');
}
else {
$form['old_name'] = array('#type' => 'hidden', '#value' => $edit->name);
$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 is the id-name pairs of roles having access to FCKeditor:') .''. implode(' ', $rtext) .'
';
}
else {
$form['common']['rank']['#description'] .= t('You haven\'t assigned the !access1
!permissions yet.', array('!access1' => t('access fckeditor'), '!permissions' => l(t('permissions'), 'admin/user/permissions')));
}
$form['fckeditor_exclude_settings'] = array(
'#type' => 'fieldset',
'#title' => t('Visibility settings'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['fckeditor_exclude_settings']['excl_mode'] = array(
'#type' => 'select',
'#title' => t('Use inclusion or exclusion mode'),
'#default_value' => (in_array($edit->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_fields'] = array(
'#type' => 'textarea',
'#title' => t('Fields to exclude/include'),
'#cols' => 60,
'#rows' => 5,
'#prefix' => '',
'#suffix' => '
',
'#default_value' => $edit->settings['excl_fields'] ? $edit->settings['excl_fields'] : '',
'#description' => t("Enter names (HTML ID's) of fields that may or may not have an FCKeditor, depending on the chosen option for the inclusion/exclusion mode. You may separate the different entries by commas, spaces or newlines."),
);
/**
* get excluded paths - 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_paths'] = array(
'#type' => 'textarea',
'#title' => t('Paths to exclude/include'),
'#prefix' => '',
'#suffix' => '
',
'#cols' => 60,
'#rows' => 5,
'#default_value' => $edit->settings['excl_paths'] ? $edit->settings['excl_paths'] : '',
'#description' => t("Enter drupal paths here, depending on the chosen option for the inclusion/exclusion mode. Paths may be used the same way as in the drupal blocks configuration. You may separate the different entries by commas, spaces or newlines. You may also use * as a wildcard character (for example comment/*
)."),
);
$form['fckeditor_exclude_settings']['simple_incl_fields'] = array(
'#type' => 'textarea',
'#title' => t('Force simplified toolbar on the following fields'),
'#cols' => 60,
'#rows' => 5,
'#default_value' => $edit->settings['simple_incl_fields'] ? $edit->settings['simple_incl_fields'] : '',
'#description' => t("Enter names (HTML ID's) of fields that should have the simplified toolbar. If you don't want to use this feature, simply leave this field empty. You may separate the different entries by commas, spaces or newlines."),
);
$form['fckeditor_exclude_settings']['simple_incl_paths'] = array(
'#type' => 'textarea',
'#title' => t('Force simplified toolbar on the following paths'),
'#cols' => 60,
'#rows' => 5,
'#default_value' => $edit->settings['simple_incl_paths'] ? $edit->settings['simple_incl_paths'] : '',
'#description' => t("Enter drupal paths that should have the simplified toolbar. If you don't want to use this feature, simply leave this field empty. Paths may be used the same way as in the drupal blocks configuration. You may separate the different entries by commas, spaces or newlines. You may also use * as a wildcard character (for example comment/*
)."),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => $btn
);
return $form;
}
/**
* Return an HTML form for profile configuration.
*/
function fckeditor_profile_form_build($sth, $edit) {
$edit = (object) $edit;
$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 (arg(3) == 'add') {
drupal_set_breadcrumb(array(l(t('administer'), 'admin'), l(t('fckeditor'), 'admin/settings/fckeditor'), l(t('Add new FCKeditor profile'), 'admin/settings/fckeditor/add')));
$result = db_query('SELECT DISTINCT(rid) FROM {fckeditor_role}');
while ($data = db_fetch_object($result)) {
if (!in_array($data->rid, array_keys((array) $edit->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.'));
}
$btn = t('Create profile');
}
else {
$form['old_name'] = array('#type' => 'hidden', '#value' => $edit->name);
$btn = t('Update profile');
}
$form['basic'] = array(
'#type' => 'fieldset',
'#title' => t('Basic setup'),
'#collapsible' => TRUE,
'#collapsed' => TRUE
);
$form['basic']['name'] = array(
'#type' => 'textfield',
'#title' => t('Profile name'),
'#default_value' => $edit->name,
'#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' => array_keys((array) $edit->rids),
'#options' => $roles,
'#description' => t('Only roles with \'!access1\' permission will be shown here. If no role is available, make sure that you have assigned the \'!access1\' !permission.', array('!access1' => t('access fckeditor'), '!permission' => l(t("permission"), "admin/user/permissions"))),
'#required' => TRUE
);
$form['basic']['allow_user_conf'] = array(
'#type' => 'select',
'#title' => t('Allow users to customize FCKeditor appearance'),
'#default_value' => $edit->settings['allow_user_conf'] ? $edit->settings['allow_user_conf'] : 'f',
'#options' => array('f' => t('false'), 't' => t('true')),
'#description' => t('If allowed, users will be able to override Editor appearance
by visiting their profile page.'),
);
$form['fckeditor_exclude_settings'] = array(
'#type' => 'fieldset',
'#title' => t('Visibility settings'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['fckeditor_exclude_settings']['min_rows'] = array(
'#type' => 'textfield',
'#title' => t('Minimum rows'),
'#default_value' => $edit->settings['min_rows'] ? $edit->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' => 'select',
'#title' => t('Use inclusion or exclusion mode'),
'#default_value' => (in_array($edit->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_fields'] = array(
'#type' => 'textarea',
'#title' => t('Fields to exclude/include'),
'#cols' => 60,
'#rows' => 5,
'#prefix' => '',
'#suffix' => '
',
'#default_value' => $edit->settings['excl_fields'] ? $edit->settings['excl_fields'] : '',
'#description' => t("Enter names (HTML ID's) of fields that may or may not have an FCKeditor, depending on the chosen option for the inclusion/exclusion mode. You may separate the different entries by commas, spaces or newlines."),
);
/**
* get excluded paths - 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_paths'] = array(
'#type' => 'textarea',
'#title' => t('Paths to exclude/include'),
'#prefix' => '',
'#suffix' => '
',
'#cols' => 60,
'#rows' => 5,
'#default_value' => $edit->settings['excl_paths'] ? $edit->settings['excl_paths'] : '',
'#description' => t("Enter drupal paths here, depending on the chosen option for the inclusion/exclusion mode. Paths may be used the same way as in the drupal blocks configuration. You may separate the different entries by commas, spaces or newlines. You may also use * as a wildcard character (for example comment/*
)."),
);
$form['fckeditor_exclude_settings']['simple_incl_fields'] = array(
'#type' => 'textarea',
'#title' => t('Force simplified toolbar on the following fields'),
'#cols' => 60,
'#rows' => 5,
//'#prefix' => t('Here you can define where FCKeditor should force the !simple
toolbar. Useful for smaller textareas where we usually don\'t use very complicated HTML code, like in signatures.', array('!simple' => FCKEDITOR_FORCE_SIMPLE_TOOLBAR_NAME)),
'#default_value' => $edit->settings['simple_incl_fields'] ? $edit->settings['simple_incl_fields'] : '',
'#description' => t("Enter names (HTML ID's) of fields that should have the simplified toolbar. If you don't want to use this feature, simply leave this field empty. You may separate the different entries by commas, spaces or newlines."),
);
$form['fckeditor_exclude_settings']['simple_incl_paths'] = array(
'#type' => 'textarea',
'#title' => t('Force simplified toolbar on the following paths'),
'#cols' => 60,
'#rows' => 5,
//'#prefix' => t('Here you can define where FCKeditor should force the !simple
toolbar. Useful for smaller textareas where we usually don\'t use very complicated HTML code, like in signatures.', array('!simple' => FCKEDITOR_FORCE_SIMPLE_TOOLBAR_NAME)),
'#default_value' => $edit->settings['simple_incl_paths'] ? $edit->settings['simple_incl_paths'] : '',
'#description' => t("Enter drupal paths that should have the simplified toolbar. If you don't want to use this feature, simply leave this field empty. Paths may be used the same way as in the drupal blocks configuration. You may separate the different entries by commas, spaces or newlines. You may also use * as a wildcard character (for example comment/*
)."),
);
$form['appearance'] = array(
'#type' => 'fieldset',
'#title' => t('Editor appearance'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['appearance']['default'] = array(
'#type' => 'select',
'#title' => t('Default state'),
'#default_value' => $edit->settings['default'] ? $edit->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' => 'select',
'#title' => t('Show disable/enable rich text editor toggle'),
'#default_value' => $edit->settings['show_toggle'] ? $edit->settings['show_toggle'] : 't',
'#options' => array('t' => t('true'), 'f' => t('false')),
'#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' => 'select',
'#title' => t('Use FCKeditor in a popup window'),
'#default_value' => $edit->settings['popup'] ? $edit->settings['popup'] : 'f',
'#options' => array('f' => t('false'), 't' => t('true')),
'#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' => $edit->settings['skin'] ? $edit->settings['skin'] : 'default',
'#options' => $skin_options,
'#description' => t('Choose a default skin.'),
);
$form['appearance']['toolbar'] = array(
'#type' => 'select',
'#title' => t('Toolbar'),
'#default_value' => $edit->settings['toolbar'] ? $edit->settings['toolbar'] : 'default',
'#options' => $toolbar_options,
'#description' => t('Choose a default toolbar set. To define new toolbar, edit fckeditor.config.js
located in !module_path.', array('!module_path' => drupal_get_path('module', 'fckeditor'))),
);
$form['appearance']['expand'] = array(
'#type' => 'select',
'#title' => t('Start the toolbar expanded'),
'#default_value' => $edit->settings['expand'] ? $edit->settings['expand'] : 't',
'#options' => array('t' => t('enabled'), 'f' => t('disabled')),
'#description' => t('The toolbar start expanded or collapsed.'),
);
$form['appearance']['width'] = array(
'#type' => 'textfield',
'#title' => t('Width'),
'#default_value' => $edit->settings['width'] ? $edit->settings['width'] : '100%',
'#description' => t("Width in pixels or percent. Ex: 400 or 100%"),
'#size' => 40,
'#maxlength' => 128,
);
$form['appearance']['lang'] = array(
'#type' => 'select',
'#title' => t('Language'),
'#default_value' => $edit->settings['lang'] ? $edit->settings['lang'] : 'en',
'#options' => $lang_options,
'#description' => t('The language for the FCKeditor interface.')
);
$form['appearance']['auto_lang'] = array(
'#type' => 'select',
'#title' => t('Auto-detect language'),
'#default_value' => $edit->settings['auto_lang'] ? $edit->settings['auto_lang'] : 't',
'#options' => array('t' => t('true'), 'f' => t('false')),
'#description' => t('Use auto detect user language feature.')
);
/*
$form['appearance']['appearance_conf'] = array(
'#type' => 'select',
'#title' => t('Ignore this section, use default settings defined in config files'),
'#default_value' => $edit->settings['appearance_conf'] ? $edit->settings['appearance_conf'] : 'f',
'#options' => array('f' => t('false'), 't' => t('true')),
'#description' => t('Although it is less handy, defining settings only in config files (fckconfig.js
and fckeditor.config.js
) will slightly leverage your traffic and improve load time of your site. Warning: if set to true, all changes made in Editor appearance
will have no affect on FCKeditor\'s behaviour.'),
);
*/
$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' => $edit->settings['enter_mode'] ? $edit->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' => $edit->settings['shift_enter_mode'] ? $edit->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' => $edit->settings['font_format'] ? $edit->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. Allowed values are: p;div;pre;address;h1;h2;h3;h4;h5;h6'),
);
$form['output']['format_source'] = array(
'#type' => 'select',
'#title' => t('Apply source formatting'),
'#default_value' => $edit->settings['format_source'] ? $edit->settings['format_source'] : 't',
'#options' => array('t' => 'true', 'f' => 'false'),
'#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.'),
);
$form['output']['format_output'] = array(
'#type' => 'select',
'#title' => t('Format output'),
'#default_value' => $edit->settings['format_output'] ? $edit->settings['format_output'] : 't',
'#options' => array('t' => 'true', 'f' => 'false'),
'#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.'),
);
/*
$form['output']['output_conf'] = array(
'#type' => 'select',
'#title' => t('Ignore this section, use default settings defined in config files'),
'#default_value' => $edit->settings['output_conf'] ? $edit->settings['output_conf'] : 'f',
'#options' => array('f' => t('false'), 't' => t('true')),
'#description' => t('Although it is less handy, defining settings only in config files (
fckconfig.js
and
fckeditor.config.js
) will slightly leverage your traffic and improve load time of your site.
Warning: if set to true, all changes made in
Cleanup and output
will have no affect on FCKeditor\'s behaviour.'),
);
*/
$form['css'] = array(
'#type' => 'fieldset',
'#title' => t('CSS'),
'#collapsible' => TRUE,
'#collapsed' => TRUE
);
$form['css']['css_mode'] = array(
'#type' => 'select',
'#title' => t('Editor CSS'),
'#default_value' => $edit->settings['css_mode'] ? $edit->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.
use theme css - load style.css from current site theme.
define css - enter path for css file below.
FCKeditor default - uses default CSS from editor.')
);
$form['css']['css_path'] = array(
'#type' => 'textfield',
'#title' => t('CSS path'),
'#default_value' => $edit->settings['css_path'],
'#size' => 40,
'#maxlength' => 255,
'#description' => t('Enter path to CSS file (
example: css/editor.css ) or a list of css files seperated by a comma (
example: /themes/garland/style.css,http://example.com/style.css ).
Macros: %h (host name: !host), %t (path to theme: !theme)
Be sure to select "define css" above.', array('!host' => base_path(), '!theme' => path_to_theme() .'/'))
);
$form['css']['css_style'] = array(
'#type' => 'select',
'#title' => t('Predefined styles'),
'#default_value' => $edit->settings['css_style'] ? $edit->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
fckstyles.xml
file. It is used by the "Style" dropdown list available in the Default toolbar.
Copy !fckstyles.xml inside your theme directory (
!theme
) and adjust it to your needs.', array('!fckstyles.xml' => drupal_get_path('module', 'fckeditor') .'/fckeditor/fckstyles.xml', '!theme' => path_to_theme() .'/fckstyles.xml'))
);
$form['css']['styles_path'] = array(
'#type' => 'textfield',
'#title' => t('Predefined styles path'),
'#default_value' => $edit->settings['styles_path'],
'#size' => 40,
'#maxlength' => 255,
'#description' => t('Enter path to XML file with predefined styles (
example: /fckstyles.xml ).
Macros: %h (host name: !host), %t (path to theme: !theme), %m (path to FCKeditor module: !module)
Be sure to select "define path to fckstyles.xml" above.', array('!host' => base_path(), '!theme' => path_to_theme() .'/', '!module' => drupal_get_path('module', 'fckeditor')))
);
// don't show useless options if IMCE is preferred
if (function_exists('imce_integrate') && variable_get('imce_settings_fck', 0)) {
$form['fckeditor_upload_settings'] = array(
'#type' => 'fieldset',
'#title' => t('File browser settings'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
'#description' => t('The file browser settings are not diplayed because you have configured IMCE to handle file browsing.')
);
}
else {
$form['fckeditor_upload_settings'] = array(
'#type' => 'fieldset',
'#title' => t('File browser settings'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
'#description' => t('Set file browser settings. If you enable file uploads and disable basic and advanced file management, you will need to manage your images and other files with the core upload module or a contrib module like !imce. Please note that these options require manual configuration, check !readme for more information.
',
array(
'!imce' => l(t('IMCE'), 'http://drupal.org/project/imce'),
'!readme' => l('readme.txt', 'admin/help/fckeditor'),
)
)
);
$form['fckeditor_upload_settings']['upload_basic'] = array(
'#type' => 'select',
'#options' => array('f' => t('false'), 't' => t('true')),
'#title' => t('Allow basic file management'),
'#default_value' => $edit->settings['upload_basic'] ? $edit->settings['upload_basic'] : 'f',
'#description' => t("Allow quick uploads."),
);
$form['fckeditor_upload_settings']['upload_advanced'] = array(
'#type' => 'select',
'#options' => array('f' => t('false'), 't' => t('true')),
'#title' => t('Allow advanced file management'),
'#default_value' => $edit->settings['upload_advanced'] ? $edit->settings['upload_advanced'] : 'f',
'#description' => t('Allow file management in the advanced file manager.'),
);
$current_user_files_path = strtr($edit->settings['UserFilesPath'], array("%f" => file_directory_path(), "%u" => "UID", "%b" => base_path()));
$current_user_files_absolute_path = strtr($edit->settings['UserFilesAbsolutePath'], array("%f" => file_directory_path(), "%u" => "UID", "%b" => base_path(), "%d" => $_SERVER['DOCUMENT_ROOT']));
$form['fckeditor_upload_settings']['UserFilesPath'] = array(
'#type' => 'textfield',
'#title' => t('Path to uploaded files'),
'#default_value' => $edit->settings['UserFilesPath'] ? $edit->settings['UserFilesPath'] : "%b%f/",
'#size' => 40,
'#maxlength' => 255,
'#description' => t('Path to uploaded files relative to the document root.
Available wildcard characters:
%b - base URL path of the Drupal installation (!base).
%f - Drupal file system path where the files are stored (!files).
%u - User ID.
Current path: !path', array('!path' => $current_user_files_path, '!files' => file_directory_path(), '!base' => base_path())),
);
$form['fckeditor_upload_settings']['UserFilesAbsolutePath'] = array(
'#type' => 'textfield',
'#title' => t('Absolute path to uploaded files'),
'#default_value' => $edit->settings['UserFilesAbsolutePath'] ? $edit->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.
Available wildcard characters:
%d - server path to document root (!root).
%b - base URL path of the Drupal installation (!base).
%f - Drupal file system path where the files are stored (!files).
%u - User ID.
Current path: !path', array('!path' => $current_user_files_absolute_path, '!files' => file_directory_path(), '!base' => base_path(), '!root' => $_SERVER['DOCUMENT_ROOT'])),
);
}
$form['advanced'] = array(
'#type' => 'fieldset',
'#title' => t('Advanced options'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['advanced']['js_conf'] = array(
'#type' => 'textarea',
'#title' => t('Custom javascript configuration'),
'#default_value' => $edit->settings['js_conf'],
'#cols' => 60,
'#rows' => 5,
'#description' => t('Warning: to change FCKeditor configuration globally, you should modify the config file:
!fckeditor_config
.
Sometimes it is required to change the FCKeditor configuration for selected profile. Use this box to define settings that are uniqe for this profile.
Available options are listed in the !docs.
Warning: if you make something wrong here, FCKeditor may fail to load.
For example to disable some advanced tabs in dialog windows in FCKeditor, add the following: !example',
array(
'!fckeditor_config' => drupal_get_path('module', 'fckeditor') ."/fckeditor.config.js",
'!docs' => l(t("FCKeditor documentation"), "http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options"),
"!example" => "
LinkDlgHideTarget = true ;
LinkDlgHideAdvanced = true ;
ImageDlgHideLink = true ;
ImageDlgHideAdvanced = true ;
FlashDlgHideAdvanced = true ; ")
));
$form['submit'] = array(
'#type' => 'submit',
'#value' => $btn
);
return $form;
}
/**
* Search the field id for matches in array of matches
*
* @param $search
* A string representing a form field id
* @ param $array
* An $array with strings to match the $search parameter against
*
* @return
* TRUE on match, FALSE on no match
*/
function fckeditor_idsearch($search, $array) {
foreach ($array as $key => $value) {
if (!empty($value) && preg_match('/^'. str_replace('*', '.*', addslashes($value)) .'$/i', $search)) {
// on any first match we know we're done here so return positive
return true;
}
}
return false;
}
/**
* Test if client can render the FCKeditor
* Use built-in test method in fckeditor.php
* If fckeditor.php is not found, return false (probably in such case fckeditor is not installed correctly)
*
* @return
* TRUE if the browser is reasonably capable
*/
function fckeditor_is_compatible_client() {
$fckeditor_main_file = drupal_get_path('module', 'fckeditor') .'/fckeditor/fckeditor.php';
if (file_exists($fckeditor_main_file)) {
include $fckeditor_main_file;
if (function_exists('FCKeditor_IsCompatibleBrowser')) {
return FCKeditor_IsCompatibleBrowser();
}
else {
$fck = new FCKeditor("fake");
return $fck->IsCompatible();
}
}
return false;
}
function fckeditor_user_get_setting($user, $profile, $setting) {
$default = array(
'default' => 't',
'show_toggle' => 't',
'popup' => 'f',
'skin' => 'default',
'toolbar' => 'default',
'expand' => 't',
'width' => '100%',
'lang' => 'en',
'auto_lang' => 't',
);
$settings = $profile->settings;
if ($settings['allow_user_conf']) {
$status = isset($user->{"fckeditor_". $setting}) ? $user->{"fckeditor_". $setting} : (isset($settings[$setting]) ? $settings[$setting] : $default[$setting]);
}
else {
$status = isset($settings[$setting]) ? $settings[$setting] : $default[$setting];
}
return $status;
}
function fckeditor_user_get_profile($account) {
$profile_name = db_result(db_query('SELECT s.name FROM {fckeditor_settings} s INNER JOIN {fckeditor_role} r ON r.name = s.name WHERE r.rid IN (%s)', implode(',', array_keys($account->roles))));
if ($profile_name) {
return fckeditor_profile_load($profile_name);
}
else {
return FALSE;
}
}
function fckeditor_init() {
drupal_add_css(drupal_get_path('module', 'fckeditor') .'/fckeditor.css');
}