-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathahillio_wysiwyg.strongarm.inc
51 lines (44 loc) · 1.63 KB
/
ahillio_wysiwyg.strongarm.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
<?php
/**
* @file
* ahillio_wysiwyg.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
function ahillio_wysiwyg_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'ace_editor_default_syntax';
$strongarm->value = 'html';
$export['ace_editor_default_syntax'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'ace_editor_filter_formats';
$strongarm->value = array(
'ace_editor' => 'ace_editor',
);
$export['ace_editor_filter_formats'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'ace_editor_fontsize';
$strongarm->value = '10pt';
$export['ace_editor_fontsize'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'ace_editor_printmargin';
$strongarm->value = 0;
$export['ace_editor_printmargin'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'ace_editor_theme';
$strongarm->value = 'clouds';
$export['ace_editor_theme'] = $strongarm;
return $export;
}