-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathucsf_webedit.features.wysiwyg.inc
82 lines (79 loc) · 1.93 KB
/
ucsf_webedit.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
* ucsf_webedit.features.wysiwyg.inc
*/
/**
* Implements hook_wysiwyg_default_profiles().
*/
function ucsf_webedit_wysiwyg_default_profiles() {
$profiles = array();
// Exported profile: webedit
$profiles['webedit'] = array(
'format' => 'webedit',
'editor' => 'ckeditor',
'settings' => array(
'default' => 1,
'user_choose' => 0,
'show_toggle' => 0,
'theme' => 'advanced',
'language' => 'en',
'buttons' => array(
'default' => array(
'Bold' => 1,
'Italic' => 1,
'JustifyLeft' => 1,
'JustifyCenter' => 1,
'JustifyRight' => 1,
'BulletedList' => 1,
'NumberedList' => 1,
'Outdent' => 1,
'Indent' => 1,
'Image' => 1,
'Undo' => 1,
'Redo' => 1,
'Link' => 1,
'Unlink' => 1,
'Anchor' => 1,
'Blockquote' => 1,
'Source' => 1,
'HorizontalRule' => 1,
'PasteText' => 1,
'RemoveFormat' => 1,
'SpecialChar' => 1,
'Format' => 1,
'Styles' => 1,
'Table' => 1,
'Find' => 1,
'ShowBlocks' => 1,
'CreateDiv' => 1,
),
'pasteformat' => array(
'pasteformat' => 1,
),
'drupal_path' => array(
'Link' => 1,
),
'drupal' => array(
'media' => 1,
),
),
'toolbar_loc' => 'top',
'toolbar_align' => 'left',
'path_loc' => 'bottom',
'resizing' => 1,
'verify_html' => 1,
'preformatted' => 0,
'convert_fonts_to_spans' => 0,
'remove_linebreaks' => 0,
'apply_source_formatting' => 1,
'paste_auto_cleanup_on_paste' => 0,
'block_formats' => '<set in code>',
'css_setting' => 'theme',
'css_path' => '',
'css_classes' => '',
),
'rdf_mapping' => array(),
);
return $profiles;
}