View source
<?php
function fckeditor_install() {
drupal_install_schema('fckeditor');
db_query("INSERT INTO {fckeditor_role} (name, rid) VALUES ('%s', %d)", "Default", defined('DRUPAL_ANONYMOUS_RID') ? DRUPAL_ANONYMOUS_RID : 1);
db_query("INSERT INTO {fckeditor_role} (name, rid) VALUES ('%s', %d)", "Advanced", defined('DRUPAL_AUTHENTICATED_RID') ? DRUPAL_AUTHENTICATED_RID : 2);
$arr = array();
$arr['allow_user_conf'] = "f";
$arr['min_rows'] = variable_get('fckeditor_minimum_rows', 1);
$arr['excl_mode'] = variable_get('fckeditor_exclude_toggle', 0);
$arr['filebrowser'] = 'none';
$arr['quickupload'] = 'f';
$arr['ss'] = "2";
$arr['filters']['filter/0'] = 1;
$arr['default'] = "t";
$arr['show_toggle'] = "t";
$arr['popup'] = variable_get('fckeditor_popup', 0) ? "t" : "f";
$arr['skin'] = "default";
$arr['toolbar'] = variable_get('fckeditor_default_toolbar', 'DrupalBasic');
$arr['expand'] = variable_get('fckeditor_toolbar_start_expanded', 1) ? "t" : "f";
$arr['width'] = variable_get("fckeditor_width", "100%");
$arr['lang'] = "en";
$arr['auto_lang'] = "t";
$arr['enter_mode'] = "p";
$arr['shift_enter_mode'] = "br";
$arr['font_format'] = 'p;div;pre;address;h1;h2;h3;h4;h5;h6';
$arr['format_source'] = "t";
$arr['format_output'] = "t";
$arr['css_mode'] = "theme";
$arr['css_path'] = variable_get("fckeditor_stylesheet", "");
$arr['filebrowser'] = "none";
$arr['quickupload'] = "f";
$arr['user_choose'] = "f";
$arr['show_fieldnamehint'] = "t";
$arr['autofixplaintext'] = 'f';
db_query("INSERT INTO {fckeditor_settings} (name, settings) VALUES ('%s', '%s')", "Default", serialize($arr));
$arr['toolbar'] = variable_get('fckeditor_advanced_toolbar', 'DrupalFiltered');
db_query("INSERT INTO {fckeditor_settings} (name, settings) VALUES ('%s', '%s')", "Advanced", serialize($arr));
$arr = array();
$arr['excl_mode'] = 0;
$arr['excl'] = variable_get("fckeditor_exclude", "admin/user/settings.edit-user-mail-*\n" . "*.edit-pages\n" . "*.edit-pathauto-ignore-words\n" . "*.edit-recipients\n" . "*.edit-reply\n" . "*.edit-description\n" . "*.edit-synonyms\n" . "*.edit-img-assist-textareas\n" . "*.edit-img-assist-paths\n" . "*.edit-nodewords-description\n" . "*.edit-nodewords-description-value\n" . "admin/content/nodewords/global*\n" . "*.edit-relatedlinks-fieldset-relatedlinks\n" . "*.edit-allowed-values-php\n" . "*.edit-allowed-values\n" . "*.edit-update-notify-emails\n" . "*.edit-googleanalytics-*\n" . "*.edit-piwik-*\n" . "*.edit-feedburner-useragents\n" . "*@*.edit-webform-*\n" . "webform@*.edit-extra-items\n" . "admin/*/logintoboggan\n" . "admin/settings/actions/configure/*\n" . "*.edit-target\n");
$arr['simple_incl_mode'] = 1;
$arr['simple_incl'] = "*.edit-signature\n" . "admin/settings/site-information.*\n" . "admin/settings/site-maintenance.*\n" . "*.edit-page-help\n" . "*.edit-user-registration-help\n" . "*.edit-user-picture-guidelines\n";
db_query("INSERT INTO {fckeditor_settings} (name, settings) VALUES ('%s', '%s')", "FCKeditor Global Profile", serialize($arr));
module_load_include('inc', 'fckeditor', 'fckeditor.admin');
fckeditor_rebuild_selectors();
}
function fckeditor_schema() {
$schema['fckeditor_settings'] = array(
'description' => 'Stores FCKeditor profile settings',
'fields' => array(
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'default' => '',
'length' => 128,
'description' => 'Name of the FCKeditor profile',
),
'settings' => array(
'type' => 'text',
'description' => 'Profile settings',
),
),
'primary key' => array(
'name',
),
);
$schema['fckeditor_role'] = array(
'description' => 'Stores FCKeditor profile assignments',
'fields' => array(
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'default' => '',
'length' => 128,
'description' => 'Name of the FCKeditor role',
),
'rid' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => 'Drupal role id',
),
),
'primary key' => array(
'name',
'rid',
),
);
return $schema;
}
function fckeditor_requirements($phase) {
$requirements = array();
if ($phase == 'runtime') {
$requirements['fckeditor'] = array(
'title' => t('FCKeditor'),
'value' => t('Unknown'),
);
$requirements['fckeditor']['severity'] = REQUIREMENT_OK;
if (!_fckeditor_requirements_isinstalled()) {
$sourcepath = fckeditor_path(TRUE);
$requirements['fckeditor']['description'] = t('FCKeditor was not found at %sourcepath', array(
'%sourcepath' => $sourcepath,
));
$requirements['fckeditor']['severity'] = REQUIREMENT_ERROR;
}
elseif (($installed_version = _fckeditor_requirements_getinstalledversion()) === NULL) {
$requirements['fckeditor']['description'] = t('FCKeditor version could not be determined');
$requirements['fckeditor']['severity'] = REQUIREMENT_INFO;
}
else {
$profile_name = _fckeditor_requirements_builtin_filebrowser_enabled();
if ($profile_name !== FALSE) {
if (!_fckeditor_requirements_cookiedomainset()) {
$requirements['fckeditor']['severity'] = REQUIREMENT_ERROR;
$requirements['fckeditor']['description'] = t('You are using a feature that requires $cookie_domain to be set, but it is not set in your settings.php (either built-in filebrowser or quick uploads are enabled in the !profile profile).', array(
'!profile' => l($profile_name, 'admin/settings/fckeditor/edit/' . urlencode($profile_name)),
));
}
elseif ($error = _fckeditor_requirements_filemanager_config_check($profile_name)) {
$requirements['fckeditor']['severity'] = REQUIREMENT_ERROR;
$requirements['fckeditor']['description'] = $error;
}
}
}
if (!empty($installed_version) && preg_match('#^[\\d\\.]+$#', $installed_version)) {
if (version_compare($installed_version, '2.6.4.1', '<')) {
$requirements['fckeditor']['severity'] = REQUIREMENT_WARNING;
$requirements['fckeditor']['description'] = t('The installed version of FCKeditor is known to have a security problem. You can download an updated version at !fcklink.', array(
'!fcklink' => l('FCKeditor.net', 'http://www.fckeditor.net'),
));
}
}
if (!empty($installed_version)) {
$requirements['fckeditor']['value'] = $installed_version;
}
}
return $requirements;
}
function _fckeditor_requirements_isinstalled() {
module_load_include('module', 'fckeditor');
$editor_path = fckeditor_path(TRUE);
$jspath = $editor_path . '/fckeditor.js';
return file_exists($jspath);
}
function _fckeditor_requirements_getinstalledversion() {
module_load_include('module', 'fckeditor');
$editor_path = fckeditor_path(TRUE);
$jspath = $editor_path . '/fckeditor.js';
$configcontents = file_get_contents($jspath);
$matches = array();
if (preg_match('#FCKeditor\\.prototype\\.Version\\s*=\\s*\'([\\d\\.]+(?: SVN)?|\\[Development\\])\'\\s*;#', $configcontents, $matches)) {
return $matches[1];
}
return NULL;
}
function _fckeditor_requirements_filemanager_config_check($profile_name) {
module_load_include('module', 'fckeditor');
$editor_path = fckeditor_path(TRUE);
$config_path = $editor_path . '/editor/filemanager/connectors/php/config.php';
if (!file_exists($config_path)) {
return t('!config not found. Make sure that you have uploaded all files or didn\'t remove that file accidentally.', array(
'!config' => 'editor/filemanager/connectors/php/config.php',
));
}
if (!is_readable($config_path)) {
return t('FCKeditor needs read permission to !config.', array(
'!config' => 'editor/filemanager/connectors/php/config.php',
));
}
$config_contents = file($config_path);
$require_once_found = FALSE;
$require_once_line = 0;
$userfiles_absolute_path_line = 0;
$force_single_extension_line = 0;
if ($config_contents) {
foreach ($config_contents as $line_num => $line) {
if (!$require_once_found && strpos($line, "filemanager.config.php") !== FALSE && !preg_match(",^(?://|\\#|\\*|/\\*),", trim($line))) {
$require_once_found = TRUE;
$require_once_line = $line_num;
}
if (!$userfiles_absolute_path_line && strpos($line, '$Config[\'UserFilesAbsolutePath\']') !== FALSE && !preg_match(",^(?://|\\#|\\*|/\\*),", trim($line))) {
$userfiles_absolute_path_line = $line_num;
}
if (!$force_single_extension_line && strpos($line, '$Config[\'ForceSingleExtension\']') !== FALSE && !preg_match(",^(?://|\\#|\\*|/\\*),", trim($line))) {
$force_single_extension_line = $line_num;
}
}
}
if (!$require_once_found) {
return t('You are using a feature that requires manual integration into config.php (either built-in filebrowser or quick uploads are enabled in the !profile profile). Read instructions about enabling built-in file browser and add "require_once ..." statement in editor/filemanager/connectors/php/config.php.', array(
'!profile' => l($profile_name, 'admin/settings/fckeditor/edit/' . urlencode($profile_name)),
));
}
if ($userfiles_absolute_path_line && $force_single_extension_line && ($require_once_line < $userfiles_absolute_path_line || $require_once_line > $force_single_extension_line)) {
return t('You are using a feature that requires manual integration into config.php (either built-in filebrowser or quick uploads are enabled in the !profile profile). You have added "require_once ..." statement in editor/filemanager/connectors/php/config.php, but in the wrong line.', array(
'!profile' => l($profile_name, 'admin/settings/fckeditor/edit/' . urlencode($profile_name)),
));
}
return FALSE;
}
function _fckeditor_requirements_getavailableversion(&$error) {
$fckpage = drupal_http_request('http://www.fckeditor.net');
$matches = array();
if (!isset($fckpage->error) && preg_match('#class="release_number">\\s*([\\d\\.]+[ \\w]*)<#', $fckpage->data, $matches)) {
return $matches[1];
}
else {
$error = $fckpage->error;
}
return NULL;
}
function _fckeditor_requirements_builtin_filebrowser_enabled() {
module_load_include('module', 'fckeditor');
$profiles = fckeditor_profile_load();
foreach ($profiles as $profile) {
if (isset($profile->settings['filebrowser']) && $profile->settings['filebrowser'] == 'builtin' || isset($profile->settings['quickupload']) && $profile->settings['quickupload'] == 't') {
return $profile->name;
}
}
return FALSE;
}
function _fckeditor_requirements_cookiedomainset() {
if (file_exists('./' . conf_path() . '/settings.php')) {
$settings = file_get_contents('./' . conf_path() . '/settings.php');
if (preg_match('#^\\s*\\$cookie_domain#m', $settings)) {
return TRUE;
}
}
return FALSE;
}
function fckeditor_update_6110() {
$ret = array();
$result = db_query("SELECT * FROM {fckeditor_settings}");
$global_profile_found = FALSE;
while ($data = db_fetch_object($result)) {
if ($data->name == "FCKeditor Global Profile") {
$global_profile_found = TRUE;
}
if ($data->settings) {
$settings = unserialize($data->settings);
}
if (isset($settings['excl_mode'], $settings['excl_list']) && !empty($settings['excl_list'])) {
switch ($settings['excl_mode']) {
case 0:
$settings['excl_fields'] = $settings['excl_list'];
$settings['excl_mode'] = 0;
break;
case 1:
$settings['excl_fields'] = $settings['excl_list'];
$settings['excl_mode'] = 1;
break;
case 2:
$settings['excl_paths'] = $settings['excl_list'];
$settings['excl_mode'] = 0;
break;
case 3:
$settings['excl_paths'] = $settings['excl_list'];
$settings['excl_mode'] = 1;
break;
}
unset($settings['excl_list']);
}
if (isset($settings['simple_incl_mode'], $settings['simple_incl_list']) && !empty($settings['simple_incl_list'])) {
switch ($settings['simple_incl_mode']) {
case 1:
$settings['simple_incl_fields'] = $settings['simple_incl_list'];
break;
case 3:
$settings['simple_incl_paths'] = $settings['simple_incl_list'];
break;
}
unset($settings['simple_incl_mode']);
unset($settings['simple_incl_list']);
}
db_query("UPDATE {fckeditor_settings} SET settings='%s' WHERE name='%s'", serialize($settings), $data->name);
}
if (!$global_profile_found) {
db_query("INSERT INTO {fckeditor_settings} (name, settings) VALUES ('%s', '%s')", "FCKeditor Global Profile", serialize(array()));
}
return $ret;
}
function fckeditor_update_6130() {
$ret = array();
$result = db_query("SELECT * FROM {fckeditor_settings} WHERE name <> 'FCKeditor Global Profile'");
$hasimce = module_exists('imce');
while ($data = db_fetch_object($result)) {
if ($data->settings) {
$settings = unserialize($data->settings);
$imce = $hasimce && isset($settings['imce']) && $settings['imce'] == 't';
$upload_basic = isset($settings['upload_basic']) && $settings['upload_basic'] == 't';
$upload_advanced = isset($settings['upload_advanced']) && $settings['upload_advanced'] == 't';
if ($imce) {
$settings['filebrowser'] = 'imce';
}
elseif ($upload_advanced) {
$settings['filebrowser'] = 'builtin';
}
else {
$settings['filebrowser'] = 'none';
}
$settings['quickupload'] = $upload_basic ? 't' : 'f';
unset($settings['imce'], $settings['upload_basic'], $settings['upload_advanced']);
db_query("UPDATE {fckeditor_settings} SET settings='%s' WHERE name='%s'", serialize($settings), $data->name);
}
}
return $ret;
}
function fckeditor_update_6200() {
$ret = array();
$result = db_query("SELECT * FROM {fckeditor_settings}");
while ($data = db_fetch_object($result)) {
if ($data->settings) {
$settings = unserialize($data->settings);
foreach (array(
'simple_incl',
'excl',
) as $var) {
$paths = preg_split('/[\\s,]+/', $settings[$var . '_paths']);
$ids = preg_split('/[\\s,]+/', $settings[$var . '_fields']);
$final = array();
foreach ($paths as $path) {
$path = trim($path);
if (!empty($path)) {
$final[] = $path . '.*';
}
}
foreach ($ids as $id) {
$id = trim($id);
if (!empty($id)) {
$final[] = '*.' . $id;
}
}
$settings[$var] = implode("\n", $final);
unset($settings[$var . '_paths'], $settings[$var . '_fields']);
}
db_query("UPDATE {fckeditor_settings} SET settings='%s' WHERE name='%s'", serialize($settings), $data->name);
module_load_include('inc', 'fckeditor', 'fckeditor.admin');
fckeditor_rebuild_selectors();
}
}
return $ret;
}
function fckeditor_update_6201() {
$ret = array();
$result = db_query("SELECT * FROM {fckeditor_settings}");
while ($data = db_fetch_object($result)) {
if ($data->settings) {
$settings = unserialize($data->settings);
$settings['show_fieldnamehint'] = 't';
db_query("UPDATE {fckeditor_settings} SET settings='%s' WHERE name='%s'", serialize($settings), $data->name);
}
}
return $ret;
}
function fckeditor_update_6202() {
$ret = array();
$result = db_query("SELECT * FROM {fckeditor_settings}");
while ($data = db_fetch_object($result)) {
if ($data->settings) {
$settings = unserialize($data->settings);
$settings['autofixplaintext'] = 'f';
db_query("UPDATE {fckeditor_settings} SET settings='%s' WHERE name='%s'", serialize($settings), $data->name);
}
}
return $ret;
}
function fckeditor_uninstall() {
drupal_uninstall_schema('fckeditor');
}