View source
<?php
function varbase_ckeditor_ckeditor_profile_defaults() {
$data = array(
'Advanced' => array(
'name' => 'Advanced',
'settings' => array(
'ss' => 2,
'default' => 't',
'show_toggle' => 't',
'uicolor' => 'default',
'uicolor_user' => 'default',
'toolbar' => '[
[\'Source\'],
[\'Cut\',\'Copy\',\'Paste\',\'PasteText\',\'RemoveFormat\',\'-\',\'Undo\',\'Redo\'],
[\'Image\',\'Media\',\'-\',\'MediaEmbed\'],
[\'SpecialChar\',\'HorizontalRule\'],
[\'DrupalBreak\',\'Table\',\'Maximize\',\'ShowBlocks\'],
[\'linkit\',\'-\',\'Anchor\',\'-\',\'Link\',\'Unlink\'],
\'/\',
[\'Styles\',\'Format\',\'Bold\',\'Italic\',\'Underline\',\'Strike\',\'-\',\'Subscript\',\'Superscript\',\'-\',\'Blockquote\'],
[\'NumberedList\',\'BulletedList\',\'-\',\'Outdent\',\'Indent\'],
[\'JustifyLeft\',\'JustifyCenter\',\'JustifyRight\',\'JustifyBlock\',\'-\',\'BidiLtr\',\'BidiRtl\']
]',
'expand' => 't',
'width' => '100%',
'lang' => 'en',
'auto_lang' => 't',
'language_direction' => 'default',
'enter_mode' => 'p',
'shift_enter_mode' => 'br',
'font_format' => 'p;div;pre;h1;h2;h3;h4;h5;h6',
'custom_formatting' => 'f',
'formatting' => array(
'custom_formatting_options' => array(
'indent' => 'indent',
'breakBeforeOpen' => 'breakBeforeOpen',
'breakAfterOpen' => 'breakAfterOpen',
'breakAfterClose' => 'breakAfterClose',
'breakBeforeClose' => 0,
'pre_indent' => 0,
),
),
'css_mode' => 'theme',
'css_path' => '',
'css_style' => 'self',
'styles_path' => '%tjs/ckeditor.styles.js',
'filebrowser' => 'none',
'filebrowser_image' => '',
'filebrowser_flash' => '',
'UserFilesPath' => '%b%f/',
'UserFilesAbsolutePath' => '%d%b%f/',
'forcePasteAsPlainText' => 't',
'html_entities' => 'f',
'scayt_autoStartup' => 'f',
'theme_config_js' => 'f',
'js_conf' => '',
'loadPlugins' => array(
'counter' => array(
'name' => 'counter',
'desc' => 'Plugin to count symbols, symbols without blanks and words',
'path' => '%plugin_dir%counter/',
'buttons' => FALSE,
'default' => 'f',
),
'drupalbreaks' => array(
'name' => 'drupalbreaks',
'desc' => 'Plugin for inserting Drupal teaser and page breaks.',
'path' => '%plugin_dir%drupalbreaks/',
'buttons' => array(
'DrupalBreak' => array(
'label' => 'DrupalBreak',
'icon' => 'images/drupalbreak.png',
),
),
'default' => 't',
),
'linkit' => array(
'name' => 'linkit',
'desc' => 'Support for Linkit module',
'path' => '%base_path%profiles/varbase/modules/contrib/linkit/editors/ckeditor/',
'buttons' => array(
'linkit' => array(
'label' => 'Linkit',
'icon' => 'linkit.png',
),
),
),
'media' => array(
'name' => 'media',
'desc' => 'Plugin for inserting images from Drupal media module',
'path' => '%plugin_dir%media/',
'buttons' => array(
'Media' => array(
'label' => 'Media',
'icon' => 'images/icon.gif',
),
),
'default' => 'f',
),
'mediaembed' => array(
'name' => 'mediaembed',
'desc' => 'Plugin for inserting Drupal embeded media',
'path' => '%plugin_dir%mediaembed/',
'buttons' => array(
'MediaEmbed' => array(
'label' => 'MediaEmbed',
'icon' => 'images/icon.png',
),
),
'default' => 'f',
),
),
),
'input_formats' => array(
'visual_editor' => 'Visual editor',
),
),
'CKEditor Global Profile' => array(
'name' => 'CKEditor Global Profile',
'settings' => array(
'ckeditor_path' => '%l/ckeditor',
),
'input_formats' => array(),
),
);
return $data;
}