Mercurial > hg > rr-repo
view rrr_features.features.wysiwyg.inc @ 29:11991bef8cf2 tip master
updated modules (drush up)
author | root <root@guanciale.(none)> |
---|---|
date | Tue, 10 Dec 2013 10:58:16 +0000 |
parents | a0535331f47e |
children |
line wrap: on
line source
<?php /** * @file * rrr_features.features.wysiwyg.inc */ /** * Implements hook_wysiwyg_default_profiles(). */ function rrr_features_wysiwyg_default_profiles() { $profiles = array(); // Exported profile: full_html $profiles['full_html'] = array( 'format' => 'full_html', 'editor' => 'ckeditor', 'settings' => array( 'default' => 1, 'user_choose' => 1, 'show_toggle' => 1, 'theme' => 'advanced', 'language' => 'en', 'buttons' => array( 'default' => array( 'Bold' => 1, 'Italic' => 1, 'Underline' => 1, 'Strike' => 1, 'JustifyLeft' => 1, 'JustifyCenter' => 1, 'JustifyRight' => 1, 'JustifyBlock' => 1, 'BulletedList' => 1, 'NumberedList' => 1, 'Outdent' => 1, 'Indent' => 1, 'Undo' => 1, 'Redo' => 1, 'Link' => 1, 'Unlink' => 1, 'Image' => 1, 'Superscript' => 1, 'Subscript' => 1, 'Blockquote' => 1, 'Source' => 1, 'HorizontalRule' => 1, 'Cut' => 1, 'Copy' => 1, 'Paste' => 1, 'PasteText' => 1, 'PasteFromWord' => 1, 'RemoveFormat' => 1, 'Format' => 1, 'Font' => 1, 'FontSize' => 1, 'Styles' => 1, 'Table' => 1, 'SelectAll' => 1, 'Find' => 1, 'Replace' => 1, 'SpellChecker' => 1, 'Scayt' => 1, ), ), 'toolbar_loc' => 'top', 'toolbar_align' => 'left', 'path_loc' => 'bottom', 'resizing' => 1, 'verify_html' => 1, 'preformatted' => 0, 'convert_fonts_to_spans' => 1, 'remove_linebreaks' => 1, 'apply_source_formatting' => 0, 'paste_auto_cleanup_on_paste' => 0, 'block_formats' => 'p,address,pre,h2,h3,h4,h5,h6,div', 'css_setting' => 'theme', 'css_path' => '', 'css_classes' => '', ), ); return $profiles; }