You are here

function hook_ckeditor_default_settings_alter in CKEditor - WYSIWYG HTML editor 7

Hook that allows to alter the user default settings.

Parameters

$settings: An associative array of settings.

1 invocation of hook_ckeditor_default_settings_alter()
ckeditor_user_get_setting_default in includes/ckeditor.lib.inc
Get default ckeditor settings

File

./ckeditor.api.php, line 117
CKEditor - The text editor for the Internet - http://ckeditor.com Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.

Code

function hook_ckeditor_default_settings_alter(&$settings) {
  $settings['show_toggle'] = 'f';
}