-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebintl_wysiwyg.features.wysiwyg.inc
82 lines (79 loc) · 2.26 KB
/
webintl_wysiwyg.features.wysiwyg.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/**
* @file
* webintl_wysiwyg.features.wysiwyg.inc
*/
/**
* Implements hook_wysiwyg_default_profiles().
*/
function webintl_wysiwyg_wysiwyg_default_profiles() {
$profiles = array();
// Exported profile: wysiwyg
$profiles['wysiwyg'] = array(
'format' => 'wysiwyg',
'editor' => 'ckeditor',
'settings' => array(
'default' => 1,
'user_choose' => 0,
'show_toggle' => 0,
'theme' => 'advanced',
'language' => 'en',
'buttons' => array(
'default' => array(
'Bold' => 1,
'Italic' => 1,
'Underline' => 1,
'JustifyLeft' => 1,
'JustifyCenter' => 1,
'JustifyRight' => 1,
'BulletedList' => 1,
'NumberedList' => 1,
'Outdent' => 1,
'Indent' => 1,
'Undo' => 1,
'Redo' => 1,
'Link' => 1,
'Unlink' => 1,
'Anchor' => 1,
'Image' => 1,
'Blockquote' => 1,
'Source' => 1,
'HorizontalRule' => 1,
'Cut' => 1,
'Copy' => 1,
'PasteText' => 1,
'PasteFromWord' => 1,
'ShowBlocks' => 1,
'RemoveFormat' => 1,
'Format' => 1,
'Table' => 1,
),
'imce' => array(
'imce' => 1,
),
'drupal_path' => array(
'Link' => 1,
),
'drupal' => array(
'break' => 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' => 1,
'block_formats' => 'p,h2,h3,h4,h5,h6,div,pre',
'css_setting' => 'none',
'css_path' => '',
'css_classes' => '',
'buttonorder' => 'Source,separator,Cut,Copy,PasteText,PasteFromWord,separator,Undo,Redo,separator,Format,separator,Bold,Italic,Underline,separator,JustifyLeft,JustifyCenter,JustifyRight,separator,BulletedList,NumberedList,separator,Outdent,Indent,separator,Link,Unlink,Anchor,separator,Image,Blockquote,Table,HorizontalRule,RemoveFormat,imce,break,ShowBlocks',
),
);
return $profiles;
}