-
Notifications
You must be signed in to change notification settings - Fork 0
/
richtexteditor_feature.strongarm.inc
122 lines (112 loc) · 3.57 KB
/
richtexteditor_feature.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php
/**
* @file
* richtexteditor_feature.strongarm.inc
*/
/**
* Implementation of hook_strongarm().
*/
function richtexteditor_feature_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 = 'better_formats_per_field_core';
$strongarm->value = 1;
$export['better_formats_per_field_core'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'imce_profiles';
$strongarm->value = array(
1 => array(
'name' => 'Manager',
'usertab' => 0,
'filesize' => '0',
'quota' => '0',
'tuquota' => '0',
'extensions' => '*',
'dimensions' => '1200x1200',
'filenum' => '0',
'directories' => array(
0 => array(
'name' => '.',
'subnav' => 1,
'browse' => 1,
'upload' => 1,
'thumb' => 1,
'delete' => 1,
'resize' => 1,
),
),
'thumbnails' => array(
0 => array(
'name' => 'Small',
'dimensions' => '90x90',
'prefix' => 'small_',
'suffix' => '',
),
1 => array(
'name' => 'Medium',
'dimensions' => '120x120',
'prefix' => 'medium_',
'suffix' => '',
),
2 => array(
'name' => 'Large',
'dimensions' => '180x180',
'prefix' => 'large_',
'suffix' => '',
),
),
),
);
$export['imce_profiles'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'imce_roles_profiles';
$strongarm->value = array(
3 => array(
'public_pid' => '1',
),
2 => array(
'public_pid' => 0,
),
1 => array(
'public_pid' => 0,
),
);
$export['imce_roles_profiles'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'imce_settings_absurls';
$strongarm->value = 0;
$export['imce_settings_absurls'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'imce_settings_disable_private';
$strongarm->value = 1;
$export['imce_settings_disable_private'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'imce_settings_replace';
$strongarm->value = '0';
$export['imce_settings_replace'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'imce_settings_textarea';
$strongarm->value = '';
$export['imce_settings_textarea'] = $strongarm;
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'imce_settings_thumb_method';
$strongarm->value = 'scale_and_crop';
$export['imce_settings_thumb_method'] = $strongarm;
return $export;
}