Heute ein kleines Drupal Modul-Snippet zur Aktivierung der autom. Rechtschreibprüfung via Scayt im CKEditor unter Einsatz des wysiwyg.module inkl. Sprachumschaltung auf Deutsch für die Rechtschreibprüfung (Standard-Sprache)
/**
* Implements hook_wysiwyg_editor_settings_alter()
*/
function MYMODULE_wysiwyg_editor_settings_alter(&$settings, $context) {
// Set custom configuration for CKeditor in WYSIWYG
if ($context['profile']->editor == 'ckeditor') {
// Further settings see: http://docs.ckeditor.com/#!/api/CKEDITOR.config
// Spellchecker default lanugage
$settings['scayt_sLang'] = 'de_DE';
// Start automatically (because the checkbox in the settings doesn't seem to change anything):
$settings['scayt_autoStartup'] = TRUE;
// Set the customer ID if purchased:
// $settings['scayt_customerId'] = '';
}
}
?>