@@ -4,31 +4,31 @@ |
||
4 | 4 | * Implementation of hook_role_export_defaults(). |
5 | 5 | */ |
6 | 6 | function boinc_standard_role_export_defaults() { |
7 | - $roles = array(); |
|
7 | + $roles = array(); |
|
8 | 8 | |
9 | - $roles['administrator'] = array( |
|
9 | + $roles['administrator'] = array( |
|
10 | 10 | 'rid' => '3519698132', |
11 | 11 | 'name' => 'administrator', |
12 | 12 | 'machine_name' => 'administrator', |
13 | - ); |
|
13 | + ); |
|
14 | 14 | |
15 | - $roles['community_member'] = array( |
|
15 | + $roles['community_member'] = array( |
|
16 | 16 | 'rid' => '1110965548', |
17 | 17 | 'name' => 'community member', |
18 | 18 | 'machine_name' => 'community_member', |
19 | - ); |
|
19 | + ); |
|
20 | 20 | |
21 | - $roles['content_editor'] = array( |
|
21 | + $roles['content_editor'] = array( |
|
22 | 22 | 'rid' => '2938987599', |
23 | 23 | 'name' => 'content editor', |
24 | 24 | 'machine_name' => 'content_editor', |
25 | - ); |
|
25 | + ); |
|
26 | 26 | |
27 | - $roles['verified_contributor'] = array( |
|
27 | + $roles['verified_contributor'] = array( |
|
28 | 28 | 'rid' => '933038561', |
29 | 29 | 'name' => 'verified contributor', |
30 | 30 | 'machine_name' => 'verified_contributor', |
31 | - ); |
|
31 | + ); |
|
32 | 32 | |
33 | - return $roles; |
|
33 | + return $roles; |
|
34 | 34 | } |
@@ -4,38 +4,38 @@ discard block |
||
4 | 4 | * Implementation of hook_ctools_plugin_api(). |
5 | 5 | */ |
6 | 6 | function boinc_standard_ctools_plugin_api() { |
7 | - list($module, $api) = func_get_args(); |
|
8 | - if ($module == "input_formats" && $api == "input_formats") { |
|
7 | + list($module, $api) = func_get_args(); |
|
8 | + if ($module == "input_formats" && $api == "input_formats") { |
|
9 | 9 | return array("version" => 1); |
10 | - } |
|
11 | - elseif ($module == "page_manager" && $api == "pages_default") { |
|
10 | + } |
|
11 | + elseif ($module == "page_manager" && $api == "pages_default") { |
|
12 | 12 | return array("version" => 1); |
13 | - } |
|
14 | - elseif ($module == "panels_mini" && $api == "panels_default") { |
|
13 | + } |
|
14 | + elseif ($module == "panels_mini" && $api == "panels_default") { |
|
15 | 15 | return array("version" => 1); |
16 | - } |
|
17 | - elseif ($module == "strongarm" && $api == "strongarm") { |
|
16 | + } |
|
17 | + elseif ($module == "strongarm" && $api == "strongarm") { |
|
18 | 18 | return array("version" => 1); |
19 | - } |
|
20 | - elseif ($module == "wysiwyg" && $api == "wysiwyg") { |
|
19 | + } |
|
20 | + elseif ($module == "wysiwyg" && $api == "wysiwyg") { |
|
21 | 21 | return array("version" => 2); |
22 | - } |
|
22 | + } |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
26 | 26 | * Implementation of hook_flag_default_flags(). |
27 | 27 | */ |
28 | 28 | function boinc_standard_flag_default_flags() { |
29 | - $flags = array(); |
|
30 | - // Exported flag: "Comment Abuse". |
|
31 | - $flags['abuse_comment'] = array( |
|
29 | + $flags = array(); |
|
30 | + // Exported flag: "Comment Abuse". |
|
31 | + $flags['abuse_comment'] = array( |
|
32 | 32 | 'content_type' => 'comment', |
33 | 33 | 'title' => 'Comment Abuse', |
34 | 34 | 'global' => FALSE, |
35 | 35 | 'types' => array( |
36 | - '0' => 'forum', |
|
37 | - '1' => 'news', |
|
38 | - '2' => 'team_forum', |
|
36 | + '0' => 'forum', |
|
37 | + '1' => 'news', |
|
38 | + '2' => 'team_forum', |
|
39 | 39 | ), |
40 | 40 | 'flag_short' => 'Report', |
41 | 41 | 'flag_long' => 'Report this content as offensive.', |
@@ -46,31 +46,31 @@ discard block |
||
46 | 46 | 'unflag_denied_text' => '', |
47 | 47 | 'link_type' => 'toggle', |
48 | 48 | 'roles' => array( |
49 | - 'flag' => array( |
|
49 | + 'flag' => array( |
|
50 | 50 | '0' => 2, |
51 | - ), |
|
52 | - 'unflag' => array( |
|
51 | + ), |
|
52 | + 'unflag' => array( |
|
53 | 53 | '0' => 2, |
54 | - ), |
|
54 | + ), |
|
55 | 55 | ), |
56 | 56 | 'weight' => 0, |
57 | 57 | 'access_author' => '', |
58 | 58 | 'show_on_comment' => 1, |
59 | 59 | 'module' => 'boinc_standard', |
60 | 60 | 'locked' => array( |
61 | - '0' => 'name', |
|
61 | + '0' => 'name', |
|
62 | 62 | ), |
63 | 63 | 'api_version' => 2, |
64 | - ); |
|
65 | - // Exported flag: "Node Abuse". |
|
66 | - $flags['abuse_node'] = array( |
|
64 | + ); |
|
65 | + // Exported flag: "Node Abuse". |
|
66 | + $flags['abuse_node'] = array( |
|
67 | 67 | 'content_type' => 'node', |
68 | 68 | 'title' => 'Node Abuse', |
69 | 69 | 'global' => FALSE, |
70 | 70 | 'types' => array( |
71 | - '0' => 'forum', |
|
72 | - '1' => 'profile', |
|
73 | - '2' => 'team_forum', |
|
71 | + '0' => 'forum', |
|
72 | + '1' => 'profile', |
|
73 | + '2' => 'team_forum', |
|
74 | 74 | ), |
75 | 75 | 'flag_short' => 'Report', |
76 | 76 | 'flag_long' => 'Report this content as offensive.', |
@@ -81,12 +81,12 @@ discard block |
||
81 | 81 | 'unflag_denied_text' => '', |
82 | 82 | 'link_type' => 'toggle', |
83 | 83 | 'roles' => array( |
84 | - 'flag' => array( |
|
84 | + 'flag' => array( |
|
85 | 85 | '0' => 2, |
86 | - ), |
|
87 | - 'unflag' => array( |
|
86 | + ), |
|
87 | + 'unflag' => array( |
|
88 | 88 | '0' => 2, |
89 | - ), |
|
89 | + ), |
|
90 | 90 | ), |
91 | 91 | 'weight' => 0, |
92 | 92 | 'show_on_page' => 1, |
@@ -96,12 +96,12 @@ discard block |
||
96 | 96 | 'i18n' => '0', |
97 | 97 | 'module' => 'boinc_standard', |
98 | 98 | 'locked' => array( |
99 | - '0' => 'name', |
|
99 | + '0' => 'name', |
|
100 | 100 | ), |
101 | 101 | 'api_version' => 2, |
102 | - ); |
|
103 | - // Exported flag: "User Abuse". |
|
104 | - $flags['abuse_user'] = array( |
|
102 | + ); |
|
103 | + // Exported flag: "User Abuse". |
|
104 | + $flags['abuse_user'] = array( |
|
105 | 105 | 'content_type' => 'user', |
106 | 106 | 'title' => 'User Abuse', |
107 | 107 | 'global' => '0', |
@@ -115,12 +115,12 @@ discard block |
||
115 | 115 | 'unflag_denied_text' => '', |
116 | 116 | 'link_type' => 'confirm', |
117 | 117 | 'roles' => array( |
118 | - 'flag' => array( |
|
118 | + 'flag' => array( |
|
119 | 119 | '0' => '2', |
120 | - ), |
|
121 | - 'unflag' => array( |
|
120 | + ), |
|
121 | + 'unflag' => array( |
|
122 | 122 | '0' => '2', |
123 | - ), |
|
123 | + ), |
|
124 | 124 | ), |
125 | 125 | 'weight' => 0, |
126 | 126 | 'show_on_profile' => TRUE, |
@@ -129,19 +129,19 @@ discard block |
||
129 | 129 | 'unflag_confirmation' => 'Are you sure you want to remove your report of this user?', |
130 | 130 | 'module' => 'boinc_standard', |
131 | 131 | 'locked' => array( |
132 | - '0' => 'name', |
|
132 | + '0' => 'name', |
|
133 | 133 | ), |
134 | 134 | 'api_version' => 2, |
135 | - ); |
|
136 | - // Exported flag: "Subscriptions". |
|
137 | - $flags['subscriptions'] = array( |
|
135 | + ); |
|
136 | + // Exported flag: "Subscriptions". |
|
137 | + $flags['subscriptions'] = array( |
|
138 | 138 | 'content_type' => 'node', |
139 | 139 | 'title' => 'Subscriptions', |
140 | 140 | 'global' => '0', |
141 | 141 | 'types' => array( |
142 | - '0' => 'forum', |
|
143 | - '1' => 'news', |
|
144 | - '2' => 'team_forum', |
|
142 | + '0' => 'forum', |
|
143 | + '1' => 'news', |
|
144 | + '2' => 'team_forum', |
|
145 | 145 | ), |
146 | 146 | 'flag_short' => 'subscribe', |
147 | 147 | 'flag_long' => 'Subscribe to this topic', |
@@ -152,12 +152,12 @@ discard block |
||
152 | 152 | 'unflag_denied_text' => '', |
153 | 153 | 'link_type' => 'toggle', |
154 | 154 | 'roles' => array( |
155 | - 'flag' => array( |
|
155 | + 'flag' => array( |
|
156 | 156 | '0' => 2, |
157 | - ), |
|
158 | - 'unflag' => array( |
|
157 | + ), |
|
158 | + 'unflag' => array( |
|
159 | 159 | '0' => 2, |
160 | - ), |
|
160 | + ), |
|
161 | 161 | ), |
162 | 162 | 'weight' => 0, |
163 | 163 | 'show_on_page' => 1, |
@@ -167,11 +167,11 @@ discard block |
||
167 | 167 | 'i18n' => '0', |
168 | 168 | 'module' => 'boinc_standard', |
169 | 169 | 'locked' => array( |
170 | - '0' => 'name', |
|
170 | + '0' => 'name', |
|
171 | 171 | ), |
172 | 172 | 'api_version' => 2, |
173 | - ); |
|
174 | - return $flags; |
|
173 | + ); |
|
174 | + return $flags; |
|
175 | 175 | |
176 | 176 | } |
177 | 177 | |
@@ -179,202 +179,202 @@ discard block |
||
179 | 179 | * Implementation of hook_node_info(). |
180 | 180 | */ |
181 | 181 | function boinc_standard_node_info() { |
182 | - $items = array( |
|
182 | + $items = array( |
|
183 | 183 | 'page' => array( |
184 | - 'name' => t('Page'), |
|
185 | - 'module' => 'features', |
|
186 | - 'description' => t('A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an "About us" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site\'s initial home page.'), |
|
187 | - 'has_title' => '1', |
|
188 | - 'title_label' => t('Title'), |
|
189 | - 'has_body' => '1', |
|
190 | - 'body_label' => t('Body'), |
|
191 | - 'min_word_count' => '0', |
|
192 | - 'help' => '', |
|
184 | + 'name' => t('Page'), |
|
185 | + 'module' => 'features', |
|
186 | + 'description' => t('A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an "About us" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site\'s initial home page.'), |
|
187 | + 'has_title' => '1', |
|
188 | + 'title_label' => t('Title'), |
|
189 | + 'has_body' => '1', |
|
190 | + 'body_label' => t('Body'), |
|
191 | + 'min_word_count' => '0', |
|
192 | + 'help' => '', |
|
193 | 193 | ), |
194 | - ); |
|
195 | - return $items; |
|
194 | + ); |
|
195 | + return $items; |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
199 | 199 | * Implementation of hook_rules_defaults(). |
200 | 200 | */ |
201 | 201 | function boinc_standard_rules_defaults() { |
202 | - return array( |
|
202 | + return array( |
|
203 | 203 | 'rules' => array( |
204 | - 'rules_offensive_comment_reported' => array( |
|
204 | + 'rules_offensive_comment_reported' => array( |
|
205 | 205 | '#type' => 'rule', |
206 | 206 | '#set' => 'event_flag_flagged_abuse_comment', |
207 | 207 | '#label' => 'Offensive comment reported', |
208 | 208 | '#active' => 1, |
209 | 209 | '#weight' => '0', |
210 | 210 | '#categories' => array( |
211 | - '0' => 'moderator notification', |
|
212 | - '1' => 'boinc_standard', |
|
211 | + '0' => 'moderator notification', |
|
212 | + '1' => 'boinc_standard', |
|
213 | 213 | ), |
214 | 214 | '#status' => 'default', |
215 | 215 | '#conditions' => array(), |
216 | 216 | '#actions' => array( |
217 | - '1' => array( |
|
217 | + '1' => array( |
|
218 | 218 | '#info' => array( |
219 | - 'label' => 'Notify moderators via email', |
|
220 | - 'module' => 'BOINC core', |
|
221 | - 'eval input' => array( |
|
219 | + 'label' => 'Notify moderators via email', |
|
220 | + 'module' => 'BOINC core', |
|
221 | + 'eval input' => array( |
|
222 | 222 | '0' => 'subject', |
223 | 223 | '1' => 'message', |
224 | 224 | '2' => 'from', |
225 | - ), |
|
225 | + ), |
|
226 | 226 | ), |
227 | 227 | '#name' => 'boinccore_rules_action_mail_to_moderators', |
228 | 228 | '#settings' => array( |
229 | - 'from' => '', |
|
230 | - 'subject' => 'Report of offensive [node:type] comment at [:global:site-name]', |
|
231 | - 'message' => '[flagging_user:display-name] has reported the following comment on [node:type] content as being offensive or inappropriate for the [:global:site-name] site: |
|
229 | + 'from' => '', |
|
230 | + 'subject' => 'Report of offensive [node:type] comment at [:global:site-name]', |
|
231 | + 'message' => '[flagging_user:display-name] has reported the following comment on [node:type] content as being offensive or inappropriate for the [:global:site-name] site: |
|
232 | 232 | |
233 | 233 | [:global:site-url]goto/comment/[comment:comment-cid] |
234 | 234 | |
235 | 235 | Total reports of this comment: [comment:flag-abuse-comment-count]', |
236 | - '#eval input' => array( |
|
236 | + '#eval input' => array( |
|
237 | 237 | 'token_rules_input_evaluator' => array( |
238 | - 'subject' => array( |
|
238 | + 'subject' => array( |
|
239 | 239 | '0' => 'node', |
240 | 240 | '1' => ':global', |
241 | - ), |
|
242 | - 'message' => array( |
|
241 | + ), |
|
242 | + 'message' => array( |
|
243 | 243 | '0' => 'flagging_user', |
244 | 244 | '1' => 'comment', |
245 | 245 | '2' => 'node', |
246 | 246 | '3' => ':global', |
247 | - ), |
|
248 | - 'from' => array( |
|
247 | + ), |
|
248 | + 'from' => array( |
|
249 | 249 | '0' => ':global', |
250 | - ), |
|
250 | + ), |
|
251 | + ), |
|
251 | 252 | ), |
252 | - ), |
|
253 | 253 | ), |
254 | 254 | '#type' => 'action', |
255 | 255 | '#weight' => 0, |
256 | - ), |
|
256 | + ), |
|
257 | 257 | ), |
258 | 258 | '#version' => 6003, |
259 | - ), |
|
260 | - 'rules_offensive_content_reported' => array( |
|
259 | + ), |
|
260 | + 'rules_offensive_content_reported' => array( |
|
261 | 261 | '#type' => 'rule', |
262 | 262 | '#set' => 'event_flag_flagged_abuse_node', |
263 | 263 | '#label' => 'Offensive content reported', |
264 | 264 | '#active' => 1, |
265 | 265 | '#weight' => '0', |
266 | 266 | '#categories' => array( |
267 | - '0' => 'moderator notification', |
|
268 | - 'boinc_standard' => 'boinc_standard', |
|
267 | + '0' => 'moderator notification', |
|
268 | + 'boinc_standard' => 'boinc_standard', |
|
269 | 269 | ), |
270 | 270 | '#status' => 'default', |
271 | 271 | '#conditions' => array(), |
272 | 272 | '#actions' => array( |
273 | - '1' => array( |
|
273 | + '1' => array( |
|
274 | 274 | '#type' => 'action', |
275 | 275 | '#settings' => array( |
276 | - 'from' => '', |
|
277 | - 'subject' => 'Report of offensive [node:type] content at [:global:site-name]', |
|
278 | - 'message' => '[flagging_user:display-name] has reported the following [node:type] content as being offensive or inappropriate for the [:global:site-name] site: |
|
276 | + 'from' => '', |
|
277 | + 'subject' => 'Report of offensive [node:type] content at [:global:site-name]', |
|
278 | + 'message' => '[flagging_user:display-name] has reported the following [node:type] content as being offensive or inappropriate for the [:global:site-name] site: |
|
279 | 279 | |
280 | 280 | [:global:site-url][node:node-path] |
281 | 281 | |
282 | 282 | Total reports of this content: [node:flag-abuse-node-count]', |
283 | - '#eval input' => array( |
|
283 | + '#eval input' => array( |
|
284 | 284 | 'token_rules_input_evaluator' => array( |
285 | - 'subject' => array( |
|
285 | + 'subject' => array( |
|
286 | 286 | '0' => 'node', |
287 | 287 | '1' => ':global', |
288 | - ), |
|
289 | - 'message' => array( |
|
288 | + ), |
|
289 | + 'message' => array( |
|
290 | 290 | '0' => 'flagging_user', |
291 | 291 | '1' => 'node', |
292 | 292 | '2' => ':global', |
293 | - ), |
|
294 | - 'from' => array( |
|
293 | + ), |
|
294 | + 'from' => array( |
|
295 | 295 | '0' => ':global', |
296 | - ), |
|
296 | + ), |
|
297 | + ), |
|
297 | 298 | ), |
298 | - ), |
|
299 | 299 | ), |
300 | 300 | '#name' => 'boinccore_rules_action_mail_to_moderators', |
301 | 301 | '#info' => array( |
302 | - 'label' => 'Notify moderators via email', |
|
303 | - 'module' => 'BOINC core', |
|
304 | - 'eval input' => array( |
|
302 | + 'label' => 'Notify moderators via email', |
|
303 | + 'module' => 'BOINC core', |
|
304 | + 'eval input' => array( |
|
305 | 305 | '0' => 'subject', |
306 | 306 | '1' => 'message', |
307 | 307 | '2' => 'from', |
308 | - ), |
|
308 | + ), |
|
309 | 309 | ), |
310 | 310 | '#weight' => 0, |
311 | - ), |
|
311 | + ), |
|
312 | 312 | ), |
313 | 313 | '#version' => 6003, |
314 | - ), |
|
315 | - 'rules_offensive_user_reported' => array( |
|
314 | + ), |
|
315 | + 'rules_offensive_user_reported' => array( |
|
316 | 316 | '#type' => 'rule', |
317 | 317 | '#set' => 'event_flag_flagged_abuse_user', |
318 | 318 | '#label' => 'Offensive user reported', |
319 | 319 | '#active' => 1, |
320 | 320 | '#weight' => '0', |
321 | 321 | '#categories' => array( |
322 | - '0' => 'moderator notification', |
|
323 | - 'boinc_standard' => 'boinc_standard', |
|
322 | + '0' => 'moderator notification', |
|
323 | + 'boinc_standard' => 'boinc_standard', |
|
324 | 324 | ), |
325 | 325 | '#status' => 'default', |
326 | 326 | '#conditions' => array(), |
327 | 327 | '#actions' => array( |
328 | - '1' => array( |
|
328 | + '1' => array( |
|
329 | 329 | '#type' => 'action', |
330 | 330 | '#settings' => array( |
331 | - 'from' => '', |
|
332 | - 'subject' => 'Report of offensive user at [:global:site-name]', |
|
333 | - 'message' => '[flagging_user:display-name] has reported [account:display-name] for inappropriate behavior: |
|
331 | + 'from' => '', |
|
332 | + 'subject' => 'Report of offensive user at [:global:site-name]', |
|
333 | + 'message' => '[flagging_user:display-name] has reported [account:display-name] for inappropriate behavior: |
|
334 | 334 | |
335 | 335 | [:global:site-url]account/[account:uid] |
336 | 336 | |
337 | 337 | Total current reports of this user: [account:flag-abuse-user-count]', |
338 | - '#eval input' => array( |
|
338 | + '#eval input' => array( |
|
339 | 339 | 'token_rules_input_evaluator' => array( |
340 | - 'subject' => array( |
|
340 | + 'subject' => array( |
|
341 | 341 | '0' => ':global', |
342 | - ), |
|
343 | - 'message' => array( |
|
342 | + ), |
|
343 | + 'message' => array( |
|
344 | 344 | '0' => 'flagging_user', |
345 | 345 | '1' => 'account', |
346 | 346 | '2' => ':global', |
347 | - ), |
|
348 | - 'from' => array( |
|
347 | + ), |
|
348 | + 'from' => array( |
|
349 | 349 | '0' => ':global', |
350 | - ), |
|
350 | + ), |
|
351 | + ), |
|
351 | 352 | ), |
352 | - ), |
|
353 | 353 | ), |
354 | 354 | '#name' => 'boinccore_rules_action_mail_to_moderators', |
355 | 355 | '#info' => array( |
356 | - 'label' => 'Notify moderators via email', |
|
357 | - 'module' => 'BOINC core', |
|
358 | - 'eval input' => array( |
|
356 | + 'label' => 'Notify moderators via email', |
|
357 | + 'module' => 'BOINC core', |
|
358 | + 'eval input' => array( |
|
359 | 359 | '0' => 'subject', |
360 | 360 | '1' => 'message', |
361 | 361 | '2' => 'from', |
362 | - ), |
|
362 | + ), |
|
363 | 363 | ), |
364 | 364 | '#weight' => 0, |
365 | - ), |
|
365 | + ), |
|
366 | 366 | ), |
367 | 367 | '#version' => 6003, |
368 | - ), |
|
368 | + ), |
|
369 | 369 | ), |
370 | - ); |
|
370 | + ); |
|
371 | 371 | } |
372 | 372 | |
373 | 373 | /** |
374 | 374 | * Implementation of hook_views_api(). |
375 | 375 | */ |
376 | 376 | function boinc_standard_views_api() { |
377 | - return array( |
|
377 | + return array( |
|
378 | 378 | 'api' => '2', |
379 | - ); |
|
379 | + ); |
|
380 | 380 | } |
@@ -7,17 +7,13 @@ |
||
7 | 7 | list($module, $api) = func_get_args(); |
8 | 8 | if ($module == "input_formats" && $api == "input_formats") { |
9 | 9 | return array("version" => 1); |
10 | - } |
|
11 | - elseif ($module == "page_manager" && $api == "pages_default") { |
|
10 | + } elseif ($module == "page_manager" && $api == "pages_default") { |
|
12 | 11 | return array("version" => 1); |
13 | - } |
|
14 | - elseif ($module == "panels_mini" && $api == "panels_default") { |
|
12 | + } elseif ($module == "panels_mini" && $api == "panels_default") { |
|
15 | 13 | return array("version" => 1); |
16 | - } |
|
17 | - elseif ($module == "strongarm" && $api == "strongarm") { |
|
14 | + } elseif ($module == "strongarm" && $api == "strongarm") { |
|
18 | 15 | return array("version" => 1); |
19 | - } |
|
20 | - elseif ($module == "wysiwyg" && $api == "wysiwyg") { |
|
16 | + } elseif ($module == "wysiwyg" && $api == "wysiwyg") { |
|
21 | 17 | return array("version" => 2); |
22 | 18 | } |
23 | 19 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | $flags['abuse_comment'] = array( |
32 | 32 | 'content_type' => 'comment', |
33 | 33 | 'title' => 'Comment Abuse', |
34 | - 'global' => FALSE, |
|
34 | + 'global' => false, |
|
35 | 35 | 'types' => array( |
36 | 36 | '0' => 'forum', |
37 | 37 | '1' => 'news', |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | $flags['abuse_node'] = array( |
67 | 67 | 'content_type' => 'node', |
68 | 68 | 'title' => 'Node Abuse', |
69 | - 'global' => FALSE, |
|
69 | + 'global' => false, |
|
70 | 70 | 'types' => array( |
71 | 71 | '0' => 'forum', |
72 | 72 | '1' => 'profile', |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | ), |
124 | 124 | ), |
125 | 125 | 'weight' => 0, |
126 | - 'show_on_profile' => TRUE, |
|
126 | + 'show_on_profile' => true, |
|
127 | 127 | 'access_uid' => '', |
128 | 128 | 'flag_confirmation' => 'Are you sure you want to report this user as offensive?', |
129 | 129 | 'unflag_confirmation' => 'Are you sure you want to remove your report of this user?', |
@@ -4,18 +4,18 @@ discard block |
||
4 | 4 | * Implementation of hook_menu_default_menu_links(). |
5 | 5 | */ |
6 | 6 | function boinc_standard_menu_default_menu_links() { |
7 | - $menu_links = array(); |
|
7 | + $menu_links = array(); |
|
8 | 8 | |
9 | - // Exported menu link: menu-footer-links:https://boinc.berkeley.edu/ |
|
10 | - $menu_links['menu-footer-links:https://boinc.berkeley.edu/'] = array( |
|
9 | + // Exported menu link: menu-footer-links:https://boinc.berkeley.edu/ |
|
10 | + $menu_links['menu-footer-links:https://boinc.berkeley.edu/'] = array( |
|
11 | 11 | 'menu_name' => 'menu-footer-links', |
12 | 12 | 'link_path' => 'https://boinc.berkeley.edu/', |
13 | 13 | 'router_path' => '', |
14 | 14 | 'link_title' => 'BOINC', |
15 | 15 | 'options' => array( |
16 | - 'attributes' => array( |
|
16 | + 'attributes' => array( |
|
17 | 17 | 'title' => '', |
18 | - ), |
|
18 | + ), |
|
19 | 19 | ), |
20 | 20 | 'module' => 'menu', |
21 | 21 | 'hidden' => '0', |
@@ -23,17 +23,17 @@ discard block |
||
23 | 23 | 'has_children' => '0', |
24 | 24 | 'expanded' => '0', |
25 | 25 | 'weight' => '10', |
26 | - ); |
|
27 | - // Exported menu link: primary-links:<front> |
|
28 | - $menu_links['primary-links:<front>'] = array( |
|
26 | + ); |
|
27 | + // Exported menu link: primary-links:<front> |
|
28 | + $menu_links['primary-links:<front>'] = array( |
|
29 | 29 | 'menu_name' => 'primary-links', |
30 | 30 | 'link_path' => '<front>', |
31 | 31 | 'router_path' => '', |
32 | 32 | 'link_title' => 'Home', |
33 | 33 | 'options' => array( |
34 | - 'attributes' => array( |
|
34 | + 'attributes' => array( |
|
35 | 35 | 'title' => '', |
36 | - ), |
|
36 | + ), |
|
37 | 37 | ), |
38 | 38 | 'module' => 'menu', |
39 | 39 | 'hidden' => '0', |
@@ -41,17 +41,17 @@ discard block |
||
41 | 41 | 'has_children' => '0', |
42 | 42 | 'expanded' => '0', |
43 | 43 | 'weight' => '-50', |
44 | - ); |
|
45 | - // Exported menu link: primary-links:dashboard |
|
46 | - $menu_links['primary-links:dashboard'] = array( |
|
44 | + ); |
|
45 | + // Exported menu link: primary-links:dashboard |
|
46 | + $menu_links['primary-links:dashboard'] = array( |
|
47 | 47 | 'menu_name' => 'primary-links', |
48 | 48 | 'link_path' => 'dashboard', |
49 | 49 | 'router_path' => 'dashboard', |
50 | 50 | 'link_title' => 'Dashboard', |
51 | 51 | 'options' => array( |
52 | - 'attributes' => array( |
|
52 | + 'attributes' => array( |
|
53 | 53 | 'title' => '', |
54 | - ), |
|
54 | + ), |
|
55 | 55 | ), |
56 | 56 | 'module' => 'menu', |
57 | 57 | 'hidden' => '0', |
@@ -60,17 +60,17 @@ discard block |
||
60 | 60 | 'expanded' => '0', |
61 | 61 | 'weight' => '-50', |
62 | 62 | 'parent_path' => 'dashboard', |
63 | - ); |
|
64 | - // Exported menu link: primary-links:user/me/edit |
|
65 | - $menu_links['primary-links:user/me/edit'] = array( |
|
63 | + ); |
|
64 | + // Exported menu link: primary-links:user/me/edit |
|
65 | + $menu_links['primary-links:user/me/edit'] = array( |
|
66 | 66 | 'menu_name' => 'primary-links', |
67 | 67 | 'link_path' => 'user/me/edit', |
68 | 68 | 'router_path' => 'user/%/edit', |
69 | 69 | 'link_title' => 'Credentials', |
70 | 70 | 'options' => array( |
71 | - 'attributes' => array( |
|
71 | + 'attributes' => array( |
|
72 | 72 | 'title' => '', |
73 | - ), |
|
73 | + ), |
|
74 | 74 | ), |
75 | 75 | 'module' => 'menu', |
76 | 76 | 'hidden' => '0', |
@@ -79,14 +79,14 @@ discard block |
||
79 | 79 | 'expanded' => '0', |
80 | 80 | 'weight' => '-48', |
81 | 81 | 'parent_path' => 'dashboard', |
82 | - ); |
|
83 | - // Translatables |
|
84 | - // Included for use with string extractors like potx. |
|
85 | - t('BOINC'); |
|
86 | - t('Credentials'); |
|
87 | - t('Dashboard'); |
|
88 | - t('Home'); |
|
82 | + ); |
|
83 | + // Translatables |
|
84 | + // Included for use with string extractors like potx. |
|
85 | + t('BOINC'); |
|
86 | + t('Credentials'); |
|
87 | + t('Dashboard'); |
|
88 | + t('Home'); |
|
89 | 89 | |
90 | 90 | |
91 | - return $menu_links; |
|
91 | + return $menu_links; |
|
92 | 92 | } |
@@ -4,34 +4,34 @@ discard block |
||
4 | 4 | * Implementation of hook_default_panels_mini(). |
5 | 5 | */ |
6 | 6 | function boinc_standard_default_panels_mini() { |
7 | - $export = array(); |
|
7 | + $export = array(); |
|
8 | 8 | |
9 | - $mini = new stdClass; |
|
10 | - $mini->disabled = FALSE; /* Edit this to true to make a default mini disabled initially */ |
|
11 | - $mini->api_version = 1; |
|
12 | - $mini->name = 'dashboard_tables'; |
|
13 | - $mini->category = 'BOINC'; |
|
14 | - $mini->admin_title = 'Dashboard tables'; |
|
15 | - $mini->admin_description = 'Tables of computers and projects for a user'; |
|
16 | - $mini->requiredcontexts = array(); |
|
17 | - $mini->contexts = array(); |
|
18 | - $mini->relationships = array(); |
|
19 | - $display = new panels_display; |
|
20 | - $display->layout = 'twocol_stacked'; |
|
21 | - $display->layout_settings = array(); |
|
22 | - $display->panel_settings = array( |
|
9 | + $mini = new stdClass; |
|
10 | + $mini->disabled = FALSE; /* Edit this to true to make a default mini disabled initially */ |
|
11 | + $mini->api_version = 1; |
|
12 | + $mini->name = 'dashboard_tables'; |
|
13 | + $mini->category = 'BOINC'; |
|
14 | + $mini->admin_title = 'Dashboard tables'; |
|
15 | + $mini->admin_description = 'Tables of computers and projects for a user'; |
|
16 | + $mini->requiredcontexts = array(); |
|
17 | + $mini->contexts = array(); |
|
18 | + $mini->relationships = array(); |
|
19 | + $display = new panels_display; |
|
20 | + $display->layout = 'twocol_stacked'; |
|
21 | + $display->layout_settings = array(); |
|
22 | + $display->panel_settings = array( |
|
23 | 23 | 'style_settings' => array( |
24 | - 'default' => NULL, |
|
25 | - 'left' => NULL, |
|
26 | - 'right' => NULL, |
|
27 | - 'top' => NULL, |
|
28 | - 'bottom' => NULL, |
|
24 | + 'default' => NULL, |
|
25 | + 'left' => NULL, |
|
26 | + 'right' => NULL, |
|
27 | + 'top' => NULL, |
|
28 | + 'bottom' => NULL, |
|
29 | 29 | ), |
30 | - ); |
|
31 | - $display->cache = array(); |
|
32 | - $display->title = ''; |
|
33 | - $display->content = array(); |
|
34 | - $display->panels = array(); |
|
30 | + ); |
|
31 | + $display->cache = array(); |
|
32 | + $display->title = ''; |
|
33 | + $display->content = array(); |
|
34 | + $display->panels = array(); |
|
35 | 35 | $pane = new stdClass; |
36 | 36 | $pane->pid = 'new-1'; |
37 | 37 | $pane->panel = 'left'; |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $pane->configuration = array(); |
43 | 43 | $pane->cache = array(); |
44 | 44 | $pane->style = array( |
45 | - 'settings' => NULL, |
|
45 | + 'settings' => NULL, |
|
46 | 46 | ); |
47 | 47 | $pane->css = array(); |
48 | 48 | $pane->extras = array(); |
@@ -57,12 +57,12 @@ discard block |
||
57 | 57 | $pane->shown = TRUE; |
58 | 58 | $pane->access = array(); |
59 | 59 | $pane->configuration = array( |
60 | - 'override_title' => 0, |
|
61 | - 'override_title_text' => '', |
|
60 | + 'override_title' => 0, |
|
61 | + 'override_title_text' => '', |
|
62 | 62 | ); |
63 | 63 | $pane->cache = array(); |
64 | 64 | $pane->style = array( |
65 | - 'settings' => NULL, |
|
65 | + 'settings' => NULL, |
|
66 | 66 | ); |
67 | 67 | $pane->css = array(); |
68 | 68 | $pane->extras = array(); |
@@ -79,17 +79,17 @@ discard block |
||
79 | 79 | $pane->configuration = array(); |
80 | 80 | $pane->cache = array(); |
81 | 81 | $pane->style = array( |
82 | - 'settings' => NULL, |
|
82 | + 'settings' => NULL, |
|
83 | 83 | ); |
84 | 84 | $pane->css = array(); |
85 | 85 | $pane->extras = array(); |
86 | 86 | $pane->position = 0; |
87 | 87 | $display->content['new-3'] = $pane; |
88 | 88 | $display->panels['top'][0] = 'new-3'; |
89 | - $display->hide_title = PANELS_TITLE_NONE; |
|
90 | - $display->title_pane = '0'; |
|
91 | - $mini->display = $display; |
|
92 | - $export['dashboard_tables'] = $mini; |
|
89 | + $display->hide_title = PANELS_TITLE_NONE; |
|
90 | + $display->title_pane = '0'; |
|
91 | + $mini->display = $display; |
|
92 | + $export['dashboard_tables'] = $mini; |
|
93 | 93 | |
94 | - return $export; |
|
94 | + return $export; |
|
95 | 95 | } |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | $export = array(); |
8 | 8 | |
9 | 9 | $mini = new stdClass; |
10 | - $mini->disabled = FALSE; /* Edit this to true to make a default mini disabled initially */ |
|
10 | + $mini->disabled = false; /* Edit this to true to make a default mini disabled initially */ |
|
11 | 11 | $mini->api_version = 1; |
12 | 12 | $mini->name = 'dashboard_tables'; |
13 | 13 | $mini->category = 'BOINC'; |
@@ -21,11 +21,11 @@ discard block |
||
21 | 21 | $display->layout_settings = array(); |
22 | 22 | $display->panel_settings = array( |
23 | 23 | 'style_settings' => array( |
24 | - 'default' => NULL, |
|
25 | - 'left' => NULL, |
|
26 | - 'right' => NULL, |
|
27 | - 'top' => NULL, |
|
28 | - 'bottom' => NULL, |
|
24 | + 'default' => null, |
|
25 | + 'left' => null, |
|
26 | + 'right' => null, |
|
27 | + 'top' => null, |
|
28 | + 'bottom' => null, |
|
29 | 29 | ), |
30 | 30 | ); |
31 | 31 | $display->cache = array(); |
@@ -37,12 +37,12 @@ discard block |
||
37 | 37 | $pane->panel = 'left'; |
38 | 38 | $pane->type = 'views_panes'; |
39 | 39 | $pane->subtype = 'boinc_account_computers-panel_pane_1'; |
40 | - $pane->shown = TRUE; |
|
40 | + $pane->shown = true; |
|
41 | 41 | $pane->access = array(); |
42 | 42 | $pane->configuration = array(); |
43 | 43 | $pane->cache = array(); |
44 | 44 | $pane->style = array( |
45 | - 'settings' => NULL, |
|
45 | + 'settings' => null, |
|
46 | 46 | ); |
47 | 47 | $pane->css = array(); |
48 | 48 | $pane->extras = array(); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | $pane->panel = 'right'; |
55 | 55 | $pane->type = 'panels_mini'; |
56 | 56 | $pane->subtype = 'user_project_list'; |
57 | - $pane->shown = TRUE; |
|
57 | + $pane->shown = true; |
|
58 | 58 | $pane->access = array(); |
59 | 59 | $pane->configuration = array( |
60 | 60 | 'override_title' => 0, |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | ); |
63 | 63 | $pane->cache = array(); |
64 | 64 | $pane->style = array( |
65 | - 'settings' => NULL, |
|
65 | + 'settings' => null, |
|
66 | 66 | ); |
67 | 67 | $pane->css = array(); |
68 | 68 | $pane->extras = array(); |
@@ -74,12 +74,12 @@ discard block |
||
74 | 74 | $pane->panel = 'top'; |
75 | 75 | $pane->type = 'views_panes'; |
76 | 76 | $pane->subtype = 'boinc_account_stats-panel_pane_1'; |
77 | - $pane->shown = TRUE; |
|
77 | + $pane->shown = true; |
|
78 | 78 | $pane->access = array(); |
79 | 79 | $pane->configuration = array(); |
80 | 80 | $pane->cache = array(); |
81 | 81 | $pane->style = array( |
82 | - 'settings' => NULL, |
|
82 | + 'settings' => null, |
|
83 | 83 | ); |
84 | 84 | $pane->css = array(); |
85 | 85 | $pane->extras = array(); |
@@ -4,111 +4,111 @@ discard block |
||
4 | 4 | * Implementation of hook_default_page_manager_pages(). |
5 | 5 | */ |
6 | 6 | function boinc_standard_default_page_manager_pages() { |
7 | - $page = new stdClass; |
|
8 | - $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
9 | - $page->api_version = 1; |
|
10 | - $page->name = 'about_us'; |
|
11 | - $page->task = 'page'; |
|
12 | - $page->admin_title = 'About Us'; |
|
13 | - $page->admin_description = ''; |
|
14 | - $page->path = 'about.fail'; |
|
15 | - $page->access = array( |
|
7 | + $page = new stdClass; |
|
8 | + $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
9 | + $page->api_version = 1; |
|
10 | + $page->name = 'about_us'; |
|
11 | + $page->task = 'page'; |
|
12 | + $page->admin_title = 'About Us'; |
|
13 | + $page->admin_description = ''; |
|
14 | + $page->path = 'about.fail'; |
|
15 | + $page->access = array( |
|
16 | 16 | 'type' => 'none', |
17 | 17 | 'settings' => NULL, |
18 | - ); |
|
19 | - $page->menu = array(); |
|
20 | - $page->arguments = array(); |
|
21 | - $page->conf = array(); |
|
22 | - $page->default_handlers = array(); |
|
23 | - $pages['about_us'] = $page; |
|
18 | + ); |
|
19 | + $page->menu = array(); |
|
20 | + $page->arguments = array(); |
|
21 | + $page->conf = array(); |
|
22 | + $page->default_handlers = array(); |
|
23 | + $pages['about_us'] = $page; |
|
24 | 24 | |
25 | - $page = new stdClass; |
|
26 | - $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
27 | - $page->api_version = 1; |
|
28 | - $page->name = 'account_dashboard'; |
|
29 | - $page->task = 'page'; |
|
30 | - $page->admin_title = 'Dashboard'; |
|
31 | - $page->admin_description = ''; |
|
32 | - $page->path = 'dashboard'; |
|
33 | - $page->access = array( |
|
25 | + $page = new stdClass; |
|
26 | + $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
27 | + $page->api_version = 1; |
|
28 | + $page->name = 'account_dashboard'; |
|
29 | + $page->task = 'page'; |
|
30 | + $page->admin_title = 'Dashboard'; |
|
31 | + $page->admin_description = ''; |
|
32 | + $page->path = 'dashboard'; |
|
33 | + $page->access = array( |
|
34 | 34 | 'plugins' => array( |
35 | - 1 => array( |
|
35 | + 1 => array( |
|
36 | 36 | 'name' => 'role', |
37 | 37 | 'settings' => array( |
38 | - 'rids' => array( |
|
38 | + 'rids' => array( |
|
39 | 39 | 0 => 2, |
40 | - ), |
|
40 | + ), |
|
41 | 41 | ), |
42 | 42 | 'context' => 'logged-in-user', |
43 | 43 | 'not' => FALSE, |
44 | - ), |
|
44 | + ), |
|
45 | 45 | ), |
46 | 46 | 'logic' => 'and', |
47 | 47 | 'type' => 'none', |
48 | 48 | 'settings' => NULL, |
49 | - ); |
|
50 | - $page->menu = array( |
|
49 | + ); |
|
50 | + $page->menu = array( |
|
51 | 51 | 'type' => 'none', |
52 | 52 | 'title' => 'Dashboard', |
53 | 53 | 'name' => 'navigation', |
54 | 54 | 'weight' => '0', |
55 | 55 | 'parent' => array( |
56 | - 'type' => 'normal', |
|
57 | - 'title' => 'Account', |
|
58 | - 'name' => 'navigation', |
|
59 | - 'weight' => '0', |
|
56 | + 'type' => 'normal', |
|
57 | + 'title' => 'Account', |
|
58 | + 'name' => 'navigation', |
|
59 | + 'weight' => '0', |
|
60 | 60 | ), |
61 | - ); |
|
62 | - $page->arguments = array(); |
|
63 | - $page->conf = array(); |
|
64 | - $page->default_handlers = array(); |
|
65 | - $handler = new stdClass; |
|
66 | - $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */ |
|
67 | - $handler->api_version = 1; |
|
68 | - $handler->name = 'page_account_dashboard_panel_context'; |
|
69 | - $handler->task = 'page'; |
|
70 | - $handler->subtask = 'account_dashboard'; |
|
71 | - $handler->handler = 'panel_context'; |
|
72 | - $handler->weight = 0; |
|
73 | - $handler->conf = array( |
|
61 | + ); |
|
62 | + $page->arguments = array(); |
|
63 | + $page->conf = array(); |
|
64 | + $page->default_handlers = array(); |
|
65 | + $handler = new stdClass; |
|
66 | + $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */ |
|
67 | + $handler->api_version = 1; |
|
68 | + $handler->name = 'page_account_dashboard_panel_context'; |
|
69 | + $handler->task = 'page'; |
|
70 | + $handler->subtask = 'account_dashboard'; |
|
71 | + $handler->handler = 'panel_context'; |
|
72 | + $handler->weight = 0; |
|
73 | + $handler->conf = array( |
|
74 | 74 | 'title' => 'Landing page', |
75 | 75 | 'no_blocks' => FALSE, |
76 | 76 | 'pipeline' => 'ipe', |
77 | 77 | 'css_id' => '', |
78 | 78 | 'css' => '', |
79 | 79 | 'contexts' => array( |
80 | - 0 => array( |
|
80 | + 0 => array( |
|
81 | 81 | 'name' => 'user', |
82 | 82 | 'id' => 1, |
83 | 83 | 'identifier' => 'User', |
84 | 84 | 'keyword' => 'user', |
85 | 85 | 'context_settings' => array( |
86 | - 'type' => 'current', |
|
87 | - 'user' => '', |
|
88 | - 'uid' => '', |
|
86 | + 'type' => 'current', |
|
87 | + 'user' => '', |
|
88 | + 'uid' => '', |
|
89 | + ), |
|
89 | 90 | ), |
90 | - ), |
|
91 | 91 | ), |
92 | 92 | 'relationships' => array(), |
93 | 93 | 'access' => array( |
94 | - 'plugins' => array(), |
|
95 | - 'logic' => 'and', |
|
94 | + 'plugins' => array(), |
|
95 | + 'logic' => 'and', |
|
96 | 96 | ), |
97 | - ); |
|
98 | - $display = new panels_display; |
|
99 | - $display->layout = 'one_sidebar_second'; |
|
100 | - $display->layout_settings = array(); |
|
101 | - $display->panel_settings = array( |
|
97 | + ); |
|
98 | + $display = new panels_display; |
|
99 | + $display->layout = 'one_sidebar_second'; |
|
100 | + $display->layout_settings = array(); |
|
101 | + $display->panel_settings = array( |
|
102 | 102 | 'style_settings' => array( |
103 | - 'default' => NULL, |
|
104 | - 'content' => NULL, |
|
105 | - 'sidebar_first' => NULL, |
|
103 | + 'default' => NULL, |
|
104 | + 'content' => NULL, |
|
105 | + 'sidebar_first' => NULL, |
|
106 | 106 | ), |
107 | - ); |
|
108 | - $display->cache = array(); |
|
109 | - $display->title = ''; |
|
110 | - $display->content = array(); |
|
111 | - $display->panels = array(); |
|
107 | + ); |
|
108 | + $display->cache = array(); |
|
109 | + $display->title = ''; |
|
110 | + $display->content = array(); |
|
111 | + $display->panels = array(); |
|
112 | 112 | $pane = new stdClass; |
113 | 113 | $pane->pid = 'new-1'; |
114 | 114 | $pane->panel = 'content'; |
@@ -117,16 +117,16 @@ discard block |
||
117 | 117 | $pane->shown = TRUE; |
118 | 118 | $pane->access = array(); |
119 | 119 | $pane->configuration = array( |
120 | - 'override_title' => 1, |
|
121 | - 'override_title_text' => 'My stats', |
|
120 | + 'override_title' => 1, |
|
121 | + 'override_title_text' => 'My stats', |
|
122 | 122 | ); |
123 | 123 | $pane->cache = array(); |
124 | 124 | $pane->style = array( |
125 | - 'settings' => NULL, |
|
125 | + 'settings' => NULL, |
|
126 | 126 | ); |
127 | 127 | $pane->css = array( |
128 | - 'css_id' => '', |
|
129 | - 'css_class' => 'panel-primary container shadow', |
|
128 | + 'css_id' => '', |
|
129 | + 'css_class' => 'panel-primary container shadow', |
|
130 | 130 | ); |
131 | 131 | $pane->extras = array(); |
132 | 132 | $pane->position = 0; |
@@ -142,11 +142,11 @@ discard block |
||
142 | 142 | $pane->configuration = array(); |
143 | 143 | $pane->cache = array(); |
144 | 144 | $pane->style = array( |
145 | - 'settings' => NULL, |
|
145 | + 'settings' => NULL, |
|
146 | 146 | ); |
147 | 147 | $pane->css = array( |
148 | - 'css_id' => '', |
|
149 | - 'css_class' => 'panel-primary container shadow', |
|
148 | + 'css_id' => '', |
|
149 | + 'css_class' => 'panel-primary container shadow', |
|
150 | 150 | ); |
151 | 151 | $pane->extras = array(); |
152 | 152 | $pane->position = 1; |
@@ -159,31 +159,31 @@ discard block |
||
159 | 159 | $pane->subtype = 'custom'; |
160 | 160 | $pane->shown = TRUE; |
161 | 161 | $pane->access = array( |
162 | - 'plugins' => array( |
|
162 | + 'plugins' => array( |
|
163 | 163 | 1 => array( |
164 | - 'name' => 'perm', |
|
165 | - 'settings' => array( |
|
164 | + 'name' => 'perm', |
|
165 | + 'settings' => array( |
|
166 | 166 | 'perm' => 'edit any profile content', |
167 | - ), |
|
168 | - 'context' => 'context_user_1', |
|
169 | - 'not' => FALSE, |
|
167 | + ), |
|
168 | + 'context' => 'context_user_1', |
|
169 | + 'not' => FALSE, |
|
170 | + ), |
|
170 | 171 | ), |
171 | - ), |
|
172 | 172 | ); |
173 | 173 | $pane->configuration = array( |
174 | - 'admin_title' => 'Moderation overview', |
|
175 | - 'title' => '', |
|
176 | - 'body' => '<?php print boinccore_moderation_overview_panel(); ?>', |
|
177 | - 'format' => '3', |
|
178 | - 'substitute' => 1, |
|
174 | + 'admin_title' => 'Moderation overview', |
|
175 | + 'title' => '', |
|
176 | + 'body' => '<?php print boinccore_moderation_overview_panel(); ?>', |
|
177 | + 'format' => '3', |
|
178 | + 'substitute' => 1, |
|
179 | 179 | ); |
180 | 180 | $pane->cache = array(); |
181 | 181 | $pane->style = array( |
182 | - 'settings' => NULL, |
|
182 | + 'settings' => NULL, |
|
183 | 183 | ); |
184 | 184 | $pane->css = array( |
185 | - 'css_id' => '', |
|
186 | - 'css_class' => 'panel-secondary container shadow', |
|
185 | + 'css_id' => '', |
|
186 | + 'css_class' => 'panel-secondary container shadow', |
|
187 | 187 | ); |
188 | 188 | $pane->extras = array(); |
189 | 189 | $pane->position = 0; |
@@ -197,16 +197,16 @@ discard block |
||
197 | 197 | $pane->shown = TRUE; |
198 | 198 | $pane->access = array(); |
199 | 199 | $pane->configuration = array( |
200 | - 'override_title' => 0, |
|
201 | - 'override_title_text' => '', |
|
200 | + 'override_title' => 0, |
|
201 | + 'override_title_text' => '', |
|
202 | 202 | ); |
203 | 203 | $pane->cache = array(); |
204 | 204 | $pane->style = array( |
205 | - 'settings' => NULL, |
|
205 | + 'settings' => NULL, |
|
206 | 206 | ); |
207 | 207 | $pane->css = array( |
208 | - 'css_id' => '', |
|
209 | - 'css_class' => 'panel-secondary container shadow', |
|
208 | + 'css_id' => '', |
|
209 | + 'css_class' => 'panel-secondary container shadow', |
|
210 | 210 | ); |
211 | 211 | $pane->extras = array(); |
212 | 212 | $pane->position = 1; |
@@ -220,23 +220,23 @@ discard block |
||
220 | 220 | $pane->shown = TRUE; |
221 | 221 | $pane->access = array(); |
222 | 222 | $pane->configuration = array( |
223 | - 'admin_title' => 'Team summary', |
|
224 | - 'title' => '', |
|
225 | - 'body' => '<?php |
|
223 | + 'admin_title' => 'Team summary', |
|
224 | + 'title' => '', |
|
225 | + 'body' => '<?php |
|
226 | 226 | if (module_exists(\'boincteam\')) { |
227 | 227 | echo boincteam_dashboard_panel(); |
228 | 228 | } |
229 | 229 | ?>', |
230 | - 'format' => '3', |
|
231 | - 'substitute' => 1, |
|
230 | + 'format' => '3', |
|
231 | + 'substitute' => 1, |
|
232 | 232 | ); |
233 | 233 | $pane->cache = array(); |
234 | 234 | $pane->style = array( |
235 | - 'settings' => NULL, |
|
235 | + 'settings' => NULL, |
|
236 | 236 | ); |
237 | 237 | $pane->css = array( |
238 | - 'css_id' => 'team-dashboard-pane', |
|
239 | - 'css_class' => 'panel-secondary container shadow', |
|
238 | + 'css_id' => 'team-dashboard-pane', |
|
239 | + 'css_class' => 'panel-secondary container shadow', |
|
240 | 240 | ); |
241 | 241 | $pane->extras = array(); |
242 | 242 | $pane->position = 2; |
@@ -250,9 +250,9 @@ discard block |
||
250 | 250 | $pane->shown = TRUE; |
251 | 251 | $pane->access = array(); |
252 | 252 | $pane->configuration = array( |
253 | - 'admin_title' => 'User activity summary', |
|
254 | - 'title' => '', |
|
255 | - 'body' => '<?php |
|
253 | + 'admin_title' => 'User activity summary', |
|
254 | + 'title' => '', |
|
255 | + 'body' => '<?php |
|
256 | 256 | |
257 | 257 | global $user; |
258 | 258 | $uid = $user->uid; |
@@ -261,16 +261,16 @@ discard block |
||
261 | 261 | echo \'<div class="item-count-wrapper"><div class="item-count">\' . $account->post_count . \'</div></div>\'; |
262 | 262 | |
263 | 263 | ?>', |
264 | - 'format' => '3', |
|
265 | - 'substitute' => 1, |
|
264 | + 'format' => '3', |
|
265 | + 'substitute' => 1, |
|
266 | 266 | ); |
267 | 267 | $pane->cache = array(); |
268 | 268 | $pane->style = array( |
269 | - 'settings' => NULL, |
|
269 | + 'settings' => NULL, |
|
270 | 270 | ); |
271 | 271 | $pane->css = array( |
272 | - 'css_id' => '', |
|
273 | - 'css_class' => 'panel-secondary container shadow', |
|
272 | + 'css_id' => '', |
|
273 | + 'css_class' => 'panel-secondary container shadow', |
|
274 | 274 | ); |
275 | 275 | $pane->extras = array(); |
276 | 276 | $pane->position = 3; |
@@ -284,74 +284,74 @@ discard block |
||
284 | 284 | $pane->shown = TRUE; |
285 | 285 | $pane->access = array(); |
286 | 286 | $pane->configuration = array( |
287 | - 'override_pager_settings' => 0, |
|
288 | - 'use_pager' => 0, |
|
289 | - 'nodes_per_page' => '6', |
|
290 | - 'pager_id' => '', |
|
291 | - 'offset' => '0', |
|
292 | - 'more_link' => 1, |
|
293 | - 'feed_icons' => 0, |
|
294 | - 'panel_args' => 0, |
|
295 | - 'link_to_view' => 0, |
|
296 | - 'args' => '', |
|
297 | - 'url' => '', |
|
298 | - 'display' => 'block_1', |
|
299 | - 'context' => array( |
|
287 | + 'override_pager_settings' => 0, |
|
288 | + 'use_pager' => 0, |
|
289 | + 'nodes_per_page' => '6', |
|
290 | + 'pager_id' => '', |
|
291 | + 'offset' => '0', |
|
292 | + 'more_link' => 1, |
|
293 | + 'feed_icons' => 0, |
|
294 | + 'panel_args' => 0, |
|
295 | + 'link_to_view' => 0, |
|
296 | + 'args' => '', |
|
297 | + 'url' => '', |
|
298 | + 'display' => 'block_1', |
|
299 | + 'context' => array( |
|
300 | 300 | 0 => 'context_user_1.uid', |
301 | - ), |
|
302 | - 'override_title' => 0, |
|
303 | - 'override_title_text' => '', |
|
301 | + ), |
|
302 | + 'override_title' => 0, |
|
303 | + 'override_title_text' => '', |
|
304 | 304 | ); |
305 | 305 | $pane->cache = array(); |
306 | 306 | $pane->style = array( |
307 | - 'settings' => NULL, |
|
307 | + 'settings' => NULL, |
|
308 | 308 | ); |
309 | 309 | $pane->css = array( |
310 | - 'css_id' => '', |
|
311 | - 'css_class' => 'panel-secondary container shadow', |
|
310 | + 'css_id' => '', |
|
311 | + 'css_class' => 'panel-secondary container shadow', |
|
312 | 312 | ); |
313 | 313 | $pane->extras = array(); |
314 | 314 | $pane->position = 4; |
315 | 315 | $display->content['new-7'] = $pane; |
316 | 316 | $display->panels['sidebar_first'][4] = 'new-7'; |
317 | - $display->hide_title = PANELS_TITLE_NONE; |
|
318 | - $display->title_pane = '0'; |
|
319 | - $handler->conf['display'] = $display; |
|
320 | - $page->default_handlers[$handler->name] = $handler; |
|
321 | - $pages['account_dashboard'] = $page; |
|
317 | + $display->hide_title = PANELS_TITLE_NONE; |
|
318 | + $display->title_pane = '0'; |
|
319 | + $handler->conf['display'] = $display; |
|
320 | + $page->default_handlers[$handler->name] = $handler; |
|
321 | + $pages['account_dashboard'] = $page; |
|
322 | 322 | |
323 | - $page = new stdClass; |
|
324 | - $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
325 | - $page->api_version = 1; |
|
326 | - $page->name = 'boinc_user'; |
|
327 | - $page->task = 'page'; |
|
328 | - $page->admin_title = 'User profile template (boinc)'; |
|
329 | - $page->admin_description = ''; |
|
330 | - $page->path = 'account/%user'; |
|
331 | - $page->access = array( |
|
323 | + $page = new stdClass; |
|
324 | + $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
325 | + $page->api_version = 1; |
|
326 | + $page->name = 'boinc_user'; |
|
327 | + $page->task = 'page'; |
|
328 | + $page->admin_title = 'User profile template (boinc)'; |
|
329 | + $page->admin_description = ''; |
|
330 | + $page->path = 'account/%user'; |
|
331 | + $page->access = array( |
|
332 | 332 | 'type' => 'none', |
333 | 333 | 'settings' => NULL, |
334 | - ); |
|
335 | - $page->menu = array(); |
|
336 | - $page->arguments = array( |
|
334 | + ); |
|
335 | + $page->menu = array(); |
|
336 | + $page->arguments = array( |
|
337 | 337 | 'user' => array( |
338 | - 'id' => 1, |
|
339 | - 'identifier' => 'User: ID', |
|
340 | - 'name' => 'uid', |
|
341 | - 'settings' => array(), |
|
338 | + 'id' => 1, |
|
339 | + 'identifier' => 'User: ID', |
|
340 | + 'name' => 'uid', |
|
341 | + 'settings' => array(), |
|
342 | 342 | ), |
343 | - ); |
|
344 | - $page->conf = array(); |
|
345 | - $page->default_handlers = array(); |
|
346 | - $handler = new stdClass; |
|
347 | - $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */ |
|
348 | - $handler->api_version = 1; |
|
349 | - $handler->name = 'page_boinc_user_panel_context_2'; |
|
350 | - $handler->task = 'page'; |
|
351 | - $handler->subtask = 'boinc_user'; |
|
352 | - $handler->handler = 'panel_context'; |
|
353 | - $handler->weight = 1; |
|
354 | - $handler->conf = array( |
|
343 | + ); |
|
344 | + $page->conf = array(); |
|
345 | + $page->default_handlers = array(); |
|
346 | + $handler = new stdClass; |
|
347 | + $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */ |
|
348 | + $handler->api_version = 1; |
|
349 | + $handler->name = 'page_boinc_user_panel_context_2'; |
|
350 | + $handler->task = 'page'; |
|
351 | + $handler->subtask = 'boinc_user'; |
|
352 | + $handler->handler = 'panel_context'; |
|
353 | + $handler->weight = 1; |
|
354 | + $handler->conf = array( |
|
355 | 355 | 'title' => 'Panel', |
356 | 356 | 'no_blocks' => 0, |
357 | 357 | 'pipeline' => 'standard', |
@@ -359,21 +359,21 @@ discard block |
||
359 | 359 | 'css' => '', |
360 | 360 | 'contexts' => array(), |
361 | 361 | 'relationships' => array(), |
362 | - ); |
|
363 | - $display = new panels_display; |
|
364 | - $display->layout = 'one_sidebar_second'; |
|
365 | - $display->layout_settings = array(); |
|
366 | - $display->panel_settings = array( |
|
362 | + ); |
|
363 | + $display = new panels_display; |
|
364 | + $display->layout = 'one_sidebar_second'; |
|
365 | + $display->layout_settings = array(); |
|
366 | + $display->panel_settings = array( |
|
367 | 367 | 'style_settings' => array( |
368 | - 'default' => NULL, |
|
369 | - 'content' => NULL, |
|
370 | - 'sidebar_first' => NULL, |
|
368 | + 'default' => NULL, |
|
369 | + 'content' => NULL, |
|
370 | + 'sidebar_first' => NULL, |
|
371 | 371 | ), |
372 | - ); |
|
373 | - $display->cache = array(); |
|
374 | - $display->title = ''; |
|
375 | - $display->content = array(); |
|
376 | - $display->panels = array(); |
|
372 | + ); |
|
373 | + $display->cache = array(); |
|
374 | + $display->title = ''; |
|
375 | + $display->content = array(); |
|
376 | + $display->panels = array(); |
|
377 | 377 | $pane = new stdClass; |
378 | 378 | $pane->pid = 'new-1'; |
379 | 379 | $pane->panel = 'content'; |
@@ -382,19 +382,19 @@ discard block |
||
382 | 382 | $pane->shown = TRUE; |
383 | 383 | $pane->access = array(); |
384 | 384 | $pane->configuration = array( |
385 | - 'context' => array( |
|
385 | + 'context' => array( |
|
386 | 386 | 0 => 'argument_uid_1', |
387 | - ), |
|
388 | - 'override_title' => 0, |
|
389 | - 'override_title_text' => '', |
|
387 | + ), |
|
388 | + 'override_title' => 0, |
|
389 | + 'override_title_text' => '', |
|
390 | 390 | ); |
391 | 391 | $pane->cache = array(); |
392 | 392 | $pane->style = array( |
393 | - 'settings' => NULL, |
|
393 | + 'settings' => NULL, |
|
394 | 394 | ); |
395 | 395 | $pane->css = array( |
396 | - 'css_id' => '', |
|
397 | - 'css_class' => 'panel-primary container shadow', |
|
396 | + 'css_id' => '', |
|
397 | + 'css_class' => 'panel-primary container shadow', |
|
398 | 398 | ); |
399 | 399 | $pane->extras = array(); |
400 | 400 | $pane->position = 0; |
@@ -408,16 +408,16 @@ discard block |
||
408 | 408 | $pane->shown = TRUE; |
409 | 409 | $pane->access = array(); |
410 | 410 | $pane->configuration = array( |
411 | - 'override_title' => 0, |
|
412 | - 'override_title_text' => '', |
|
411 | + 'override_title' => 0, |
|
412 | + 'override_title_text' => '', |
|
413 | 413 | ); |
414 | 414 | $pane->cache = array(); |
415 | 415 | $pane->style = array( |
416 | - 'settings' => NULL, |
|
416 | + 'settings' => NULL, |
|
417 | 417 | ); |
418 | 418 | $pane->css = array( |
419 | - 'css_id' => '', |
|
420 | - 'css_class' => 'panel-secondary container shadow', |
|
419 | + 'css_id' => '', |
|
420 | + 'css_class' => 'panel-secondary container shadow', |
|
421 | 421 | ); |
422 | 422 | $pane->extras = array(); |
423 | 423 | $pane->position = 0; |
@@ -431,23 +431,23 @@ discard block |
||
431 | 431 | $pane->shown = TRUE; |
432 | 432 | $pane->access = array(); |
433 | 433 | $pane->configuration = array( |
434 | - 'admin_title' => 'Team summary', |
|
435 | - 'title' => '', |
|
436 | - 'body' => '<?php |
|
434 | + 'admin_title' => 'Team summary', |
|
435 | + 'title' => '', |
|
436 | + 'body' => '<?php |
|
437 | 437 | if (module_exists(\'boincteam\')) { |
438 | 438 | echo boincteam_dashboard_panel(%user:uid); |
439 | 439 | } |
440 | 440 | ?>', |
441 | - 'format' => '3', |
|
442 | - 'substitute' => 1, |
|
441 | + 'format' => '3', |
|
442 | + 'substitute' => 1, |
|
443 | 443 | ); |
444 | 444 | $pane->cache = array(); |
445 | 445 | $pane->style = array( |
446 | - 'settings' => NULL, |
|
446 | + 'settings' => NULL, |
|
447 | 447 | ); |
448 | 448 | $pane->css = array( |
449 | - 'css_id' => 'team-dashboard-pane', |
|
450 | - 'css_class' => 'panel-secondary container shadow', |
|
449 | + 'css_id' => 'team-dashboard-pane', |
|
450 | + 'css_class' => 'panel-secondary container shadow', |
|
451 | 451 | ); |
452 | 452 | $pane->extras = array(); |
453 | 453 | $pane->position = 1; |
@@ -461,9 +461,9 @@ discard block |
||
461 | 461 | $pane->shown = TRUE; |
462 | 462 | $pane->access = array(); |
463 | 463 | $pane->configuration = array( |
464 | - 'admin_title' => 'User activity summary', |
|
465 | - 'title' => '', |
|
466 | - 'body' => '<?php |
|
464 | + 'admin_title' => 'User activity summary', |
|
465 | + 'title' => '', |
|
466 | + 'body' => '<?php |
|
467 | 467 | |
468 | 468 | $uid = arg(1); |
469 | 469 | $account = user_load($uid); |
@@ -471,16 +471,16 @@ discard block |
||
471 | 471 | echo \'<div class="item-count-wrapper"><div class="item-count">\' . $account->post_count . \'</div></div>\'; |
472 | 472 | |
473 | 473 | ?>', |
474 | - 'format' => '3', |
|
475 | - 'substitute' => 0, |
|
474 | + 'format' => '3', |
|
475 | + 'substitute' => 0, |
|
476 | 476 | ); |
477 | 477 | $pane->cache = array(); |
478 | 478 | $pane->style = array( |
479 | - 'settings' => NULL, |
|
479 | + 'settings' => NULL, |
|
480 | 480 | ); |
481 | 481 | $pane->css = array( |
482 | - 'css_id' => '', |
|
483 | - 'css_class' => 'panel-secondary container shadow', |
|
482 | + 'css_id' => '', |
|
483 | + 'css_class' => 'panel-secondary container shadow', |
|
484 | 484 | ); |
485 | 485 | $pane->extras = array(); |
486 | 486 | $pane->position = 2; |
@@ -494,31 +494,31 @@ discard block |
||
494 | 494 | $pane->shown = TRUE; |
495 | 495 | $pane->access = array(); |
496 | 496 | $pane->configuration = array( |
497 | - 'override_pager_settings' => 0, |
|
498 | - 'use_pager' => 0, |
|
499 | - 'nodes_per_page' => '6', |
|
500 | - 'pager_id' => '', |
|
501 | - 'offset' => '0', |
|
502 | - 'more_link' => 0, |
|
503 | - 'feed_icons' => 0, |
|
504 | - 'panel_args' => 0, |
|
505 | - 'link_to_view' => 0, |
|
506 | - 'args' => '', |
|
507 | - 'url' => '', |
|
508 | - 'display' => 'block_1', |
|
509 | - 'context' => array( |
|
497 | + 'override_pager_settings' => 0, |
|
498 | + 'use_pager' => 0, |
|
499 | + 'nodes_per_page' => '6', |
|
500 | + 'pager_id' => '', |
|
501 | + 'offset' => '0', |
|
502 | + 'more_link' => 0, |
|
503 | + 'feed_icons' => 0, |
|
504 | + 'panel_args' => 0, |
|
505 | + 'link_to_view' => 0, |
|
506 | + 'args' => '', |
|
507 | + 'url' => '', |
|
508 | + 'display' => 'block_1', |
|
509 | + 'context' => array( |
|
510 | 510 | 0 => 'argument_uid_1.uid', |
511 | - ), |
|
512 | - 'override_title' => 0, |
|
513 | - 'override_title_text' => '', |
|
511 | + ), |
|
512 | + 'override_title' => 0, |
|
513 | + 'override_title_text' => '', |
|
514 | 514 | ); |
515 | 515 | $pane->cache = array(); |
516 | 516 | $pane->style = array( |
517 | - 'settings' => NULL, |
|
517 | + 'settings' => NULL, |
|
518 | 518 | ); |
519 | 519 | $pane->css = array( |
520 | - 'css_id' => '', |
|
521 | - 'css_class' => 'panel-secondary container shadow', |
|
520 | + 'css_id' => '', |
|
521 | + 'css_class' => 'panel-secondary container shadow', |
|
522 | 522 | ); |
523 | 523 | $pane->extras = array(); |
524 | 524 | $pane->position = 3; |
@@ -532,66 +532,66 @@ discard block |
||
532 | 532 | $pane->shown = TRUE; |
533 | 533 | $pane->access = array(); |
534 | 534 | $pane->configuration = array( |
535 | - 'admin_title' => 'Project list', |
|
536 | - 'title' => 'Projects', |
|
537 | - 'body' => '<?php echo boincuser_get_projects_table(%user:uid); ?>', |
|
538 | - 'format' => '3', |
|
539 | - 'substitute' => 1, |
|
535 | + 'admin_title' => 'Project list', |
|
536 | + 'title' => 'Projects', |
|
537 | + 'body' => '<?php echo boincuser_get_projects_table(%user:uid); ?>', |
|
538 | + 'format' => '3', |
|
539 | + 'substitute' => 1, |
|
540 | 540 | ); |
541 | 541 | $pane->cache = array(); |
542 | 542 | $pane->style = array( |
543 | - 'settings' => NULL, |
|
543 | + 'settings' => NULL, |
|
544 | 544 | ); |
545 | 545 | $pane->css = array( |
546 | - 'css_id' => '', |
|
547 | - 'css_class' => 'panel-secondary container shadow', |
|
546 | + 'css_id' => '', |
|
547 | + 'css_class' => 'panel-secondary container shadow', |
|
548 | 548 | ); |
549 | 549 | $pane->extras = array(); |
550 | 550 | $pane->position = 4; |
551 | 551 | $display->content['new-6'] = $pane; |
552 | 552 | $display->panels['sidebar_first'][4] = 'new-6'; |
553 | - $display->hide_title = PANELS_TITLE_NONE; |
|
554 | - $display->title_pane = '0'; |
|
555 | - $handler->conf['display'] = $display; |
|
556 | - $page->default_handlers[$handler->name] = $handler; |
|
557 | - $pages['boinc_user'] = $page; |
|
553 | + $display->hide_title = PANELS_TITLE_NONE; |
|
554 | + $display->title_pane = '0'; |
|
555 | + $handler->conf['display'] = $display; |
|
556 | + $page->default_handlers[$handler->name] = $handler; |
|
557 | + $pages['boinc_user'] = $page; |
|
558 | 558 | |
559 | - $page = new stdClass; |
|
560 | - $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
561 | - $page->api_version = 1; |
|
562 | - $page->name = 'home'; |
|
563 | - $page->task = 'page'; |
|
564 | - $page->admin_title = 'Home page'; |
|
565 | - $page->admin_description = ''; |
|
566 | - $page->path = 'home'; |
|
567 | - $page->access = array( |
|
559 | + $page = new stdClass; |
|
560 | + $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
561 | + $page->api_version = 1; |
|
562 | + $page->name = 'home'; |
|
563 | + $page->task = 'page'; |
|
564 | + $page->admin_title = 'Home page'; |
|
565 | + $page->admin_description = ''; |
|
566 | + $page->path = 'home'; |
|
567 | + $page->access = array( |
|
568 | 568 | 'type' => 'none', |
569 | 569 | 'settings' => NULL, |
570 | - ); |
|
571 | - $page->menu = array( |
|
570 | + ); |
|
571 | + $page->menu = array( |
|
572 | 572 | 'type' => 'normal', |
573 | 573 | 'title' => 'Home', |
574 | 574 | 'name' => 'navigation', |
575 | 575 | 'weight' => '0', |
576 | 576 | 'parent' => array( |
577 | - 'type' => 'none', |
|
578 | - 'title' => '', |
|
579 | - 'name' => 'navigation', |
|
580 | - 'weight' => '0', |
|
577 | + 'type' => 'none', |
|
578 | + 'title' => '', |
|
579 | + 'name' => 'navigation', |
|
580 | + 'weight' => '0', |
|
581 | 581 | ), |
582 | - ); |
|
583 | - $page->arguments = array(); |
|
584 | - $page->conf = array(); |
|
585 | - $page->default_handlers = array(); |
|
586 | - $handler = new stdClass; |
|
587 | - $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */ |
|
588 | - $handler->api_version = 1; |
|
589 | - $handler->name = 'page_home_panel_context'; |
|
590 | - $handler->task = 'page'; |
|
591 | - $handler->subtask = 'home'; |
|
592 | - $handler->handler = 'panel_context'; |
|
593 | - $handler->weight = 0; |
|
594 | - $handler->conf = array( |
|
582 | + ); |
|
583 | + $page->arguments = array(); |
|
584 | + $page->conf = array(); |
|
585 | + $page->default_handlers = array(); |
|
586 | + $handler = new stdClass; |
|
587 | + $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */ |
|
588 | + $handler->api_version = 1; |
|
589 | + $handler->name = 'page_home_panel_context'; |
|
590 | + $handler->task = 'page'; |
|
591 | + $handler->subtask = 'home'; |
|
592 | + $handler->handler = 'panel_context'; |
|
593 | + $handler->weight = 0; |
|
594 | + $handler->conf = array( |
|
595 | 595 | 'title' => 'Landing page', |
596 | 596 | 'no_blocks' => FALSE, |
597 | 597 | 'pipeline' => 'ipe', |
@@ -599,21 +599,21 @@ discard block |
||
599 | 599 | 'css' => '', |
600 | 600 | 'contexts' => array(), |
601 | 601 | 'relationships' => array(), |
602 | - ); |
|
603 | - $display = new panels_display; |
|
604 | - $display->layout = 'one_sidebar_second'; |
|
605 | - $display->layout_settings = array(); |
|
606 | - $display->panel_settings = array( |
|
602 | + ); |
|
603 | + $display = new panels_display; |
|
604 | + $display->layout = 'one_sidebar_second'; |
|
605 | + $display->layout_settings = array(); |
|
606 | + $display->panel_settings = array( |
|
607 | 607 | 'style_settings' => array( |
608 | - 'default' => NULL, |
|
609 | - 'content' => NULL, |
|
610 | - 'sidebar_first' => NULL, |
|
608 | + 'default' => NULL, |
|
609 | + 'content' => NULL, |
|
610 | + 'sidebar_first' => NULL, |
|
611 | 611 | ), |
612 | - ); |
|
613 | - $display->cache = array(); |
|
614 | - $display->title = ''; |
|
615 | - $display->content = array(); |
|
616 | - $display->panels = array(); |
|
612 | + ); |
|
613 | + $display->cache = array(); |
|
614 | + $display->title = ''; |
|
615 | + $display->content = array(); |
|
616 | + $display->panels = array(); |
|
617 | 617 | $pane = new stdClass; |
618 | 618 | $pane->pid = 'new-1'; |
619 | 619 | $pane->panel = 'content'; |
@@ -621,22 +621,22 @@ discard block |
||
621 | 621 | $pane->subtype = 'custom'; |
622 | 622 | $pane->shown = TRUE; |
623 | 623 | $pane->access = array( |
624 | - 'plugins' => array(), |
|
624 | + 'plugins' => array(), |
|
625 | 625 | ); |
626 | 626 | $pane->configuration = array( |
627 | - 'admin_title' => 'BOINC overview', |
|
628 | - 'title' => '', |
|
629 | - 'body' => '<?php print boincuser_home_page(); ?>', |
|
630 | - 'format' => '3', |
|
631 | - 'substitute' => TRUE, |
|
627 | + 'admin_title' => 'BOINC overview', |
|
628 | + 'title' => '', |
|
629 | + 'body' => '<?php print boincuser_home_page(); ?>', |
|
630 | + 'format' => '3', |
|
631 | + 'substitute' => TRUE, |
|
632 | 632 | ); |
633 | 633 | $pane->cache = array(); |
634 | 634 | $pane->style = array( |
635 | - 'settings' => NULL, |
|
635 | + 'settings' => NULL, |
|
636 | 636 | ); |
637 | 637 | $pane->css = array( |
638 | - 'css_id' => '', |
|
639 | - 'css_class' => 'panel-primary container shadow', |
|
638 | + 'css_id' => '', |
|
639 | + 'css_class' => 'panel-primary container shadow', |
|
640 | 640 | ); |
641 | 641 | $pane->extras = array(); |
642 | 642 | $pane->position = 0; |
@@ -650,16 +650,16 @@ discard block |
||
650 | 650 | $pane->shown = TRUE; |
651 | 651 | $pane->access = array(); |
652 | 652 | $pane->configuration = array( |
653 | - 'override_title' => 0, |
|
654 | - 'override_title_text' => '', |
|
653 | + 'override_title' => 0, |
|
654 | + 'override_title_text' => '', |
|
655 | 655 | ); |
656 | 656 | $pane->cache = array(); |
657 | 657 | $pane->style = array( |
658 | - 'settings' => NULL, |
|
658 | + 'settings' => NULL, |
|
659 | 659 | ); |
660 | 660 | $pane->css = array( |
661 | - 'css_id' => '', |
|
662 | - 'css_class' => 'panel-secondary container shadow balance-height-front no-resize', |
|
661 | + 'css_id' => '', |
|
662 | + 'css_class' => 'panel-secondary container shadow balance-height-front no-resize', |
|
663 | 663 | ); |
664 | 664 | $pane->extras = array(); |
665 | 665 | $pane->position = 0; |
@@ -673,39 +673,39 @@ discard block |
||
673 | 673 | $pane->shown = TRUE; |
674 | 674 | $pane->access = array(); |
675 | 675 | $pane->configuration = array( |
676 | - 'override_pager_settings' => 1, |
|
677 | - 'use_pager' => 0, |
|
678 | - 'nodes_per_page' => '2', |
|
679 | - 'pager_id' => '', |
|
680 | - 'offset' => '0', |
|
681 | - 'more_link' => 1, |
|
682 | - 'feed_icons' => 1, |
|
683 | - 'panel_args' => 0, |
|
684 | - 'link_to_view' => 0, |
|
685 | - 'args' => '', |
|
686 | - 'url' => '', |
|
687 | - 'display' => 'page_2', |
|
688 | - 'override_title' => 1, |
|
689 | - 'override_title_text' => '', |
|
676 | + 'override_pager_settings' => 1, |
|
677 | + 'use_pager' => 0, |
|
678 | + 'nodes_per_page' => '2', |
|
679 | + 'pager_id' => '', |
|
680 | + 'offset' => '0', |
|
681 | + 'more_link' => 1, |
|
682 | + 'feed_icons' => 1, |
|
683 | + 'panel_args' => 0, |
|
684 | + 'link_to_view' => 0, |
|
685 | + 'args' => '', |
|
686 | + 'url' => '', |
|
687 | + 'display' => 'page_2', |
|
688 | + 'override_title' => 1, |
|
689 | + 'override_title_text' => '', |
|
690 | 690 | ); |
691 | 691 | $pane->cache = array(); |
692 | 692 | $pane->style = array( |
693 | - 'settings' => NULL, |
|
693 | + 'settings' => NULL, |
|
694 | 694 | ); |
695 | 695 | $pane->css = array( |
696 | - 'css_id' => '', |
|
697 | - 'css_class' => 'panel-secondary container shadow balance-height-front', |
|
696 | + 'css_id' => '', |
|
697 | + 'css_class' => 'panel-secondary container shadow balance-height-front', |
|
698 | 698 | ); |
699 | 699 | $pane->extras = array(); |
700 | 700 | $pane->position = 1; |
701 | 701 | $display->content['new-3'] = $pane; |
702 | 702 | $display->panels['sidebar_first'][1] = 'new-3'; |
703 | - $display->hide_title = PANELS_TITLE_NONE; |
|
704 | - $display->title_pane = '0'; |
|
705 | - $handler->conf['display'] = $display; |
|
706 | - $page->default_handlers[$handler->name] = $handler; |
|
707 | - $pages['home'] = $page; |
|
703 | + $display->hide_title = PANELS_TITLE_NONE; |
|
704 | + $display->title_pane = '0'; |
|
705 | + $handler->conf['display'] = $display; |
|
706 | + $page->default_handlers[$handler->name] = $handler; |
|
707 | + $pages['home'] = $page; |
|
708 | 708 | |
709 | - return $pages; |
|
709 | + return $pages; |
|
710 | 710 | |
711 | 711 | } |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | */ |
6 | 6 | function boinc_standard_default_page_manager_pages() { |
7 | 7 | $page = new stdClass; |
8 | - $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
8 | + $page->disabled = false; /* Edit this to true to make a default page disabled initially */ |
|
9 | 9 | $page->api_version = 1; |
10 | 10 | $page->name = 'about_us'; |
11 | 11 | $page->task = 'page'; |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | $page->path = 'about.fail'; |
15 | 15 | $page->access = array( |
16 | 16 | 'type' => 'none', |
17 | - 'settings' => NULL, |
|
17 | + 'settings' => null, |
|
18 | 18 | ); |
19 | 19 | $page->menu = array(); |
20 | 20 | $page->arguments = array(); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | $pages['about_us'] = $page; |
24 | 24 | |
25 | 25 | $page = new stdClass; |
26 | - $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
26 | + $page->disabled = false; /* Edit this to true to make a default page disabled initially */ |
|
27 | 27 | $page->api_version = 1; |
28 | 28 | $page->name = 'account_dashboard'; |
29 | 29 | $page->task = 'page'; |
@@ -40,12 +40,12 @@ discard block |
||
40 | 40 | ), |
41 | 41 | ), |
42 | 42 | 'context' => 'logged-in-user', |
43 | - 'not' => FALSE, |
|
43 | + 'not' => false, |
|
44 | 44 | ), |
45 | 45 | ), |
46 | 46 | 'logic' => 'and', |
47 | 47 | 'type' => 'none', |
48 | - 'settings' => NULL, |
|
48 | + 'settings' => null, |
|
49 | 49 | ); |
50 | 50 | $page->menu = array( |
51 | 51 | 'type' => 'none', |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $page->conf = array(); |
64 | 64 | $page->default_handlers = array(); |
65 | 65 | $handler = new stdClass; |
66 | - $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */ |
|
66 | + $handler->disabled = false; /* Edit this to true to make a default handler disabled initially */ |
|
67 | 67 | $handler->api_version = 1; |
68 | 68 | $handler->name = 'page_account_dashboard_panel_context'; |
69 | 69 | $handler->task = 'page'; |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | $handler->weight = 0; |
73 | 73 | $handler->conf = array( |
74 | 74 | 'title' => 'Landing page', |
75 | - 'no_blocks' => FALSE, |
|
75 | + 'no_blocks' => false, |
|
76 | 76 | 'pipeline' => 'ipe', |
77 | 77 | 'css_id' => '', |
78 | 78 | 'css' => '', |
@@ -100,9 +100,9 @@ discard block |
||
100 | 100 | $display->layout_settings = array(); |
101 | 101 | $display->panel_settings = array( |
102 | 102 | 'style_settings' => array( |
103 | - 'default' => NULL, |
|
104 | - 'content' => NULL, |
|
105 | - 'sidebar_first' => NULL, |
|
103 | + 'default' => null, |
|
104 | + 'content' => null, |
|
105 | + 'sidebar_first' => null, |
|
106 | 106 | ), |
107 | 107 | ); |
108 | 108 | $display->cache = array(); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | $pane->panel = 'content'; |
115 | 115 | $pane->type = 'panels_mini'; |
116 | 116 | $pane->subtype = 'dashboard_tables'; |
117 | - $pane->shown = TRUE; |
|
117 | + $pane->shown = true; |
|
118 | 118 | $pane->access = array(); |
119 | 119 | $pane->configuration = array( |
120 | 120 | 'override_title' => 1, |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | ); |
123 | 123 | $pane->cache = array(); |
124 | 124 | $pane->style = array( |
125 | - 'settings' => NULL, |
|
125 | + 'settings' => null, |
|
126 | 126 | ); |
127 | 127 | $pane->css = array( |
128 | 128 | 'css_id' => '', |
@@ -137,12 +137,12 @@ discard block |
||
137 | 137 | $pane->panel = 'content'; |
138 | 138 | $pane->type = 'views_panes'; |
139 | 139 | $pane->subtype = 'subscriptions-panel_pane_1'; |
140 | - $pane->shown = TRUE; |
|
140 | + $pane->shown = true; |
|
141 | 141 | $pane->access = array(); |
142 | 142 | $pane->configuration = array(); |
143 | 143 | $pane->cache = array(); |
144 | 144 | $pane->style = array( |
145 | - 'settings' => NULL, |
|
145 | + 'settings' => null, |
|
146 | 146 | ); |
147 | 147 | $pane->css = array( |
148 | 148 | 'css_id' => '', |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | $pane->panel = 'sidebar_first'; |
158 | 158 | $pane->type = 'custom'; |
159 | 159 | $pane->subtype = 'custom'; |
160 | - $pane->shown = TRUE; |
|
160 | + $pane->shown = true; |
|
161 | 161 | $pane->access = array( |
162 | 162 | 'plugins' => array( |
163 | 163 | 1 => array( |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | 'perm' => 'edit any profile content', |
167 | 167 | ), |
168 | 168 | 'context' => 'context_user_1', |
169 | - 'not' => FALSE, |
|
169 | + 'not' => false, |
|
170 | 170 | ), |
171 | 171 | ), |
172 | 172 | ); |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | ); |
180 | 180 | $pane->cache = array(); |
181 | 181 | $pane->style = array( |
182 | - 'settings' => NULL, |
|
182 | + 'settings' => null, |
|
183 | 183 | ); |
184 | 184 | $pane->css = array( |
185 | 185 | 'css_id' => '', |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | $pane->panel = 'sidebar_first'; |
195 | 195 | $pane->type = 'panels_mini'; |
196 | 196 | $pane->subtype = 'user_mail_summary'; |
197 | - $pane->shown = TRUE; |
|
197 | + $pane->shown = true; |
|
198 | 198 | $pane->access = array(); |
199 | 199 | $pane->configuration = array( |
200 | 200 | 'override_title' => 0, |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | ); |
203 | 203 | $pane->cache = array(); |
204 | 204 | $pane->style = array( |
205 | - 'settings' => NULL, |
|
205 | + 'settings' => null, |
|
206 | 206 | ); |
207 | 207 | $pane->css = array( |
208 | 208 | 'css_id' => '', |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | $pane->panel = 'sidebar_first'; |
218 | 218 | $pane->type = 'custom'; |
219 | 219 | $pane->subtype = 'custom'; |
220 | - $pane->shown = TRUE; |
|
220 | + $pane->shown = true; |
|
221 | 221 | $pane->access = array(); |
222 | 222 | $pane->configuration = array( |
223 | 223 | 'admin_title' => 'Team summary', |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | ); |
233 | 233 | $pane->cache = array(); |
234 | 234 | $pane->style = array( |
235 | - 'settings' => NULL, |
|
235 | + 'settings' => null, |
|
236 | 236 | ); |
237 | 237 | $pane->css = array( |
238 | 238 | 'css_id' => 'team-dashboard-pane', |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | $pane->panel = 'sidebar_first'; |
248 | 248 | $pane->type = 'custom'; |
249 | 249 | $pane->subtype = 'custom'; |
250 | - $pane->shown = TRUE; |
|
250 | + $pane->shown = true; |
|
251 | 251 | $pane->access = array(); |
252 | 252 | $pane->configuration = array( |
253 | 253 | 'admin_title' => 'User activity summary', |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | ); |
267 | 267 | $pane->cache = array(); |
268 | 268 | $pane->style = array( |
269 | - 'settings' => NULL, |
|
269 | + 'settings' => null, |
|
270 | 270 | ); |
271 | 271 | $pane->css = array( |
272 | 272 | 'css_id' => '', |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | $pane->panel = 'sidebar_first'; |
282 | 282 | $pane->type = 'views'; |
283 | 283 | $pane->subtype = 'boinc_friends'; |
284 | - $pane->shown = TRUE; |
|
284 | + $pane->shown = true; |
|
285 | 285 | $pane->access = array(); |
286 | 286 | $pane->configuration = array( |
287 | 287 | 'override_pager_settings' => 0, |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | ); |
305 | 305 | $pane->cache = array(); |
306 | 306 | $pane->style = array( |
307 | - 'settings' => NULL, |
|
307 | + 'settings' => null, |
|
308 | 308 | ); |
309 | 309 | $pane->css = array( |
310 | 310 | 'css_id' => '', |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | $pages['account_dashboard'] = $page; |
322 | 322 | |
323 | 323 | $page = new stdClass; |
324 | - $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
324 | + $page->disabled = false; /* Edit this to true to make a default page disabled initially */ |
|
325 | 325 | $page->api_version = 1; |
326 | 326 | $page->name = 'boinc_user'; |
327 | 327 | $page->task = 'page'; |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | $page->path = 'account/%user'; |
331 | 331 | $page->access = array( |
332 | 332 | 'type' => 'none', |
333 | - 'settings' => NULL, |
|
333 | + 'settings' => null, |
|
334 | 334 | ); |
335 | 335 | $page->menu = array(); |
336 | 336 | $page->arguments = array( |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | $page->conf = array(); |
345 | 345 | $page->default_handlers = array(); |
346 | 346 | $handler = new stdClass; |
347 | - $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */ |
|
347 | + $handler->disabled = false; /* Edit this to true to make a default handler disabled initially */ |
|
348 | 348 | $handler->api_version = 1; |
349 | 349 | $handler->name = 'page_boinc_user_panel_context_2'; |
350 | 350 | $handler->task = 'page'; |
@@ -365,9 +365,9 @@ discard block |
||
365 | 365 | $display->layout_settings = array(); |
366 | 366 | $display->panel_settings = array( |
367 | 367 | 'style_settings' => array( |
368 | - 'default' => NULL, |
|
369 | - 'content' => NULL, |
|
370 | - 'sidebar_first' => NULL, |
|
368 | + 'default' => null, |
|
369 | + 'content' => null, |
|
370 | + 'sidebar_first' => null, |
|
371 | 371 | ), |
372 | 372 | ); |
373 | 373 | $display->cache = array(); |
@@ -379,7 +379,7 @@ discard block |
||
379 | 379 | $pane->panel = 'content'; |
380 | 380 | $pane->type = 'panels_mini'; |
381 | 381 | $pane->subtype = 'user_profile'; |
382 | - $pane->shown = TRUE; |
|
382 | + $pane->shown = true; |
|
383 | 383 | $pane->access = array(); |
384 | 384 | $pane->configuration = array( |
385 | 385 | 'context' => array( |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | ); |
391 | 391 | $pane->cache = array(); |
392 | 392 | $pane->style = array( |
393 | - 'settings' => NULL, |
|
393 | + 'settings' => null, |
|
394 | 394 | ); |
395 | 395 | $pane->css = array( |
396 | 396 | 'css_id' => '', |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | $pane->panel = 'sidebar_first'; |
406 | 406 | $pane->type = 'views_panes'; |
407 | 407 | $pane->subtype = 'boinc_account_stats-panel_pane_2'; |
408 | - $pane->shown = TRUE; |
|
408 | + $pane->shown = true; |
|
409 | 409 | $pane->access = array(); |
410 | 410 | $pane->configuration = array( |
411 | 411 | 'override_title' => 0, |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | ); |
414 | 414 | $pane->cache = array(); |
415 | 415 | $pane->style = array( |
416 | - 'settings' => NULL, |
|
416 | + 'settings' => null, |
|
417 | 417 | ); |
418 | 418 | $pane->css = array( |
419 | 419 | 'css_id' => '', |
@@ -428,7 +428,7 @@ discard block |
||
428 | 428 | $pane->panel = 'sidebar_first'; |
429 | 429 | $pane->type = 'custom'; |
430 | 430 | $pane->subtype = 'custom'; |
431 | - $pane->shown = TRUE; |
|
431 | + $pane->shown = true; |
|
432 | 432 | $pane->access = array(); |
433 | 433 | $pane->configuration = array( |
434 | 434 | 'admin_title' => 'Team summary', |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | ); |
444 | 444 | $pane->cache = array(); |
445 | 445 | $pane->style = array( |
446 | - 'settings' => NULL, |
|
446 | + 'settings' => null, |
|
447 | 447 | ); |
448 | 448 | $pane->css = array( |
449 | 449 | 'css_id' => 'team-dashboard-pane', |
@@ -458,7 +458,7 @@ discard block |
||
458 | 458 | $pane->panel = 'sidebar_first'; |
459 | 459 | $pane->type = 'custom'; |
460 | 460 | $pane->subtype = 'custom'; |
461 | - $pane->shown = TRUE; |
|
461 | + $pane->shown = true; |
|
462 | 462 | $pane->access = array(); |
463 | 463 | $pane->configuration = array( |
464 | 464 | 'admin_title' => 'User activity summary', |
@@ -476,7 +476,7 @@ discard block |
||
476 | 476 | ); |
477 | 477 | $pane->cache = array(); |
478 | 478 | $pane->style = array( |
479 | - 'settings' => NULL, |
|
479 | + 'settings' => null, |
|
480 | 480 | ); |
481 | 481 | $pane->css = array( |
482 | 482 | 'css_id' => '', |
@@ -491,7 +491,7 @@ discard block |
||
491 | 491 | $pane->panel = 'sidebar_first'; |
492 | 492 | $pane->type = 'views'; |
493 | 493 | $pane->subtype = 'boinc_friends'; |
494 | - $pane->shown = TRUE; |
|
494 | + $pane->shown = true; |
|
495 | 495 | $pane->access = array(); |
496 | 496 | $pane->configuration = array( |
497 | 497 | 'override_pager_settings' => 0, |
@@ -514,7 +514,7 @@ discard block |
||
514 | 514 | ); |
515 | 515 | $pane->cache = array(); |
516 | 516 | $pane->style = array( |
517 | - 'settings' => NULL, |
|
517 | + 'settings' => null, |
|
518 | 518 | ); |
519 | 519 | $pane->css = array( |
520 | 520 | 'css_id' => '', |
@@ -529,7 +529,7 @@ discard block |
||
529 | 529 | $pane->panel = 'sidebar_first'; |
530 | 530 | $pane->type = 'custom'; |
531 | 531 | $pane->subtype = 'custom'; |
532 | - $pane->shown = TRUE; |
|
532 | + $pane->shown = true; |
|
533 | 533 | $pane->access = array(); |
534 | 534 | $pane->configuration = array( |
535 | 535 | 'admin_title' => 'Project list', |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | ); |
541 | 541 | $pane->cache = array(); |
542 | 542 | $pane->style = array( |
543 | - 'settings' => NULL, |
|
543 | + 'settings' => null, |
|
544 | 544 | ); |
545 | 545 | $pane->css = array( |
546 | 546 | 'css_id' => '', |
@@ -557,7 +557,7 @@ discard block |
||
557 | 557 | $pages['boinc_user'] = $page; |
558 | 558 | |
559 | 559 | $page = new stdClass; |
560 | - $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */ |
|
560 | + $page->disabled = false; /* Edit this to true to make a default page disabled initially */ |
|
561 | 561 | $page->api_version = 1; |
562 | 562 | $page->name = 'home'; |
563 | 563 | $page->task = 'page'; |
@@ -566,7 +566,7 @@ discard block |
||
566 | 566 | $page->path = 'home'; |
567 | 567 | $page->access = array( |
568 | 568 | 'type' => 'none', |
569 | - 'settings' => NULL, |
|
569 | + 'settings' => null, |
|
570 | 570 | ); |
571 | 571 | $page->menu = array( |
572 | 572 | 'type' => 'normal', |
@@ -584,7 +584,7 @@ discard block |
||
584 | 584 | $page->conf = array(); |
585 | 585 | $page->default_handlers = array(); |
586 | 586 | $handler = new stdClass; |
587 | - $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */ |
|
587 | + $handler->disabled = false; /* Edit this to true to make a default handler disabled initially */ |
|
588 | 588 | $handler->api_version = 1; |
589 | 589 | $handler->name = 'page_home_panel_context'; |
590 | 590 | $handler->task = 'page'; |
@@ -593,7 +593,7 @@ discard block |
||
593 | 593 | $handler->weight = 0; |
594 | 594 | $handler->conf = array( |
595 | 595 | 'title' => 'Landing page', |
596 | - 'no_blocks' => FALSE, |
|
596 | + 'no_blocks' => false, |
|
597 | 597 | 'pipeline' => 'ipe', |
598 | 598 | 'css_id' => '', |
599 | 599 | 'css' => '', |
@@ -605,9 +605,9 @@ discard block |
||
605 | 605 | $display->layout_settings = array(); |
606 | 606 | $display->panel_settings = array( |
607 | 607 | 'style_settings' => array( |
608 | - 'default' => NULL, |
|
609 | - 'content' => NULL, |
|
610 | - 'sidebar_first' => NULL, |
|
608 | + 'default' => null, |
|
609 | + 'content' => null, |
|
610 | + 'sidebar_first' => null, |
|
611 | 611 | ), |
612 | 612 | ); |
613 | 613 | $display->cache = array(); |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | $pane->panel = 'content'; |
620 | 620 | $pane->type = 'custom'; |
621 | 621 | $pane->subtype = 'custom'; |
622 | - $pane->shown = TRUE; |
|
622 | + $pane->shown = true; |
|
623 | 623 | $pane->access = array( |
624 | 624 | 'plugins' => array(), |
625 | 625 | ); |
@@ -628,11 +628,11 @@ discard block |
||
628 | 628 | 'title' => '', |
629 | 629 | 'body' => '<?php print boincuser_home_page(); ?>', |
630 | 630 | 'format' => '3', |
631 | - 'substitute' => TRUE, |
|
631 | + 'substitute' => true, |
|
632 | 632 | ); |
633 | 633 | $pane->cache = array(); |
634 | 634 | $pane->style = array( |
635 | - 'settings' => NULL, |
|
635 | + 'settings' => null, |
|
636 | 636 | ); |
637 | 637 | $pane->css = array( |
638 | 638 | 'css_id' => '', |
@@ -647,7 +647,7 @@ discard block |
||
647 | 647 | $pane->panel = 'sidebar_first'; |
648 | 648 | $pane->type = 'panels_mini'; |
649 | 649 | $pane->subtype = 'project_stats_overview'; |
650 | - $pane->shown = TRUE; |
|
650 | + $pane->shown = true; |
|
651 | 651 | $pane->access = array(); |
652 | 652 | $pane->configuration = array( |
653 | 653 | 'override_title' => 0, |
@@ -655,7 +655,7 @@ discard block |
||
655 | 655 | ); |
656 | 656 | $pane->cache = array(); |
657 | 657 | $pane->style = array( |
658 | - 'settings' => NULL, |
|
658 | + 'settings' => null, |
|
659 | 659 | ); |
660 | 660 | $pane->css = array( |
661 | 661 | 'css_id' => '', |
@@ -670,7 +670,7 @@ discard block |
||
670 | 670 | $pane->panel = 'sidebar_first'; |
671 | 671 | $pane->type = 'views'; |
672 | 672 | $pane->subtype = 'news'; |
673 | - $pane->shown = TRUE; |
|
673 | + $pane->shown = true; |
|
674 | 674 | $pane->access = array(); |
675 | 675 | $pane->configuration = array( |
676 | 676 | 'override_pager_settings' => 1, |
@@ -690,7 +690,7 @@ discard block |
||
690 | 690 | ); |
691 | 691 | $pane->cache = array(); |
692 | 692 | $pane->style = array( |
693 | - 'settings' => NULL, |
|
693 | + 'settings' => null, |
|
694 | 694 | ); |
695 | 695 | $pane->css = array( |
696 | 696 | 'css_id' => '', |
@@ -4,575 +4,575 @@ |
||
4 | 4 | * Implementation of hook_user_default_permissions(). |
5 | 5 | */ |
6 | 6 | function boinc_standard_user_default_permissions() { |
7 | - $permissions = array(); |
|
7 | + $permissions = array(); |
|
8 | 8 | |
9 | - // Exported permission: Use PHP input for field settings (dangerous - grant with care) |
|
10 | - $permissions['Use PHP input for field settings (dangerous - grant with care)'] = array( |
|
9 | + // Exported permission: Use PHP input for field settings (dangerous - grant with care) |
|
10 | + $permissions['Use PHP input for field settings (dangerous - grant with care)'] = array( |
|
11 | 11 | 'name' => 'Use PHP input for field settings (dangerous - grant with care)', |
12 | 12 | 'roles' => array( |
13 | - '0' => 'administrator', |
|
13 | + '0' => 'administrator', |
|
14 | 14 | ), |
15 | - ); |
|
15 | + ); |
|
16 | 16 | |
17 | - // Exported permission: access administration pages |
|
18 | - $permissions['access administration pages'] = array( |
|
17 | + // Exported permission: access administration pages |
|
18 | + $permissions['access administration pages'] = array( |
|
19 | 19 | 'name' => 'access administration pages', |
20 | 20 | 'roles' => array( |
21 | - '0' => 'administrator', |
|
21 | + '0' => 'administrator', |
|
22 | 22 | ), |
23 | - ); |
|
23 | + ); |
|
24 | 24 | |
25 | - // Exported permission: access all views |
|
26 | - $permissions['access all views'] = array( |
|
25 | + // Exported permission: access all views |
|
26 | + $permissions['access all views'] = array( |
|
27 | 27 | 'name' => 'access all views', |
28 | 28 | 'roles' => array( |
29 | - '0' => 'administrator', |
|
29 | + '0' => 'administrator', |
|
30 | 30 | ), |
31 | - ); |
|
31 | + ); |
|
32 | 32 | |
33 | - // Exported permission: access content |
|
34 | - $permissions['access content'] = array( |
|
33 | + // Exported permission: access content |
|
34 | + $permissions['access content'] = array( |
|
35 | 35 | 'name' => 'access content', |
36 | 36 | 'roles' => array( |
37 | - '0' => 'administrator', |
|
38 | - '1' => 'anonymous user', |
|
39 | - '2' => 'authenticated user', |
|
37 | + '0' => 'administrator', |
|
38 | + '1' => 'anonymous user', |
|
39 | + '2' => 'authenticated user', |
|
40 | 40 | ), |
41 | - ); |
|
41 | + ); |
|
42 | 42 | |
43 | - // Exported permission: access site reports |
|
44 | - $permissions['access site reports'] = array( |
|
43 | + // Exported permission: access site reports |
|
44 | + $permissions['access site reports'] = array( |
|
45 | 45 | 'name' => 'access site reports', |
46 | 46 | 'roles' => array( |
47 | - '0' => 'administrator', |
|
47 | + '0' => 'administrator', |
|
48 | 48 | ), |
49 | - ); |
|
49 | + ); |
|
50 | 50 | |
51 | - // Exported permission: administer actions |
|
52 | - $permissions['administer actions'] = array( |
|
51 | + // Exported permission: administer actions |
|
52 | + $permissions['administer actions'] = array( |
|
53 | 53 | 'name' => 'administer actions', |
54 | 54 | 'roles' => array( |
55 | - '0' => 'administrator', |
|
55 | + '0' => 'administrator', |
|
56 | 56 | ), |
57 | - ); |
|
57 | + ); |
|
58 | 58 | |
59 | - // Exported permission: administer advanced pane settings |
|
60 | - $permissions['administer advanced pane settings'] = array( |
|
59 | + // Exported permission: administer advanced pane settings |
|
60 | + $permissions['administer advanced pane settings'] = array( |
|
61 | 61 | 'name' => 'administer advanced pane settings', |
62 | 62 | 'roles' => array( |
63 | - '0' => 'administrator', |
|
63 | + '0' => 'administrator', |
|
64 | 64 | ), |
65 | - ); |
|
65 | + ); |
|
66 | 66 | |
67 | - // Exported permission: administer blocks |
|
68 | - $permissions['administer blocks'] = array( |
|
67 | + // Exported permission: administer blocks |
|
68 | + $permissions['administer blocks'] = array( |
|
69 | 69 | 'name' => 'administer blocks', |
70 | 70 | 'roles' => array( |
71 | - '0' => 'administrator', |
|
71 | + '0' => 'administrator', |
|
72 | 72 | ), |
73 | - ); |
|
73 | + ); |
|
74 | 74 | |
75 | - // Exported permission: administer content types |
|
76 | - $permissions['administer content types'] = array( |
|
75 | + // Exported permission: administer content types |
|
76 | + $permissions['administer content types'] = array( |
|
77 | 77 | 'name' => 'administer content types', |
78 | 78 | 'roles' => array( |
79 | - '0' => 'administrator', |
|
79 | + '0' => 'administrator', |
|
80 | 80 | ), |
81 | - ); |
|
81 | + ); |
|
82 | 82 | |
83 | - // Exported permission: administer elysia_cron |
|
84 | - $permissions['administer elysia_cron'] = array( |
|
83 | + // Exported permission: administer elysia_cron |
|
84 | + $permissions['administer elysia_cron'] = array( |
|
85 | 85 | 'name' => 'administer elysia_cron', |
86 | 86 | 'roles' => array( |
87 | - '0' => 'administrator', |
|
87 | + '0' => 'administrator', |
|
88 | 88 | ), |
89 | - ); |
|
89 | + ); |
|
90 | 90 | |
91 | - // Exported permission: administer features |
|
92 | - $permissions['administer features'] = array( |
|
91 | + // Exported permission: administer features |
|
92 | + $permissions['administer features'] = array( |
|
93 | 93 | 'name' => 'administer features', |
94 | 94 | 'roles' => array( |
95 | - '0' => 'administrator', |
|
95 | + '0' => 'administrator', |
|
96 | 96 | ), |
97 | - ); |
|
97 | + ); |
|
98 | 98 | |
99 | - // Exported permission: administer files |
|
100 | - $permissions['administer files'] = array( |
|
99 | + // Exported permission: administer files |
|
100 | + $permissions['administer files'] = array( |
|
101 | 101 | 'name' => 'administer files', |
102 | 102 | 'roles' => array( |
103 | - '0' => 'administrator', |
|
103 | + '0' => 'administrator', |
|
104 | 104 | ), |
105 | - ); |
|
105 | + ); |
|
106 | 106 | |
107 | - // Exported permission: administer filters |
|
108 | - $permissions['administer filters'] = array( |
|
107 | + // Exported permission: administer filters |
|
108 | + $permissions['administer filters'] = array( |
|
109 | 109 | 'name' => 'administer filters', |
110 | 110 | 'roles' => array( |
111 | - '0' => 'administrator', |
|
111 | + '0' => 'administrator', |
|
112 | 112 | ), |
113 | - ); |
|
113 | + ); |
|
114 | 114 | |
115 | - // Exported permission: administer flags |
|
116 | - $permissions['administer flags'] = array( |
|
115 | + // Exported permission: administer flags |
|
116 | + $permissions['administer flags'] = array( |
|
117 | 117 | 'name' => 'administer flags', |
118 | 118 | 'roles' => array( |
119 | - '0' => 'administrator', |
|
119 | + '0' => 'administrator', |
|
120 | 120 | ), |
121 | - ); |
|
121 | + ); |
|
122 | 122 | |
123 | - // Exported permission: administer imce(execute PHP) |
|
124 | - $permissions['administer imce(execute PHP)'] = array( |
|
123 | + // Exported permission: administer imce(execute PHP) |
|
124 | + $permissions['administer imce(execute PHP)'] = array( |
|
125 | 125 | 'name' => 'administer imce(execute PHP)', |
126 | 126 | 'roles' => array( |
127 | - '0' => 'administrator', |
|
127 | + '0' => 'administrator', |
|
128 | 128 | ), |
129 | - ); |
|
129 | + ); |
|
130 | 130 | |
131 | - // Exported permission: administer menu |
|
132 | - $permissions['administer menu'] = array( |
|
131 | + // Exported permission: administer menu |
|
132 | + $permissions['administer menu'] = array( |
|
133 | 133 | 'name' => 'administer menu', |
134 | 134 | 'roles' => array( |
135 | - '0' => 'administrator', |
|
136 | - '1' => 'content editor', |
|
135 | + '0' => 'administrator', |
|
136 | + '1' => 'content editor', |
|
137 | 137 | ), |
138 | - ); |
|
138 | + ); |
|
139 | 139 | |
140 | - // Exported permission: administer mini panels |
|
141 | - $permissions['administer mini panels'] = array( |
|
140 | + // Exported permission: administer mini panels |
|
141 | + $permissions['administer mini panels'] = array( |
|
142 | 142 | 'name' => 'administer mini panels', |
143 | 143 | 'roles' => array( |
144 | - '0' => 'administrator', |
|
144 | + '0' => 'administrator', |
|
145 | 145 | ), |
146 | - ); |
|
146 | + ); |
|
147 | 147 | |
148 | - // Exported permission: administer nodes |
|
149 | - $permissions['administer nodes'] = array( |
|
148 | + // Exported permission: administer nodes |
|
149 | + $permissions['administer nodes'] = array( |
|
150 | 150 | 'name' => 'administer nodes', |
151 | 151 | 'roles' => array( |
152 | - '0' => 'administrator', |
|
152 | + '0' => 'administrator', |
|
153 | 153 | ), |
154 | - ); |
|
154 | + ); |
|
155 | 155 | |
156 | - // Exported permission: administer page manager |
|
157 | - $permissions['administer page manager'] = array( |
|
156 | + // Exported permission: administer page manager |
|
157 | + $permissions['administer page manager'] = array( |
|
158 | 158 | 'name' => 'administer page manager', |
159 | 159 | 'roles' => array( |
160 | - '0' => 'administrator', |
|
160 | + '0' => 'administrator', |
|
161 | 161 | ), |
162 | - ); |
|
162 | + ); |
|
163 | 163 | |
164 | - // Exported permission: administer pane access |
|
165 | - $permissions['administer pane access'] = array( |
|
164 | + // Exported permission: administer pane access |
|
165 | + $permissions['administer pane access'] = array( |
|
166 | 166 | 'name' => 'administer pane access', |
167 | 167 | 'roles' => array( |
168 | - '0' => 'administrator', |
|
168 | + '0' => 'administrator', |
|
169 | 169 | ), |
170 | - ); |
|
170 | + ); |
|
171 | 171 | |
172 | - // Exported permission: administer pane visibility |
|
173 | - $permissions['administer pane visibility'] = array( |
|
172 | + // Exported permission: administer pane visibility |
|
173 | + $permissions['administer pane visibility'] = array( |
|
174 | 174 | 'name' => 'administer pane visibility', |
175 | 175 | 'roles' => array( |
176 | - '0' => 'administrator', |
|
176 | + '0' => 'administrator', |
|
177 | 177 | ), |
178 | - ); |
|
178 | + ); |
|
179 | 179 | |
180 | - // Exported permission: administer panel-nodes |
|
181 | - $permissions['administer panel-nodes'] = array( |
|
180 | + // Exported permission: administer panel-nodes |
|
181 | + $permissions['administer panel-nodes'] = array( |
|
182 | 182 | 'name' => 'administer panel-nodes', |
183 | 183 | 'roles' => array( |
184 | - '0' => 'administrator', |
|
184 | + '0' => 'administrator', |
|
185 | 185 | ), |
186 | - ); |
|
186 | + ); |
|
187 | 187 | |
188 | - // Exported permission: administer panels layouts |
|
189 | - $permissions['administer panels layouts'] = array( |
|
188 | + // Exported permission: administer panels layouts |
|
189 | + $permissions['administer panels layouts'] = array( |
|
190 | 190 | 'name' => 'administer panels layouts', |
191 | 191 | 'roles' => array( |
192 | - '0' => 'administrator', |
|
192 | + '0' => 'administrator', |
|
193 | 193 | ), |
194 | - ); |
|
194 | + ); |
|
195 | 195 | |
196 | - // Exported permission: administer pathauto |
|
197 | - $permissions['administer pathauto'] = array( |
|
196 | + // Exported permission: administer pathauto |
|
197 | + $permissions['administer pathauto'] = array( |
|
198 | 198 | 'name' => 'administer pathauto', |
199 | 199 | 'roles' => array( |
200 | - '0' => 'administrator', |
|
200 | + '0' => 'administrator', |
|
201 | 201 | ), |
202 | - ); |
|
202 | + ); |
|
203 | 203 | |
204 | - // Exported permission: administer permissions |
|
205 | - $permissions['administer permissions'] = array( |
|
204 | + // Exported permission: administer permissions |
|
205 | + $permissions['administer permissions'] = array( |
|
206 | 206 | 'name' => 'administer permissions', |
207 | 207 | 'roles' => array( |
208 | - '0' => 'administrator', |
|
208 | + '0' => 'administrator', |
|
209 | 209 | ), |
210 | - ); |
|
210 | + ); |
|
211 | 211 | |
212 | - // Exported permission: administer rules |
|
213 | - $permissions['administer rules'] = array( |
|
212 | + // Exported permission: administer rules |
|
213 | + $permissions['administer rules'] = array( |
|
214 | 214 | 'name' => 'administer rules', |
215 | 215 | 'roles' => array( |
216 | - '0' => 'administrator', |
|
216 | + '0' => 'administrator', |
|
217 | 217 | ), |
218 | - ); |
|
218 | + ); |
|
219 | 219 | |
220 | - // Exported permission: administer site configuration |
|
221 | - $permissions['administer site configuration'] = array( |
|
220 | + // Exported permission: administer site configuration |
|
221 | + $permissions['administer site configuration'] = array( |
|
222 | 222 | 'name' => 'administer site configuration', |
223 | 223 | 'roles' => array( |
224 | - '0' => 'administrator', |
|
224 | + '0' => 'administrator', |
|
225 | 225 | ), |
226 | - ); |
|
226 | + ); |
|
227 | 227 | |
228 | - // Exported permission: administer smtp module |
|
229 | - $permissions['administer smtp module'] = array( |
|
228 | + // Exported permission: administer smtp module |
|
229 | + $permissions['administer smtp module'] = array( |
|
230 | 230 | 'name' => 'administer smtp module', |
231 | 231 | 'roles' => array( |
232 | - '0' => 'administrator', |
|
232 | + '0' => 'administrator', |
|
233 | 233 | ), |
234 | - ); |
|
234 | + ); |
|
235 | 235 | |
236 | - // Exported permission: administer tabtamer |
|
237 | - $permissions['administer tabtamer'] = array( |
|
236 | + // Exported permission: administer tabtamer |
|
237 | + $permissions['administer tabtamer'] = array( |
|
238 | 238 | 'name' => 'administer tabtamer', |
239 | 239 | 'roles' => array( |
240 | - '0' => 'administrator', |
|
240 | + '0' => 'administrator', |
|
241 | 241 | ), |
242 | - ); |
|
242 | + ); |
|
243 | 243 | |
244 | - // Exported permission: administer taxonomy |
|
245 | - $permissions['administer taxonomy'] = array( |
|
244 | + // Exported permission: administer taxonomy |
|
245 | + $permissions['administer taxonomy'] = array( |
|
246 | 246 | 'name' => 'administer taxonomy', |
247 | 247 | 'roles' => array( |
248 | - '0' => 'administrator', |
|
248 | + '0' => 'administrator', |
|
249 | 249 | ), |
250 | - ); |
|
250 | + ); |
|
251 | 251 | |
252 | - // Exported permission: administer url aliases |
|
253 | - $permissions['administer url aliases'] = array( |
|
252 | + // Exported permission: administer url aliases |
|
253 | + $permissions['administer url aliases'] = array( |
|
254 | 254 | 'name' => 'administer url aliases', |
255 | 255 | 'roles' => array( |
256 | - '0' => 'administrator', |
|
256 | + '0' => 'administrator', |
|
257 | 257 | ), |
258 | - ); |
|
258 | + ); |
|
259 | 259 | |
260 | - // Exported permission: administer users |
|
261 | - $permissions['administer users'] = array( |
|
260 | + // Exported permission: administer users |
|
261 | + $permissions['administer users'] = array( |
|
262 | 262 | 'name' => 'administer users', |
263 | 263 | 'roles' => array( |
264 | - '0' => 'administrator', |
|
264 | + '0' => 'administrator', |
|
265 | 265 | ), |
266 | - ); |
|
266 | + ); |
|
267 | 267 | |
268 | - // Exported permission: administer views |
|
269 | - $permissions['administer views'] = array( |
|
268 | + // Exported permission: administer views |
|
269 | + $permissions['administer views'] = array( |
|
270 | 270 | 'name' => 'administer views', |
271 | 271 | 'roles' => array( |
272 | - '0' => 'administrator', |
|
272 | + '0' => 'administrator', |
|
273 | 273 | ), |
274 | - ); |
|
274 | + ); |
|
275 | 275 | |
276 | - // Exported permission: assign all roles |
|
277 | - $permissions['assign all roles'] = array( |
|
276 | + // Exported permission: assign all roles |
|
277 | + $permissions['assign all roles'] = array( |
|
278 | 278 | 'name' => 'assign all roles', |
279 | 279 | 'roles' => array( |
280 | - '0' => 'administrator', |
|
280 | + '0' => 'administrator', |
|
281 | 281 | ), |
282 | - ); |
|
282 | + ); |
|
283 | 283 | |
284 | - // Exported permission: change own username |
|
285 | - $permissions['change own username'] = array( |
|
284 | + // Exported permission: change own username |
|
285 | + $permissions['change own username'] = array( |
|
286 | 286 | 'name' => 'change own username', |
287 | 287 | 'roles' => array( |
288 | - '0' => 'administrator', |
|
288 | + '0' => 'administrator', |
|
289 | 289 | ), |
290 | - ); |
|
290 | + ); |
|
291 | 291 | |
292 | - // Exported permission: create mini panels |
|
293 | - $permissions['create mini panels'] = array( |
|
292 | + // Exported permission: create mini panels |
|
293 | + $permissions['create mini panels'] = array( |
|
294 | 294 | 'name' => 'create mini panels', |
295 | 295 | 'roles' => array( |
296 | - '0' => 'administrator', |
|
296 | + '0' => 'administrator', |
|
297 | 297 | ), |
298 | - ); |
|
298 | + ); |
|
299 | 299 | |
300 | - // Exported permission: create page content |
|
301 | - $permissions['create page content'] = array( |
|
300 | + // Exported permission: create page content |
|
301 | + $permissions['create page content'] = array( |
|
302 | 302 | 'name' => 'create page content', |
303 | 303 | 'roles' => array( |
304 | - '0' => 'administrator', |
|
305 | - '1' => 'content editor', |
|
304 | + '0' => 'administrator', |
|
305 | + '1' => 'content editor', |
|
306 | 306 | ), |
307 | - ); |
|
307 | + ); |
|
308 | 308 | |
309 | - // Exported permission: create panel-nodes |
|
310 | - $permissions['create panel-nodes'] = array( |
|
309 | + // Exported permission: create panel-nodes |
|
310 | + $permissions['create panel-nodes'] = array( |
|
311 | 311 | 'name' => 'create panel-nodes', |
312 | 312 | 'roles' => array( |
313 | - '0' => 'administrator', |
|
313 | + '0' => 'administrator', |
|
314 | 314 | ), |
315 | - ); |
|
315 | + ); |
|
316 | 316 | |
317 | - // Exported permission: create story content |
|
318 | - $permissions['create story content'] = array( |
|
317 | + // Exported permission: create story content |
|
318 | + $permissions['create story content'] = array( |
|
319 | 319 | 'name' => 'create story content', |
320 | 320 | 'roles' => array( |
321 | - '0' => 'administrator', |
|
321 | + '0' => 'administrator', |
|
322 | 322 | ), |
323 | - ); |
|
323 | + ); |
|
324 | 324 | |
325 | - // Exported permission: create url aliases |
|
326 | - $permissions['create url aliases'] = array( |
|
325 | + // Exported permission: create url aliases |
|
326 | + $permissions['create url aliases'] = array( |
|
327 | 327 | 'name' => 'create url aliases', |
328 | 328 | 'roles' => array( |
329 | - '0' => 'administrator', |
|
329 | + '0' => 'administrator', |
|
330 | 330 | ), |
331 | - ); |
|
331 | + ); |
|
332 | 332 | |
333 | - // Exported permission: delete any page content |
|
334 | - $permissions['delete any page content'] = array( |
|
333 | + // Exported permission: delete any page content |
|
334 | + $permissions['delete any page content'] = array( |
|
335 | 335 | 'name' => 'delete any page content', |
336 | 336 | 'roles' => array( |
337 | - '0' => 'administrator', |
|
338 | - '1' => 'content editor', |
|
337 | + '0' => 'administrator', |
|
338 | + '1' => 'content editor', |
|
339 | 339 | ), |
340 | - ); |
|
340 | + ); |
|
341 | 341 | |
342 | - // Exported permission: delete any panel-nodes |
|
343 | - $permissions['delete any panel-nodes'] = array( |
|
342 | + // Exported permission: delete any panel-nodes |
|
343 | + $permissions['delete any panel-nodes'] = array( |
|
344 | 344 | 'name' => 'delete any panel-nodes', |
345 | 345 | 'roles' => array( |
346 | - '0' => 'administrator', |
|
346 | + '0' => 'administrator', |
|
347 | 347 | ), |
348 | - ); |
|
348 | + ); |
|
349 | 349 | |
350 | - // Exported permission: delete any story content |
|
351 | - $permissions['delete any story content'] = array( |
|
350 | + // Exported permission: delete any story content |
|
351 | + $permissions['delete any story content'] = array( |
|
352 | 352 | 'name' => 'delete any story content', |
353 | 353 | 'roles' => array( |
354 | - '0' => 'administrator', |
|
354 | + '0' => 'administrator', |
|
355 | 355 | ), |
356 | - ); |
|
356 | + ); |
|
357 | 357 | |
358 | - // Exported permission: delete own page content |
|
359 | - $permissions['delete own page content'] = array( |
|
358 | + // Exported permission: delete own page content |
|
359 | + $permissions['delete own page content'] = array( |
|
360 | 360 | 'name' => 'delete own page content', |
361 | 361 | 'roles' => array( |
362 | - '0' => 'administrator', |
|
362 | + '0' => 'administrator', |
|
363 | 363 | ), |
364 | - ); |
|
364 | + ); |
|
365 | 365 | |
366 | - // Exported permission: delete own panel-nodes |
|
367 | - $permissions['delete own panel-nodes'] = array( |
|
366 | + // Exported permission: delete own panel-nodes |
|
367 | + $permissions['delete own panel-nodes'] = array( |
|
368 | 368 | 'name' => 'delete own panel-nodes', |
369 | 369 | 'roles' => array( |
370 | - '0' => 'administrator', |
|
370 | + '0' => 'administrator', |
|
371 | 371 | ), |
372 | - ); |
|
372 | + ); |
|
373 | 373 | |
374 | - // Exported permission: delete own story content |
|
375 | - $permissions['delete own story content'] = array( |
|
374 | + // Exported permission: delete own story content |
|
375 | + $permissions['delete own story content'] = array( |
|
376 | 376 | 'name' => 'delete own story content', |
377 | 377 | 'roles' => array( |
378 | - '0' => 'administrator', |
|
378 | + '0' => 'administrator', |
|
379 | 379 | ), |
380 | - ); |
|
380 | + ); |
|
381 | 381 | |
382 | - // Exported permission: delete revisions |
|
383 | - $permissions['delete revisions'] = array( |
|
382 | + // Exported permission: delete revisions |
|
383 | + $permissions['delete revisions'] = array( |
|
384 | 384 | 'name' => 'delete revisions', |
385 | 385 | 'roles' => array( |
386 | - '0' => 'administrator', |
|
387 | - '1' => 'content editor', |
|
386 | + '0' => 'administrator', |
|
387 | + '1' => 'content editor', |
|
388 | 388 | ), |
389 | - ); |
|
389 | + ); |
|
390 | 390 | |
391 | - // Exported permission: edit any page content |
|
392 | - $permissions['edit any page content'] = array( |
|
391 | + // Exported permission: edit any page content |
|
392 | + $permissions['edit any page content'] = array( |
|
393 | 393 | 'name' => 'edit any page content', |
394 | 394 | 'roles' => array( |
395 | - '0' => 'administrator', |
|
396 | - '1' => 'content editor', |
|
395 | + '0' => 'administrator', |
|
396 | + '1' => 'content editor', |
|
397 | 397 | ), |
398 | - ); |
|
398 | + ); |
|
399 | 399 | |
400 | - // Exported permission: edit any panel-nodes |
|
401 | - $permissions['edit any panel-nodes'] = array( |
|
400 | + // Exported permission: edit any panel-nodes |
|
401 | + $permissions['edit any panel-nodes'] = array( |
|
402 | 402 | 'name' => 'edit any panel-nodes', |
403 | 403 | 'roles' => array( |
404 | - '0' => 'administrator', |
|
404 | + '0' => 'administrator', |
|
405 | 405 | ), |
406 | - ); |
|
406 | + ); |
|
407 | 407 | |
408 | - // Exported permission: edit any story content |
|
409 | - $permissions['edit any story content'] = array( |
|
408 | + // Exported permission: edit any story content |
|
409 | + $permissions['edit any story content'] = array( |
|
410 | 410 | 'name' => 'edit any story content', |
411 | 411 | 'roles' => array( |
412 | - '0' => 'administrator', |
|
412 | + '0' => 'administrator', |
|
413 | 413 | ), |
414 | - ); |
|
414 | + ); |
|
415 | 415 | |
416 | - // Exported permission: edit own page content |
|
417 | - $permissions['edit own page content'] = array( |
|
416 | + // Exported permission: edit own page content |
|
417 | + $permissions['edit own page content'] = array( |
|
418 | 418 | 'name' => 'edit own page content', |
419 | 419 | 'roles' => array( |
420 | - '0' => 'administrator', |
|
420 | + '0' => 'administrator', |
|
421 | 421 | ), |
422 | - ); |
|
422 | + ); |
|
423 | 423 | |
424 | - // Exported permission: edit own panel-nodes |
|
425 | - $permissions['edit own panel-nodes'] = array( |
|
424 | + // Exported permission: edit own panel-nodes |
|
425 | + $permissions['edit own panel-nodes'] = array( |
|
426 | 426 | 'name' => 'edit own panel-nodes', |
427 | 427 | 'roles' => array( |
428 | - '0' => 'administrator', |
|
428 | + '0' => 'administrator', |
|
429 | 429 | ), |
430 | - ); |
|
430 | + ); |
|
431 | 431 | |
432 | - // Exported permission: edit own story content |
|
433 | - $permissions['edit own story content'] = array( |
|
432 | + // Exported permission: edit own story content |
|
433 | + $permissions['edit own story content'] = array( |
|
434 | 434 | 'name' => 'edit own story content', |
435 | 435 | 'roles' => array( |
436 | - '0' => 'administrator', |
|
436 | + '0' => 'administrator', |
|
437 | 437 | ), |
438 | - ); |
|
438 | + ); |
|
439 | 439 | |
440 | - // Exported permission: ignore user |
|
441 | - $permissions['ignore user'] = array( |
|
440 | + // Exported permission: ignore user |
|
441 | + $permissions['ignore user'] = array( |
|
442 | 442 | 'name' => 'ignore user', |
443 | 443 | 'roles' => array( |
444 | - '0' => 'authenticated user', |
|
444 | + '0' => 'authenticated user', |
|
445 | 445 | ), |
446 | - ); |
|
446 | + ); |
|
447 | 447 | |
448 | - // Exported permission: import input formats |
|
449 | - $permissions['import input formats'] = array( |
|
448 | + // Exported permission: import input formats |
|
449 | + $permissions['import input formats'] = array( |
|
450 | 450 | 'name' => 'import input formats', |
451 | 451 | 'roles' => array(), |
452 | - ); |
|
452 | + ); |
|
453 | 453 | |
454 | - // Exported permission: manage features |
|
455 | - $permissions['manage features'] = array( |
|
454 | + // Exported permission: manage features |
|
455 | + $permissions['manage features'] = array( |
|
456 | 456 | 'name' => 'manage features', |
457 | 457 | 'roles' => array( |
458 | - '0' => 'administrator', |
|
458 | + '0' => 'administrator', |
|
459 | 459 | ), |
460 | - ); |
|
460 | + ); |
|
461 | 461 | |
462 | - // Exported permission: notify of path changes |
|
463 | - $permissions['notify of path changes'] = array( |
|
462 | + // Exported permission: notify of path changes |
|
463 | + $permissions['notify of path changes'] = array( |
|
464 | 464 | 'name' => 'notify of path changes', |
465 | 465 | 'roles' => array( |
466 | - '0' => 'administrator', |
|
466 | + '0' => 'administrator', |
|
467 | 467 | ), |
468 | - ); |
|
468 | + ); |
|
469 | 469 | |
470 | - // Exported permission: reset abuse flags |
|
471 | - $permissions['reset abuse flags'] = array( |
|
470 | + // Exported permission: reset abuse flags |
|
471 | + $permissions['reset abuse flags'] = array( |
|
472 | 472 | 'name' => 'reset abuse flags', |
473 | 473 | 'roles' => array( |
474 | - '0' => 'administrator', |
|
475 | - '1' => 'moderator', |
|
474 | + '0' => 'administrator', |
|
475 | + '1' => 'moderator', |
|
476 | 476 | ), |
477 | - ); |
|
477 | + ); |
|
478 | 478 | |
479 | - // Exported permission: revert revisions |
|
480 | - $permissions['revert revisions'] = array( |
|
479 | + // Exported permission: revert revisions |
|
480 | + $permissions['revert revisions'] = array( |
|
481 | 481 | 'name' => 'revert revisions', |
482 | 482 | 'roles' => array( |
483 | - '0' => 'administrator', |
|
484 | - '1' => 'content editor', |
|
483 | + '0' => 'administrator', |
|
484 | + '1' => 'content editor', |
|
485 | 485 | ), |
486 | - ); |
|
486 | + ); |
|
487 | 487 | |
488 | - // Exported permission: select different theme |
|
489 | - $permissions['select different theme'] = array( |
|
488 | + // Exported permission: select different theme |
|
489 | + $permissions['select different theme'] = array( |
|
490 | 490 | 'name' => 'select different theme', |
491 | 491 | 'roles' => array( |
492 | - '0' => 'administrator', |
|
492 | + '0' => 'administrator', |
|
493 | 493 | ), |
494 | - ); |
|
494 | + ); |
|
495 | 495 | |
496 | - // Exported permission: use PHP for block visibility |
|
497 | - $permissions['use PHP for block visibility'] = array( |
|
496 | + // Exported permission: use PHP for block visibility |
|
497 | + $permissions['use PHP for block visibility'] = array( |
|
498 | 498 | 'name' => 'use PHP for block visibility', |
499 | 499 | 'roles' => array( |
500 | - '0' => 'administrator', |
|
500 | + '0' => 'administrator', |
|
501 | 501 | ), |
502 | - ); |
|
502 | + ); |
|
503 | 503 | |
504 | - // Exported permission: use PHP for me alias paths |
|
505 | - $permissions['use PHP for me alias paths'] = array( |
|
504 | + // Exported permission: use PHP for me alias paths |
|
505 | + $permissions['use PHP for me alias paths'] = array( |
|
506 | 506 | 'name' => 'use PHP for me alias paths', |
507 | 507 | 'roles' => array( |
508 | - '0' => 'administrator', |
|
508 | + '0' => 'administrator', |
|
509 | 509 | ), |
510 | - ); |
|
510 | + ); |
|
511 | 511 | |
512 | - // Exported permission: use flag import |
|
513 | - $permissions['use flag import'] = array( |
|
512 | + // Exported permission: use flag import |
|
513 | + $permissions['use flag import'] = array( |
|
514 | 514 | 'name' => 'use flag import', |
515 | 515 | 'roles' => array( |
516 | - '0' => 'administrator', |
|
516 | + '0' => 'administrator', |
|
517 | 517 | ), |
518 | - ); |
|
518 | + ); |
|
519 | 519 | |
520 | - // Exported permission: use page manager |
|
521 | - $permissions['use page manager'] = array( |
|
520 | + // Exported permission: use page manager |
|
521 | + $permissions['use page manager'] = array( |
|
522 | 522 | 'name' => 'use page manager', |
523 | 523 | 'roles' => array( |
524 | - '0' => 'administrator', |
|
524 | + '0' => 'administrator', |
|
525 | 525 | ), |
526 | - ); |
|
526 | + ); |
|
527 | 527 | |
528 | - // Exported permission: use panels caching features |
|
529 | - $permissions['use panels caching features'] = array( |
|
528 | + // Exported permission: use panels caching features |
|
529 | + $permissions['use panels caching features'] = array( |
|
530 | 530 | 'name' => 'use panels caching features', |
531 | 531 | 'roles' => array( |
532 | - '0' => 'administrator', |
|
532 | + '0' => 'administrator', |
|
533 | 533 | ), |
534 | - ); |
|
534 | + ); |
|
535 | 535 | |
536 | - // Exported permission: use panels dashboard |
|
537 | - $permissions['use panels dashboard'] = array( |
|
536 | + // Exported permission: use panels dashboard |
|
537 | + $permissions['use panels dashboard'] = array( |
|
538 | 538 | 'name' => 'use panels dashboard', |
539 | 539 | 'roles' => array( |
540 | - '0' => 'administrator', |
|
540 | + '0' => 'administrator', |
|
541 | 541 | ), |
542 | - ); |
|
542 | + ); |
|
543 | 543 | |
544 | - // Exported permission: use panels in place editing |
|
545 | - $permissions['use panels in place editing'] = array( |
|
544 | + // Exported permission: use panels in place editing |
|
545 | + $permissions['use panels in place editing'] = array( |
|
546 | 546 | 'name' => 'use panels in place editing', |
547 | 547 | 'roles' => array( |
548 | - '0' => 'administrator', |
|
548 | + '0' => 'administrator', |
|
549 | 549 | ), |
550 | - ); |
|
550 | + ); |
|
551 | 551 | |
552 | - // Exported permission: view all panes |
|
553 | - $permissions['view all panes'] = array( |
|
552 | + // Exported permission: view all panes |
|
553 | + $permissions['view all panes'] = array( |
|
554 | 554 | 'name' => 'view all panes', |
555 | 555 | 'roles' => array( |
556 | - '0' => 'administrator', |
|
556 | + '0' => 'administrator', |
|
557 | 557 | ), |
558 | - ); |
|
558 | + ); |
|
559 | 559 | |
560 | - // Exported permission: view pane admin links |
|
561 | - $permissions['view pane admin links'] = array( |
|
560 | + // Exported permission: view pane admin links |
|
561 | + $permissions['view pane admin links'] = array( |
|
562 | 562 | 'name' => 'view pane admin links', |
563 | 563 | 'roles' => array( |
564 | - '0' => 'administrator', |
|
564 | + '0' => 'administrator', |
|
565 | 565 | ), |
566 | - ); |
|
566 | + ); |
|
567 | 567 | |
568 | - // Exported permission: view revisions |
|
569 | - $permissions['view revisions'] = array( |
|
568 | + // Exported permission: view revisions |
|
569 | + $permissions['view revisions'] = array( |
|
570 | 570 | 'name' => 'view revisions', |
571 | 571 | 'roles' => array( |
572 | - '0' => 'administrator', |
|
573 | - '1' => 'content editor', |
|
572 | + '0' => 'administrator', |
|
573 | + '1' => 'content editor', |
|
574 | 574 | ), |
575 | - ); |
|
575 | + ); |
|
576 | 576 | |
577 | - return $permissions; |
|
577 | + return $permissions; |
|
578 | 578 | } |
@@ -4,20 +4,20 @@ discard block |
||
4 | 4 | * Implementation of hook_default_wysiwyg(). |
5 | 5 | */ |
6 | 6 | function boinc_standard_default_wysiwyg() { |
7 | - $export = array(); |
|
7 | + $export = array(); |
|
8 | 8 | |
9 | - $wysiwyg = new stdClass; |
|
10 | - $wysiwyg->disabled = FALSE; /* Edit this to true to make a default wysiwyg disabled initially */ |
|
11 | - $wysiwyg->api_version = 2; |
|
12 | - $wysiwyg->editor = 'tinymce'; |
|
13 | - $wysiwyg->settings = array( |
|
9 | + $wysiwyg = new stdClass; |
|
10 | + $wysiwyg->disabled = FALSE; /* Edit this to true to make a default wysiwyg disabled initially */ |
|
11 | + $wysiwyg->api_version = 2; |
|
12 | + $wysiwyg->editor = 'tinymce'; |
|
13 | + $wysiwyg->settings = array( |
|
14 | 14 | 'default' => 1, |
15 | 15 | 'user_choose' => 1, |
16 | 16 | 'show_toggle' => 1, |
17 | 17 | 'theme' => 'advanced', |
18 | 18 | 'language' => 'en', |
19 | 19 | 'buttons' => array( |
20 | - 'default' => array( |
|
20 | + 'default' => array( |
|
21 | 21 | 'bold' => 1, |
22 | 22 | 'italic' => 1, |
23 | 23 | 'underline' => 1, |
@@ -40,25 +40,25 @@ discard block |
||
40 | 40 | 'hr' => 1, |
41 | 41 | 'removeformat' => 1, |
42 | 42 | 'charmap' => 1, |
43 | - ), |
|
44 | - 'advimage' => array( |
|
43 | + ), |
|
44 | + 'advimage' => array( |
|
45 | 45 | 'advimage' => 1, |
46 | - ), |
|
47 | - 'emotions' => array( |
|
46 | + ), |
|
47 | + 'emotions' => array( |
|
48 | 48 | 'emotions' => 1, |
49 | - ), |
|
50 | - 'font' => array( |
|
49 | + ), |
|
50 | + 'font' => array( |
|
51 | 51 | 'formatselect' => 1, |
52 | - ), |
|
53 | - 'paste' => array( |
|
52 | + ), |
|
53 | + 'paste' => array( |
|
54 | 54 | 'pastetext' => 1, |
55 | - ), |
|
56 | - 'media' => array( |
|
55 | + ), |
|
56 | + 'media' => array( |
|
57 | 57 | 'media' => 1, |
58 | - ), |
|
59 | - 'drupal' => array( |
|
58 | + ), |
|
59 | + 'drupal' => array( |
|
60 | 60 | 'linebreaks' => 1, |
61 | - ), |
|
61 | + ), |
|
62 | 62 | ), |
63 | 63 | 'toolbar_loc' => 'top', |
64 | 64 | 'toolbar_align' => 'left', |
@@ -76,9 +76,9 @@ discard block |
||
76 | 76 | 'css_classes' => 'Image with caption=standalone-image |
77 | 77 | Float left with caption=image-left |
78 | 78 | Float right with caption=image-right', |
79 | - ); |
|
80 | - $wysiwyg->machine = 'rich_text'; |
|
81 | - $export['rich_text'] = $wysiwyg; |
|
79 | + ); |
|
80 | + $wysiwyg->machine = 'rich_text'; |
|
81 | + $export['rich_text'] = $wysiwyg; |
|
82 | 82 | |
83 | - return $export; |
|
83 | + return $export; |
|
84 | 84 | } |
@@ -7,7 +7,7 @@ |
||
7 | 7 | $export = array(); |
8 | 8 | |
9 | 9 | $wysiwyg = new stdClass; |
10 | - $wysiwyg->disabled = FALSE; /* Edit this to true to make a default wysiwyg disabled initially */ |
|
10 | + $wysiwyg->disabled = false; /* Edit this to true to make a default wysiwyg disabled initially */ |
|
11 | 11 | $wysiwyg->api_version = 2; |
12 | 12 | $wysiwyg->editor = 'tinymce'; |
13 | 13 | $wysiwyg->settings = array( |
@@ -4,959 +4,959 @@ discard block |
||
4 | 4 | * Implementation of hook_strongarm(). |
5 | 5 | */ |
6 | 6 | function boinc_standard_strongarm() { |
7 | - $export = array(); |
|
8 | - |
|
9 | - $strongarm = new stdClass; |
|
10 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
11 | - $strongarm->api_version = 1; |
|
12 | - $strongarm->name = 'admin_theme'; |
|
13 | - $strongarm->value = 'garland'; |
|
14 | - $export['admin_theme'] = $strongarm; |
|
15 | - |
|
16 | - $strongarm = new stdClass; |
|
17 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
18 | - $strongarm->api_version = 1; |
|
19 | - $strongarm->name = 'comment_anonymous_page'; |
|
20 | - $strongarm->value = 0; |
|
21 | - $export['comment_anonymous_page'] = $strongarm; |
|
22 | - |
|
23 | - $strongarm = new stdClass; |
|
24 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
25 | - $strongarm->api_version = 1; |
|
26 | - $strongarm->name = 'comment_controls_page'; |
|
27 | - $strongarm->value = '3'; |
|
28 | - $export['comment_controls_page'] = $strongarm; |
|
29 | - |
|
30 | - $strongarm = new stdClass; |
|
31 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
32 | - $strongarm->api_version = 1; |
|
33 | - $strongarm->name = 'comment_default_mode_page'; |
|
34 | - $strongarm->value = '4'; |
|
35 | - $export['comment_default_mode_page'] = $strongarm; |
|
36 | - |
|
37 | - $strongarm = new stdClass; |
|
38 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
39 | - $strongarm->api_version = 1; |
|
40 | - $strongarm->name = 'comment_default_order_page'; |
|
41 | - $strongarm->value = '1'; |
|
42 | - $export['comment_default_order_page'] = $strongarm; |
|
43 | - |
|
44 | - $strongarm = new stdClass; |
|
45 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
46 | - $strongarm->api_version = 1; |
|
47 | - $strongarm->name = 'comment_default_per_page_page'; |
|
48 | - $strongarm->value = '50'; |
|
49 | - $export['comment_default_per_page_page'] = $strongarm; |
|
50 | - |
|
51 | - $strongarm = new stdClass; |
|
52 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
53 | - $strongarm->api_version = 1; |
|
54 | - $strongarm->name = 'comment_form_location_page'; |
|
55 | - $strongarm->value = '0'; |
|
56 | - $export['comment_form_location_page'] = $strongarm; |
|
57 | - |
|
58 | - $strongarm = new stdClass; |
|
59 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
60 | - $strongarm->api_version = 1; |
|
61 | - $strongarm->name = 'comment_page'; |
|
62 | - $strongarm->value = 0; |
|
63 | - $export['comment_page'] = $strongarm; |
|
64 | - |
|
65 | - $strongarm = new stdClass; |
|
66 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
67 | - $strongarm->api_version = 1; |
|
68 | - $strongarm->name = 'comment_preview_page'; |
|
69 | - $strongarm->value = '1'; |
|
70 | - $export['comment_preview_page'] = $strongarm; |
|
71 | - |
|
72 | - $strongarm = new stdClass; |
|
73 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
74 | - $strongarm->api_version = 1; |
|
75 | - $strongarm->name = 'comment_subject_field_page'; |
|
76 | - $strongarm->value = '1'; |
|
77 | - $export['comment_subject_field_page'] = $strongarm; |
|
78 | - |
|
79 | - $strongarm = new stdClass; |
|
80 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
81 | - $strongarm->api_version = 1; |
|
82 | - $strongarm->name = 'error_level'; |
|
83 | - $strongarm->value = '0'; |
|
84 | - $export['error_level'] = $strongarm; |
|
85 | - |
|
86 | - $strongarm = new stdClass; |
|
87 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
88 | - $strongarm->api_version = 1; |
|
89 | - $strongarm->name = 'filter_default_format'; |
|
90 | - $strongarm->value = '4'; |
|
91 | - $export['filter_default_format'] = $strongarm; |
|
92 | - |
|
93 | - $strongarm = new stdClass; |
|
94 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
95 | - $strongarm->api_version = 1; |
|
96 | - $strongarm->name = 'format'; |
|
97 | - $strongarm->value = '4'; |
|
98 | - $export['format'] = $strongarm; |
|
99 | - |
|
100 | - $strongarm = new stdClass; |
|
101 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
102 | - $strongarm->api_version = 1; |
|
103 | - $strongarm->name = 'imce_profiles'; |
|
104 | - $strongarm->value = array( |
|
7 | + $export = array(); |
|
8 | + |
|
9 | + $strongarm = new stdClass; |
|
10 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
11 | + $strongarm->api_version = 1; |
|
12 | + $strongarm->name = 'admin_theme'; |
|
13 | + $strongarm->value = 'garland'; |
|
14 | + $export['admin_theme'] = $strongarm; |
|
15 | + |
|
16 | + $strongarm = new stdClass; |
|
17 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
18 | + $strongarm->api_version = 1; |
|
19 | + $strongarm->name = 'comment_anonymous_page'; |
|
20 | + $strongarm->value = 0; |
|
21 | + $export['comment_anonymous_page'] = $strongarm; |
|
22 | + |
|
23 | + $strongarm = new stdClass; |
|
24 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
25 | + $strongarm->api_version = 1; |
|
26 | + $strongarm->name = 'comment_controls_page'; |
|
27 | + $strongarm->value = '3'; |
|
28 | + $export['comment_controls_page'] = $strongarm; |
|
29 | + |
|
30 | + $strongarm = new stdClass; |
|
31 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
32 | + $strongarm->api_version = 1; |
|
33 | + $strongarm->name = 'comment_default_mode_page'; |
|
34 | + $strongarm->value = '4'; |
|
35 | + $export['comment_default_mode_page'] = $strongarm; |
|
36 | + |
|
37 | + $strongarm = new stdClass; |
|
38 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
39 | + $strongarm->api_version = 1; |
|
40 | + $strongarm->name = 'comment_default_order_page'; |
|
41 | + $strongarm->value = '1'; |
|
42 | + $export['comment_default_order_page'] = $strongarm; |
|
43 | + |
|
44 | + $strongarm = new stdClass; |
|
45 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
46 | + $strongarm->api_version = 1; |
|
47 | + $strongarm->name = 'comment_default_per_page_page'; |
|
48 | + $strongarm->value = '50'; |
|
49 | + $export['comment_default_per_page_page'] = $strongarm; |
|
50 | + |
|
51 | + $strongarm = new stdClass; |
|
52 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
53 | + $strongarm->api_version = 1; |
|
54 | + $strongarm->name = 'comment_form_location_page'; |
|
55 | + $strongarm->value = '0'; |
|
56 | + $export['comment_form_location_page'] = $strongarm; |
|
57 | + |
|
58 | + $strongarm = new stdClass; |
|
59 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
60 | + $strongarm->api_version = 1; |
|
61 | + $strongarm->name = 'comment_page'; |
|
62 | + $strongarm->value = 0; |
|
63 | + $export['comment_page'] = $strongarm; |
|
64 | + |
|
65 | + $strongarm = new stdClass; |
|
66 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
67 | + $strongarm->api_version = 1; |
|
68 | + $strongarm->name = 'comment_preview_page'; |
|
69 | + $strongarm->value = '1'; |
|
70 | + $export['comment_preview_page'] = $strongarm; |
|
71 | + |
|
72 | + $strongarm = new stdClass; |
|
73 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
74 | + $strongarm->api_version = 1; |
|
75 | + $strongarm->name = 'comment_subject_field_page'; |
|
76 | + $strongarm->value = '1'; |
|
77 | + $export['comment_subject_field_page'] = $strongarm; |
|
78 | + |
|
79 | + $strongarm = new stdClass; |
|
80 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
81 | + $strongarm->api_version = 1; |
|
82 | + $strongarm->name = 'error_level'; |
|
83 | + $strongarm->value = '0'; |
|
84 | + $export['error_level'] = $strongarm; |
|
85 | + |
|
86 | + $strongarm = new stdClass; |
|
87 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
88 | + $strongarm->api_version = 1; |
|
89 | + $strongarm->name = 'filter_default_format'; |
|
90 | + $strongarm->value = '4'; |
|
91 | + $export['filter_default_format'] = $strongarm; |
|
92 | + |
|
93 | + $strongarm = new stdClass; |
|
94 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
95 | + $strongarm->api_version = 1; |
|
96 | + $strongarm->name = 'format'; |
|
97 | + $strongarm->value = '4'; |
|
98 | + $export['format'] = $strongarm; |
|
99 | + |
|
100 | + $strongarm = new stdClass; |
|
101 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
102 | + $strongarm->api_version = 1; |
|
103 | + $strongarm->name = 'imce_profiles'; |
|
104 | + $strongarm->value = array( |
|
105 | 105 | 1 => array( |
106 | - 'name' => 'User-1', |
|
107 | - 'usertab' => 1, |
|
108 | - 'filesize' => 0, |
|
109 | - 'quota' => 0, |
|
110 | - 'tuquota' => 0, |
|
111 | - 'extensions' => '*', |
|
112 | - 'dimensions' => '1200x1200', |
|
113 | - 'filenum' => 0, |
|
114 | - 'directories' => array( |
|
106 | + 'name' => 'User-1', |
|
107 | + 'usertab' => 1, |
|
108 | + 'filesize' => 0, |
|
109 | + 'quota' => 0, |
|
110 | + 'tuquota' => 0, |
|
111 | + 'extensions' => '*', |
|
112 | + 'dimensions' => '1200x1200', |
|
113 | + 'filenum' => 0, |
|
114 | + 'directories' => array( |
|
115 | 115 | 0 => array( |
116 | - 'name' => '.', |
|
117 | - 'subnav' => 1, |
|
118 | - 'browse' => 1, |
|
119 | - 'upload' => 1, |
|
120 | - 'thumb' => 1, |
|
121 | - 'delete' => 1, |
|
122 | - 'resize' => 1, |
|
116 | + 'name' => '.', |
|
117 | + 'subnav' => 1, |
|
118 | + 'browse' => 1, |
|
119 | + 'upload' => 1, |
|
120 | + 'thumb' => 1, |
|
121 | + 'delete' => 1, |
|
122 | + 'resize' => 1, |
|
123 | 123 | ), |
124 | - ), |
|
125 | - 'thumbnails' => array( |
|
124 | + ), |
|
125 | + 'thumbnails' => array( |
|
126 | 126 | 0 => array( |
127 | - 'name' => 'Small', |
|
128 | - 'dimensions' => '90x90', |
|
129 | - 'prefix' => 'small_', |
|
130 | - 'suffix' => '', |
|
127 | + 'name' => 'Small', |
|
128 | + 'dimensions' => '90x90', |
|
129 | + 'prefix' => 'small_', |
|
130 | + 'suffix' => '', |
|
131 | 131 | ), |
132 | 132 | 1 => array( |
133 | - 'name' => 'Medium', |
|
134 | - 'dimensions' => '120x120', |
|
135 | - 'prefix' => 'medium_', |
|
136 | - 'suffix' => '', |
|
133 | + 'name' => 'Medium', |
|
134 | + 'dimensions' => '120x120', |
|
135 | + 'prefix' => 'medium_', |
|
136 | + 'suffix' => '', |
|
137 | 137 | ), |
138 | 138 | 2 => array( |
139 | - 'name' => 'Large', |
|
140 | - 'dimensions' => '180x180', |
|
141 | - 'prefix' => 'large_', |
|
142 | - 'suffix' => '', |
|
139 | + 'name' => 'Large', |
|
140 | + 'dimensions' => '180x180', |
|
141 | + 'prefix' => 'large_', |
|
142 | + 'suffix' => '', |
|
143 | + ), |
|
143 | 144 | ), |
144 | - ), |
|
145 | 145 | ), |
146 | 146 | 2 => array( |
147 | - 'name' => 'Sample profile', |
|
148 | - 'usertab' => 1, |
|
149 | - 'filesize' => 1, |
|
150 | - 'quota' => 2, |
|
151 | - 'tuquota' => 0, |
|
152 | - 'extensions' => 'gif png jpg jpeg', |
|
153 | - 'dimensions' => '800x600', |
|
154 | - 'filenum' => 1, |
|
155 | - 'directories' => array( |
|
147 | + 'name' => 'Sample profile', |
|
148 | + 'usertab' => 1, |
|
149 | + 'filesize' => 1, |
|
150 | + 'quota' => 2, |
|
151 | + 'tuquota' => 0, |
|
152 | + 'extensions' => 'gif png jpg jpeg', |
|
153 | + 'dimensions' => '800x600', |
|
154 | + 'filenum' => 1, |
|
155 | + 'directories' => array( |
|
156 | 156 | 0 => array( |
157 | - 'name' => 'u%uid', |
|
158 | - 'subnav' => 0, |
|
159 | - 'browse' => 1, |
|
160 | - 'upload' => 1, |
|
161 | - 'thumb' => 1, |
|
162 | - 'delete' => 0, |
|
163 | - 'resize' => 0, |
|
157 | + 'name' => 'u%uid', |
|
158 | + 'subnav' => 0, |
|
159 | + 'browse' => 1, |
|
160 | + 'upload' => 1, |
|
161 | + 'thumb' => 1, |
|
162 | + 'delete' => 0, |
|
163 | + 'resize' => 0, |
|
164 | + ), |
|
164 | 165 | ), |
165 | - ), |
|
166 | - 'thumbnails' => array( |
|
166 | + 'thumbnails' => array( |
|
167 | 167 | 0 => array( |
168 | - 'name' => 'Thumb', |
|
169 | - 'dimensions' => '90x90', |
|
170 | - 'prefix' => 'thumb_', |
|
171 | - 'suffix' => '', |
|
168 | + 'name' => 'Thumb', |
|
169 | + 'dimensions' => '90x90', |
|
170 | + 'prefix' => 'thumb_', |
|
171 | + 'suffix' => '', |
|
172 | + ), |
|
172 | 173 | ), |
173 | - ), |
|
174 | 174 | ), |
175 | 175 | 3 => array( |
176 | - 'name' => 'Editor', |
|
177 | - 'usertab' => 1, |
|
178 | - 'filesize' => '1', |
|
179 | - 'quota' => '2', |
|
180 | - 'tuquota' => '0', |
|
181 | - 'extensions' => 'gif png jpg jpeg', |
|
182 | - 'dimensions' => '800x600', |
|
183 | - 'filenum' => '1', |
|
184 | - 'directories' => array( |
|
176 | + 'name' => 'Editor', |
|
177 | + 'usertab' => 1, |
|
178 | + 'filesize' => '1', |
|
179 | + 'quota' => '2', |
|
180 | + 'tuquota' => '0', |
|
181 | + 'extensions' => 'gif png jpg jpeg', |
|
182 | + 'dimensions' => '800x600', |
|
183 | + 'filenum' => '1', |
|
184 | + 'directories' => array( |
|
185 | 185 | 0 => array( |
186 | - 'name' => 'u%uid', |
|
187 | - 'subnav' => 0, |
|
188 | - 'browse' => 1, |
|
189 | - 'upload' => 1, |
|
190 | - 'thumb' => 1, |
|
191 | - 'delete' => 0, |
|
192 | - 'resize' => 0, |
|
186 | + 'name' => 'u%uid', |
|
187 | + 'subnav' => 0, |
|
188 | + 'browse' => 1, |
|
189 | + 'upload' => 1, |
|
190 | + 'thumb' => 1, |
|
191 | + 'delete' => 0, |
|
192 | + 'resize' => 0, |
|
193 | + ), |
|
193 | 194 | ), |
194 | - ), |
|
195 | - 'thumbnails' => array( |
|
195 | + 'thumbnails' => array( |
|
196 | 196 | 0 => array( |
197 | - 'name' => 'Small', |
|
198 | - 'dimensions' => '90x90', |
|
199 | - 'prefix' => 'small_', |
|
200 | - 'suffix' => '', |
|
197 | + 'name' => 'Small', |
|
198 | + 'dimensions' => '90x90', |
|
199 | + 'prefix' => 'small_', |
|
200 | + 'suffix' => '', |
|
201 | 201 | ), |
202 | 202 | 1 => array( |
203 | - 'name' => 'Medium', |
|
204 | - 'dimensions' => '120x120', |
|
205 | - 'prefix' => 'medium_', |
|
206 | - 'suffix' => '', |
|
203 | + 'name' => 'Medium', |
|
204 | + 'dimensions' => '120x120', |
|
205 | + 'prefix' => 'medium_', |
|
206 | + 'suffix' => '', |
|
207 | 207 | ), |
208 | 208 | 2 => array( |
209 | - 'name' => 'Large', |
|
210 | - 'dimensions' => '180x180', |
|
211 | - 'prefix' => 'large_', |
|
212 | - 'suffix' => '', |
|
209 | + 'name' => 'Large', |
|
210 | + 'dimensions' => '180x180', |
|
211 | + 'prefix' => 'large_', |
|
212 | + 'suffix' => '', |
|
213 | + ), |
|
213 | 214 | ), |
214 | - ), |
|
215 | 215 | ), |
216 | - ); |
|
217 | - $export['imce_profiles'] = $strongarm; |
|
216 | + ); |
|
217 | + $export['imce_profiles'] = $strongarm; |
|
218 | 218 | |
219 | - $strongarm = new stdClass; |
|
220 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
221 | - $strongarm->api_version = 1; |
|
222 | - $strongarm->name = 'imce_roles_profiles'; |
|
223 | - $strongarm->value = array( |
|
219 | + $strongarm = new stdClass; |
|
220 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
221 | + $strongarm->api_version = 1; |
|
222 | + $strongarm->name = 'imce_roles_profiles'; |
|
223 | + $strongarm->value = array( |
|
224 | 224 | 3519698132 => array( |
225 | - 'weight' => '0', |
|
226 | - 'pid' => '0', |
|
225 | + 'weight' => '0', |
|
226 | + 'pid' => '0', |
|
227 | 227 | ), |
228 | 228 | 1110965548 => array( |
229 | - 'weight' => '0', |
|
230 | - 'pid' => '0', |
|
229 | + 'weight' => '0', |
|
230 | + 'pid' => '0', |
|
231 | 231 | ), |
232 | 232 | 268174006 => array( |
233 | - 'weight' => '0', |
|
234 | - 'pid' => '0', |
|
233 | + 'weight' => '0', |
|
234 | + 'pid' => '0', |
|
235 | 235 | ), |
236 | 236 | 2938987599 => array( |
237 | - 'weight' => '0', |
|
238 | - 'pid' => '3', |
|
237 | + 'weight' => '0', |
|
238 | + 'pid' => '3', |
|
239 | 239 | ), |
240 | 240 | 1257454314 => array( |
241 | - 'weight' => '0', |
|
242 | - 'pid' => '0', |
|
241 | + 'weight' => '0', |
|
242 | + 'pid' => '0', |
|
243 | 243 | ), |
244 | 244 | 1271379760 => array( |
245 | - 'weight' => '0', |
|
246 | - 'pid' => '0', |
|
245 | + 'weight' => '0', |
|
246 | + 'pid' => '0', |
|
247 | 247 | ), |
248 | 248 | 933038561 => array( |
249 | - 'weight' => '0', |
|
250 | - 'pid' => '0', |
|
249 | + 'weight' => '0', |
|
250 | + 'pid' => '0', |
|
251 | 251 | ), |
252 | 252 | 2 => array( |
253 | - 'weight' => 11, |
|
254 | - 'pid' => '0', |
|
253 | + 'weight' => 11, |
|
254 | + 'pid' => '0', |
|
255 | 255 | ), |
256 | 256 | 1 => array( |
257 | - 'weight' => 12, |
|
258 | - 'pid' => '0', |
|
259 | - ), |
|
260 | - ); |
|
261 | - $export['imce_roles_profiles'] = $strongarm; |
|
262 | - |
|
263 | - $strongarm = new stdClass; |
|
264 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
265 | - $strongarm->api_version = 1; |
|
266 | - $strongarm->name = 'language_content_type_page'; |
|
267 | - $strongarm->value = '2'; |
|
268 | - $export['language_content_type_page'] = $strongarm; |
|
269 | - |
|
270 | - $strongarm = new stdClass; |
|
271 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
272 | - $strongarm->api_version = 1; |
|
273 | - $strongarm->name = 'menu_block_1_admin_title'; |
|
274 | - $strongarm->value = 'Tertiary menu'; |
|
275 | - $export['menu_block_1_admin_title'] = $strongarm; |
|
276 | - |
|
277 | - $strongarm = new stdClass; |
|
278 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
279 | - $strongarm->api_version = 1; |
|
280 | - $strongarm->name = 'menu_block_1_depth'; |
|
281 | - $strongarm->value = '0'; |
|
282 | - $export['menu_block_1_depth'] = $strongarm; |
|
283 | - |
|
284 | - $strongarm = new stdClass; |
|
285 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
286 | - $strongarm->api_version = 1; |
|
287 | - $strongarm->name = 'menu_block_1_expanded'; |
|
288 | - $strongarm->value = 0; |
|
289 | - $export['menu_block_1_expanded'] = $strongarm; |
|
290 | - |
|
291 | - $strongarm = new stdClass; |
|
292 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
293 | - $strongarm->api_version = 1; |
|
294 | - $strongarm->name = 'menu_block_1_follow'; |
|
295 | - $strongarm->value = 0; |
|
296 | - $export['menu_block_1_follow'] = $strongarm; |
|
297 | - |
|
298 | - $strongarm = new stdClass; |
|
299 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
300 | - $strongarm->api_version = 1; |
|
301 | - $strongarm->name = 'menu_block_1_level'; |
|
302 | - $strongarm->value = '3'; |
|
303 | - $export['menu_block_1_level'] = $strongarm; |
|
304 | - |
|
305 | - $strongarm = new stdClass; |
|
306 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
307 | - $strongarm->api_version = 1; |
|
308 | - $strongarm->name = 'menu_block_1_parent'; |
|
309 | - $strongarm->value = 'primary-links:0'; |
|
310 | - $export['menu_block_1_parent'] = $strongarm; |
|
311 | - |
|
312 | - $strongarm = new stdClass; |
|
313 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
314 | - $strongarm->api_version = 1; |
|
315 | - $strongarm->name = 'menu_block_1_sort'; |
|
316 | - $strongarm->value = 0; |
|
317 | - $export['menu_block_1_sort'] = $strongarm; |
|
318 | - |
|
319 | - $strongarm = new stdClass; |
|
320 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
321 | - $strongarm->api_version = 1; |
|
322 | - $strongarm->name = 'menu_block_1_title_link'; |
|
323 | - $strongarm->value = 0; |
|
324 | - $export['menu_block_1_title_link'] = $strongarm; |
|
325 | - |
|
326 | - $strongarm = new stdClass; |
|
327 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
328 | - $strongarm->api_version = 1; |
|
329 | - $strongarm->name = 'menu_block_ids'; |
|
330 | - $strongarm->value = array( |
|
257 | + 'weight' => 12, |
|
258 | + 'pid' => '0', |
|
259 | + ), |
|
260 | + ); |
|
261 | + $export['imce_roles_profiles'] = $strongarm; |
|
262 | + |
|
263 | + $strongarm = new stdClass; |
|
264 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
265 | + $strongarm->api_version = 1; |
|
266 | + $strongarm->name = 'language_content_type_page'; |
|
267 | + $strongarm->value = '2'; |
|
268 | + $export['language_content_type_page'] = $strongarm; |
|
269 | + |
|
270 | + $strongarm = new stdClass; |
|
271 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
272 | + $strongarm->api_version = 1; |
|
273 | + $strongarm->name = 'menu_block_1_admin_title'; |
|
274 | + $strongarm->value = 'Tertiary menu'; |
|
275 | + $export['menu_block_1_admin_title'] = $strongarm; |
|
276 | + |
|
277 | + $strongarm = new stdClass; |
|
278 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
279 | + $strongarm->api_version = 1; |
|
280 | + $strongarm->name = 'menu_block_1_depth'; |
|
281 | + $strongarm->value = '0'; |
|
282 | + $export['menu_block_1_depth'] = $strongarm; |
|
283 | + |
|
284 | + $strongarm = new stdClass; |
|
285 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
286 | + $strongarm->api_version = 1; |
|
287 | + $strongarm->name = 'menu_block_1_expanded'; |
|
288 | + $strongarm->value = 0; |
|
289 | + $export['menu_block_1_expanded'] = $strongarm; |
|
290 | + |
|
291 | + $strongarm = new stdClass; |
|
292 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
293 | + $strongarm->api_version = 1; |
|
294 | + $strongarm->name = 'menu_block_1_follow'; |
|
295 | + $strongarm->value = 0; |
|
296 | + $export['menu_block_1_follow'] = $strongarm; |
|
297 | + |
|
298 | + $strongarm = new stdClass; |
|
299 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
300 | + $strongarm->api_version = 1; |
|
301 | + $strongarm->name = 'menu_block_1_level'; |
|
302 | + $strongarm->value = '3'; |
|
303 | + $export['menu_block_1_level'] = $strongarm; |
|
304 | + |
|
305 | + $strongarm = new stdClass; |
|
306 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
307 | + $strongarm->api_version = 1; |
|
308 | + $strongarm->name = 'menu_block_1_parent'; |
|
309 | + $strongarm->value = 'primary-links:0'; |
|
310 | + $export['menu_block_1_parent'] = $strongarm; |
|
311 | + |
|
312 | + $strongarm = new stdClass; |
|
313 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
314 | + $strongarm->api_version = 1; |
|
315 | + $strongarm->name = 'menu_block_1_sort'; |
|
316 | + $strongarm->value = 0; |
|
317 | + $export['menu_block_1_sort'] = $strongarm; |
|
318 | + |
|
319 | + $strongarm = new stdClass; |
|
320 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
321 | + $strongarm->api_version = 1; |
|
322 | + $strongarm->name = 'menu_block_1_title_link'; |
|
323 | + $strongarm->value = 0; |
|
324 | + $export['menu_block_1_title_link'] = $strongarm; |
|
325 | + |
|
326 | + $strongarm = new stdClass; |
|
327 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
328 | + $strongarm->api_version = 1; |
|
329 | + $strongarm->name = 'menu_block_ids'; |
|
330 | + $strongarm->value = array( |
|
331 | 331 | 0 => 1, |
332 | - ); |
|
333 | - $export['menu_block_ids'] = $strongarm; |
|
334 | - |
|
335 | - $strongarm = new stdClass; |
|
336 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
337 | - $strongarm->api_version = 1; |
|
338 | - $strongarm->name = 'menu_default_node_menu'; |
|
339 | - $strongarm->value = 'primary-links'; |
|
340 | - $export['menu_default_node_menu'] = $strongarm; |
|
341 | - |
|
342 | - $strongarm = new stdClass; |
|
343 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
344 | - $strongarm->api_version = 1; |
|
345 | - $strongarm->name = 'menu_expanded'; |
|
346 | - $strongarm->value = array( |
|
332 | + ); |
|
333 | + $export['menu_block_ids'] = $strongarm; |
|
334 | + |
|
335 | + $strongarm = new stdClass; |
|
336 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
337 | + $strongarm->api_version = 1; |
|
338 | + $strongarm->name = 'menu_default_node_menu'; |
|
339 | + $strongarm->value = 'primary-links'; |
|
340 | + $export['menu_default_node_menu'] = $strongarm; |
|
341 | + |
|
342 | + $strongarm = new stdClass; |
|
343 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
344 | + $strongarm->api_version = 1; |
|
345 | + $strongarm->name = 'menu_expanded'; |
|
346 | + $strongarm->value = array( |
|
347 | 347 | 0 => 'primary-links', |
348 | - ); |
|
349 | - $export['menu_expanded'] = $strongarm; |
|
350 | - |
|
351 | - $strongarm = new stdClass; |
|
352 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
353 | - $strongarm->api_version = 1; |
|
354 | - $strongarm->name = 'menu_primary_links_source'; |
|
355 | - $strongarm->value = 'primary-links'; |
|
356 | - $export['menu_primary_links_source'] = $strongarm; |
|
357 | - |
|
358 | - $strongarm = new stdClass; |
|
359 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
360 | - $strongarm->api_version = 1; |
|
361 | - $strongarm->name = 'menu_secondary_links_source'; |
|
362 | - $strongarm->value = 'primary-links'; |
|
363 | - $export['menu_secondary_links_source'] = $strongarm; |
|
364 | - |
|
365 | - $strongarm = new stdClass; |
|
366 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
367 | - $strongarm->api_version = 1; |
|
368 | - $strongarm->name = 'node_admin_theme'; |
|
369 | - $strongarm->value = 0; |
|
370 | - $export['node_admin_theme'] = $strongarm; |
|
371 | - |
|
372 | - $strongarm = new stdClass; |
|
373 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
374 | - $strongarm->api_version = 1; |
|
375 | - $strongarm->name = 'node_options_page'; |
|
376 | - $strongarm->value = array( |
|
348 | + ); |
|
349 | + $export['menu_expanded'] = $strongarm; |
|
350 | + |
|
351 | + $strongarm = new stdClass; |
|
352 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
353 | + $strongarm->api_version = 1; |
|
354 | + $strongarm->name = 'menu_primary_links_source'; |
|
355 | + $strongarm->value = 'primary-links'; |
|
356 | + $export['menu_primary_links_source'] = $strongarm; |
|
357 | + |
|
358 | + $strongarm = new stdClass; |
|
359 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
360 | + $strongarm->api_version = 1; |
|
361 | + $strongarm->name = 'menu_secondary_links_source'; |
|
362 | + $strongarm->value = 'primary-links'; |
|
363 | + $export['menu_secondary_links_source'] = $strongarm; |
|
364 | + |
|
365 | + $strongarm = new stdClass; |
|
366 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
367 | + $strongarm->api_version = 1; |
|
368 | + $strongarm->name = 'node_admin_theme'; |
|
369 | + $strongarm->value = 0; |
|
370 | + $export['node_admin_theme'] = $strongarm; |
|
371 | + |
|
372 | + $strongarm = new stdClass; |
|
373 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
374 | + $strongarm->api_version = 1; |
|
375 | + $strongarm->name = 'node_options_page'; |
|
376 | + $strongarm->value = array( |
|
377 | 377 | 0 => 'status', |
378 | - ); |
|
379 | - $export['node_options_page'] = $strongarm; |
|
380 | - |
|
381 | - $strongarm = new stdClass; |
|
382 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
383 | - $strongarm->api_version = 1; |
|
384 | - $strongarm->name = 'page_manager_user_view_disabled'; |
|
385 | - $strongarm->value = FALSE; |
|
386 | - $export['page_manager_user_view_disabled'] = $strongarm; |
|
387 | - |
|
388 | - $strongarm = new stdClass; |
|
389 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
390 | - $strongarm->api_version = 1; |
|
391 | - $strongarm->name = 'panels_legacy_rendering_mode'; |
|
392 | - $strongarm->value = FALSE; |
|
393 | - $export['panels_legacy_rendering_mode'] = $strongarm; |
|
394 | - |
|
395 | - $strongarm = new stdClass; |
|
396 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
397 | - $strongarm->api_version = 1; |
|
398 | - $strongarm->name = 'pathauto_ignore_words'; |
|
399 | - $strongarm->value = 'a,an,as,at,before,but,by,for,from,is,in,into,like,of,off,on,onto,per,since,than,the,this,that,to,up,via,with'; |
|
400 | - $export['pathauto_ignore_words'] = $strongarm; |
|
401 | - |
|
402 | - $strongarm = new stdClass; |
|
403 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
404 | - $strongarm->api_version = 1; |
|
405 | - $strongarm->name = 'pathauto_indexaliases'; |
|
406 | - $strongarm->value = FALSE; |
|
407 | - $export['pathauto_indexaliases'] = $strongarm; |
|
408 | - |
|
409 | - $strongarm = new stdClass; |
|
410 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
411 | - $strongarm->api_version = 1; |
|
412 | - $strongarm->name = 'pathauto_indexaliases_bulkupdate'; |
|
413 | - $strongarm->value = FALSE; |
|
414 | - $export['pathauto_indexaliases_bulkupdate'] = $strongarm; |
|
415 | - |
|
416 | - $strongarm = new stdClass; |
|
417 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
418 | - $strongarm->api_version = 1; |
|
419 | - $strongarm->name = 'pathauto_max_component_length'; |
|
420 | - $strongarm->value = '100'; |
|
421 | - $export['pathauto_max_component_length'] = $strongarm; |
|
422 | - |
|
423 | - $strongarm = new stdClass; |
|
424 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
425 | - $strongarm->api_version = 1; |
|
426 | - $strongarm->name = 'pathauto_max_length'; |
|
427 | - $strongarm->value = '100'; |
|
428 | - $export['pathauto_max_length'] = $strongarm; |
|
429 | - |
|
430 | - $strongarm = new stdClass; |
|
431 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
432 | - $strongarm->api_version = 1; |
|
433 | - $strongarm->name = 'pathauto_modulelist'; |
|
434 | - $strongarm->value = array( |
|
378 | + ); |
|
379 | + $export['node_options_page'] = $strongarm; |
|
380 | + |
|
381 | + $strongarm = new stdClass; |
|
382 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
383 | + $strongarm->api_version = 1; |
|
384 | + $strongarm->name = 'page_manager_user_view_disabled'; |
|
385 | + $strongarm->value = FALSE; |
|
386 | + $export['page_manager_user_view_disabled'] = $strongarm; |
|
387 | + |
|
388 | + $strongarm = new stdClass; |
|
389 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
390 | + $strongarm->api_version = 1; |
|
391 | + $strongarm->name = 'panels_legacy_rendering_mode'; |
|
392 | + $strongarm->value = FALSE; |
|
393 | + $export['panels_legacy_rendering_mode'] = $strongarm; |
|
394 | + |
|
395 | + $strongarm = new stdClass; |
|
396 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
397 | + $strongarm->api_version = 1; |
|
398 | + $strongarm->name = 'pathauto_ignore_words'; |
|
399 | + $strongarm->value = 'a,an,as,at,before,but,by,for,from,is,in,into,like,of,off,on,onto,per,since,than,the,this,that,to,up,via,with'; |
|
400 | + $export['pathauto_ignore_words'] = $strongarm; |
|
401 | + |
|
402 | + $strongarm = new stdClass; |
|
403 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
404 | + $strongarm->api_version = 1; |
|
405 | + $strongarm->name = 'pathauto_indexaliases'; |
|
406 | + $strongarm->value = FALSE; |
|
407 | + $export['pathauto_indexaliases'] = $strongarm; |
|
408 | + |
|
409 | + $strongarm = new stdClass; |
|
410 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
411 | + $strongarm->api_version = 1; |
|
412 | + $strongarm->name = 'pathauto_indexaliases_bulkupdate'; |
|
413 | + $strongarm->value = FALSE; |
|
414 | + $export['pathauto_indexaliases_bulkupdate'] = $strongarm; |
|
415 | + |
|
416 | + $strongarm = new stdClass; |
|
417 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
418 | + $strongarm->api_version = 1; |
|
419 | + $strongarm->name = 'pathauto_max_component_length'; |
|
420 | + $strongarm->value = '100'; |
|
421 | + $export['pathauto_max_component_length'] = $strongarm; |
|
422 | + |
|
423 | + $strongarm = new stdClass; |
|
424 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
425 | + $strongarm->api_version = 1; |
|
426 | + $strongarm->name = 'pathauto_max_length'; |
|
427 | + $strongarm->value = '100'; |
|
428 | + $export['pathauto_max_length'] = $strongarm; |
|
429 | + |
|
430 | + $strongarm = new stdClass; |
|
431 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
432 | + $strongarm->api_version = 1; |
|
433 | + $strongarm->name = 'pathauto_modulelist'; |
|
434 | + $strongarm->value = array( |
|
435 | 435 | 0 => 'node', |
436 | 436 | 1 => 'user', |
437 | 437 | 2 => 'taxonomy', |
438 | - ); |
|
439 | - $export['pathauto_modulelist'] = $strongarm; |
|
440 | - |
|
441 | - $strongarm = new stdClass; |
|
442 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
443 | - $strongarm->api_version = 1; |
|
444 | - $strongarm->name = 'pathauto_node_applytofeeds'; |
|
445 | - $strongarm->value = ''; |
|
446 | - $export['pathauto_node_applytofeeds'] = $strongarm; |
|
447 | - |
|
448 | - $strongarm = new stdClass; |
|
449 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
450 | - $strongarm->api_version = 1; |
|
451 | - $strongarm->name = 'pathauto_node_bulkupdate'; |
|
452 | - $strongarm->value = FALSE; |
|
453 | - $export['pathauto_node_bulkupdate'] = $strongarm; |
|
454 | - |
|
455 | - $strongarm = new stdClass; |
|
456 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
457 | - $strongarm->api_version = 1; |
|
458 | - $strongarm->name = 'pathauto_node_image_pattern'; |
|
459 | - $strongarm->value = ''; |
|
460 | - $export['pathauto_node_image_pattern'] = $strongarm; |
|
461 | - |
|
462 | - $strongarm = new stdClass; |
|
463 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
464 | - $strongarm->api_version = 1; |
|
465 | - $strongarm->name = 'pathauto_node_page_pattern'; |
|
466 | - $strongarm->value = ''; |
|
467 | - $export['pathauto_node_page_pattern'] = $strongarm; |
|
468 | - |
|
469 | - $strongarm = new stdClass; |
|
470 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
471 | - $strongarm->api_version = 1; |
|
472 | - $strongarm->name = 'pathauto_node_pattern'; |
|
473 | - $strongarm->value = 'content/[title-raw]'; |
|
474 | - $export['pathauto_node_pattern'] = $strongarm; |
|
475 | - |
|
476 | - $strongarm = new stdClass; |
|
477 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
478 | - $strongarm->api_version = 1; |
|
479 | - $strongarm->name = 'pathauto_node_story_pattern'; |
|
480 | - $strongarm->value = ''; |
|
481 | - $export['pathauto_node_story_pattern'] = $strongarm; |
|
482 | - |
|
483 | - $strongarm = new stdClass; |
|
484 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
485 | - $strongarm->api_version = 1; |
|
486 | - $strongarm->name = 'pathauto_punctuation_hyphen'; |
|
487 | - $strongarm->value = 1; |
|
488 | - $export['pathauto_punctuation_hyphen'] = $strongarm; |
|
489 | - |
|
490 | - $strongarm = new stdClass; |
|
491 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
492 | - $strongarm->api_version = 1; |
|
493 | - $strongarm->name = 'pathauto_punctuation_quotes'; |
|
494 | - $strongarm->value = 0; |
|
495 | - $export['pathauto_punctuation_quotes'] = $strongarm; |
|
496 | - |
|
497 | - $strongarm = new stdClass; |
|
498 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
499 | - $strongarm->api_version = 1; |
|
500 | - $strongarm->name = 'pathauto_separator'; |
|
501 | - $strongarm->value = '-'; |
|
502 | - $export['pathauto_separator'] = $strongarm; |
|
503 | - |
|
504 | - $strongarm = new stdClass; |
|
505 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
506 | - $strongarm->api_version = 1; |
|
507 | - $strongarm->name = 'pathauto_taxonomy_2_pattern'; |
|
508 | - $strongarm->value = ''; |
|
509 | - $export['pathauto_taxonomy_2_pattern'] = $strongarm; |
|
510 | - |
|
511 | - $strongarm = new stdClass; |
|
512 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
513 | - $strongarm->api_version = 1; |
|
514 | - $strongarm->name = 'pathauto_taxonomy_applytofeeds'; |
|
515 | - $strongarm->value = FALSE; |
|
516 | - $export['pathauto_taxonomy_applytofeeds'] = $strongarm; |
|
517 | - |
|
518 | - $strongarm = new stdClass; |
|
519 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
520 | - $strongarm->api_version = 1; |
|
521 | - $strongarm->name = 'pathauto_taxonomy_bulkupdate'; |
|
522 | - $strongarm->value = FALSE; |
|
523 | - $export['pathauto_taxonomy_bulkupdate'] = $strongarm; |
|
524 | - |
|
525 | - $strongarm = new stdClass; |
|
526 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
527 | - $strongarm->api_version = 1; |
|
528 | - $strongarm->name = 'pathauto_taxonomy_pattern'; |
|
529 | - $strongarm->value = 'category/[vocab-raw]/[catpath-raw]'; |
|
530 | - $export['pathauto_taxonomy_pattern'] = $strongarm; |
|
531 | - |
|
532 | - $strongarm = new stdClass; |
|
533 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
534 | - $strongarm->api_version = 1; |
|
535 | - $strongarm->name = 'pathauto_taxonomy_supportsfeeds'; |
|
536 | - $strongarm->value = '0/feed'; |
|
537 | - $export['pathauto_taxonomy_supportsfeeds'] = $strongarm; |
|
538 | - |
|
539 | - $strongarm = new stdClass; |
|
540 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
541 | - $strongarm->api_version = 1; |
|
542 | - $strongarm->name = 'pathauto_update_action'; |
|
543 | - $strongarm->value = '2'; |
|
544 | - $export['pathauto_update_action'] = $strongarm; |
|
545 | - |
|
546 | - $strongarm = new stdClass; |
|
547 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
548 | - $strongarm->api_version = 1; |
|
549 | - $strongarm->name = 'pathauto_user_bulkupdate'; |
|
550 | - $strongarm->value = FALSE; |
|
551 | - $export['pathauto_user_bulkupdate'] = $strongarm; |
|
552 | - |
|
553 | - $strongarm = new stdClass; |
|
554 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
555 | - $strongarm->api_version = 1; |
|
556 | - $strongarm->name = 'pathauto_user_pattern'; |
|
557 | - $strongarm->value = 'users/[user-raw]'; |
|
558 | - $export['pathauto_user_pattern'] = $strongarm; |
|
559 | - |
|
560 | - $strongarm = new stdClass; |
|
561 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
562 | - $strongarm->api_version = 1; |
|
563 | - $strongarm->name = 'pathauto_user_supportsfeeds'; |
|
564 | - $strongarm->value = ''; |
|
565 | - $export['pathauto_user_supportsfeeds'] = $strongarm; |
|
566 | - |
|
567 | - $strongarm = new stdClass; |
|
568 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
569 | - $strongarm->api_version = 1; |
|
570 | - $strongarm->name = 'pathauto_verbose'; |
|
571 | - $strongarm->value = FALSE; |
|
572 | - $export['pathauto_verbose'] = $strongarm; |
|
573 | - |
|
574 | - $strongarm = new stdClass; |
|
575 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
576 | - $strongarm->api_version = 1; |
|
577 | - $strongarm->name = 'site_frontpage'; |
|
578 | - $strongarm->value = 'home'; |
|
579 | - $export['site_frontpage'] = $strongarm; |
|
580 | - |
|
581 | - $strongarm = new stdClass; |
|
582 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
583 | - $strongarm->api_version = 1; |
|
584 | - $strongarm->name = 'tabtamer_tab_settings'; |
|
585 | - $strongarm->value = array( |
|
438 | + ); |
|
439 | + $export['pathauto_modulelist'] = $strongarm; |
|
440 | + |
|
441 | + $strongarm = new stdClass; |
|
442 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
443 | + $strongarm->api_version = 1; |
|
444 | + $strongarm->name = 'pathauto_node_applytofeeds'; |
|
445 | + $strongarm->value = ''; |
|
446 | + $export['pathauto_node_applytofeeds'] = $strongarm; |
|
447 | + |
|
448 | + $strongarm = new stdClass; |
|
449 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
450 | + $strongarm->api_version = 1; |
|
451 | + $strongarm->name = 'pathauto_node_bulkupdate'; |
|
452 | + $strongarm->value = FALSE; |
|
453 | + $export['pathauto_node_bulkupdate'] = $strongarm; |
|
454 | + |
|
455 | + $strongarm = new stdClass; |
|
456 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
457 | + $strongarm->api_version = 1; |
|
458 | + $strongarm->name = 'pathauto_node_image_pattern'; |
|
459 | + $strongarm->value = ''; |
|
460 | + $export['pathauto_node_image_pattern'] = $strongarm; |
|
461 | + |
|
462 | + $strongarm = new stdClass; |
|
463 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
464 | + $strongarm->api_version = 1; |
|
465 | + $strongarm->name = 'pathauto_node_page_pattern'; |
|
466 | + $strongarm->value = ''; |
|
467 | + $export['pathauto_node_page_pattern'] = $strongarm; |
|
468 | + |
|
469 | + $strongarm = new stdClass; |
|
470 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
471 | + $strongarm->api_version = 1; |
|
472 | + $strongarm->name = 'pathauto_node_pattern'; |
|
473 | + $strongarm->value = 'content/[title-raw]'; |
|
474 | + $export['pathauto_node_pattern'] = $strongarm; |
|
475 | + |
|
476 | + $strongarm = new stdClass; |
|
477 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
478 | + $strongarm->api_version = 1; |
|
479 | + $strongarm->name = 'pathauto_node_story_pattern'; |
|
480 | + $strongarm->value = ''; |
|
481 | + $export['pathauto_node_story_pattern'] = $strongarm; |
|
482 | + |
|
483 | + $strongarm = new stdClass; |
|
484 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
485 | + $strongarm->api_version = 1; |
|
486 | + $strongarm->name = 'pathauto_punctuation_hyphen'; |
|
487 | + $strongarm->value = 1; |
|
488 | + $export['pathauto_punctuation_hyphen'] = $strongarm; |
|
489 | + |
|
490 | + $strongarm = new stdClass; |
|
491 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
492 | + $strongarm->api_version = 1; |
|
493 | + $strongarm->name = 'pathauto_punctuation_quotes'; |
|
494 | + $strongarm->value = 0; |
|
495 | + $export['pathauto_punctuation_quotes'] = $strongarm; |
|
496 | + |
|
497 | + $strongarm = new stdClass; |
|
498 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
499 | + $strongarm->api_version = 1; |
|
500 | + $strongarm->name = 'pathauto_separator'; |
|
501 | + $strongarm->value = '-'; |
|
502 | + $export['pathauto_separator'] = $strongarm; |
|
503 | + |
|
504 | + $strongarm = new stdClass; |
|
505 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
506 | + $strongarm->api_version = 1; |
|
507 | + $strongarm->name = 'pathauto_taxonomy_2_pattern'; |
|
508 | + $strongarm->value = ''; |
|
509 | + $export['pathauto_taxonomy_2_pattern'] = $strongarm; |
|
510 | + |
|
511 | + $strongarm = new stdClass; |
|
512 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
513 | + $strongarm->api_version = 1; |
|
514 | + $strongarm->name = 'pathauto_taxonomy_applytofeeds'; |
|
515 | + $strongarm->value = FALSE; |
|
516 | + $export['pathauto_taxonomy_applytofeeds'] = $strongarm; |
|
517 | + |
|
518 | + $strongarm = new stdClass; |
|
519 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
520 | + $strongarm->api_version = 1; |
|
521 | + $strongarm->name = 'pathauto_taxonomy_bulkupdate'; |
|
522 | + $strongarm->value = FALSE; |
|
523 | + $export['pathauto_taxonomy_bulkupdate'] = $strongarm; |
|
524 | + |
|
525 | + $strongarm = new stdClass; |
|
526 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
527 | + $strongarm->api_version = 1; |
|
528 | + $strongarm->name = 'pathauto_taxonomy_pattern'; |
|
529 | + $strongarm->value = 'category/[vocab-raw]/[catpath-raw]'; |
|
530 | + $export['pathauto_taxonomy_pattern'] = $strongarm; |
|
531 | + |
|
532 | + $strongarm = new stdClass; |
|
533 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
534 | + $strongarm->api_version = 1; |
|
535 | + $strongarm->name = 'pathauto_taxonomy_supportsfeeds'; |
|
536 | + $strongarm->value = '0/feed'; |
|
537 | + $export['pathauto_taxonomy_supportsfeeds'] = $strongarm; |
|
538 | + |
|
539 | + $strongarm = new stdClass; |
|
540 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
541 | + $strongarm->api_version = 1; |
|
542 | + $strongarm->name = 'pathauto_update_action'; |
|
543 | + $strongarm->value = '2'; |
|
544 | + $export['pathauto_update_action'] = $strongarm; |
|
545 | + |
|
546 | + $strongarm = new stdClass; |
|
547 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
548 | + $strongarm->api_version = 1; |
|
549 | + $strongarm->name = 'pathauto_user_bulkupdate'; |
|
550 | + $strongarm->value = FALSE; |
|
551 | + $export['pathauto_user_bulkupdate'] = $strongarm; |
|
552 | + |
|
553 | + $strongarm = new stdClass; |
|
554 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
555 | + $strongarm->api_version = 1; |
|
556 | + $strongarm->name = 'pathauto_user_pattern'; |
|
557 | + $strongarm->value = 'users/[user-raw]'; |
|
558 | + $export['pathauto_user_pattern'] = $strongarm; |
|
559 | + |
|
560 | + $strongarm = new stdClass; |
|
561 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
562 | + $strongarm->api_version = 1; |
|
563 | + $strongarm->name = 'pathauto_user_supportsfeeds'; |
|
564 | + $strongarm->value = ''; |
|
565 | + $export['pathauto_user_supportsfeeds'] = $strongarm; |
|
566 | + |
|
567 | + $strongarm = new stdClass; |
|
568 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
569 | + $strongarm->api_version = 1; |
|
570 | + $strongarm->name = 'pathauto_verbose'; |
|
571 | + $strongarm->value = FALSE; |
|
572 | + $export['pathauto_verbose'] = $strongarm; |
|
573 | + |
|
574 | + $strongarm = new stdClass; |
|
575 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
576 | + $strongarm->api_version = 1; |
|
577 | + $strongarm->name = 'site_frontpage'; |
|
578 | + $strongarm->value = 'home'; |
|
579 | + $export['site_frontpage'] = $strongarm; |
|
580 | + |
|
581 | + $strongarm = new stdClass; |
|
582 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
583 | + $strongarm->api_version = 1; |
|
584 | + $strongarm->name = 'tabtamer_tab_settings'; |
|
585 | + $strongarm->value = array( |
|
586 | 586 | 'node/%/view' => array( |
587 | - 'weight' => '-10', |
|
588 | - 'action' => 'enabled', |
|
589 | - 'tabtamer_original_path' => 'node/%node/view', |
|
590 | - 'tabtamer_title' => '', |
|
587 | + 'weight' => '-10', |
|
588 | + 'action' => 'enabled', |
|
589 | + 'tabtamer_original_path' => 'node/%node/view', |
|
590 | + 'tabtamer_title' => '', |
|
591 | 591 | ), |
592 | 592 | 'node/%/edit' => array( |
593 | - 'weight' => '1', |
|
594 | - 'action' => 'enabled', |
|
595 | - 'tabtamer_original_path' => 'node/%node/edit', |
|
596 | - 'tabtamer_title' => '', |
|
593 | + 'weight' => '1', |
|
594 | + 'action' => 'enabled', |
|
595 | + 'tabtamer_original_path' => 'node/%node/edit', |
|
596 | + 'tabtamer_title' => '', |
|
597 | 597 | ), |
598 | 598 | 'node/%/revisions' => array( |
599 | - 'weight' => '2', |
|
600 | - 'action' => 'enabled', |
|
601 | - 'tabtamer_original_path' => 'node/%node/revisions', |
|
602 | - 'tabtamer_title' => '', |
|
599 | + 'weight' => '2', |
|
600 | + 'action' => 'enabled', |
|
601 | + 'tabtamer_original_path' => 'node/%node/revisions', |
|
602 | + 'tabtamer_title' => '', |
|
603 | 603 | ), |
604 | 604 | 'node/%/panel_layout' => array( |
605 | - 'weight' => '2', |
|
606 | - 'action' => 'enabled', |
|
607 | - 'tabtamer_original_path' => 'node/%node/panel_layout', |
|
608 | - 'tabtamer_title' => '', |
|
605 | + 'weight' => '2', |
|
606 | + 'action' => 'enabled', |
|
607 | + 'tabtamer_original_path' => 'node/%node/panel_layout', |
|
608 | + 'tabtamer_title' => '', |
|
609 | 609 | ), |
610 | 610 | 'node/%/panel_content' => array( |
611 | - 'weight' => '3', |
|
612 | - 'action' => 'enabled', |
|
613 | - 'tabtamer_original_path' => 'node/%node/panel_content', |
|
614 | - 'tabtamer_title' => '', |
|
611 | + 'weight' => '3', |
|
612 | + 'action' => 'enabled', |
|
613 | + 'tabtamer_original_path' => 'node/%node/panel_content', |
|
614 | + 'tabtamer_title' => '', |
|
615 | 615 | ), |
616 | 616 | 'node/%/revisions/list' => array( |
617 | - 'weight' => '0', |
|
618 | - 'action' => 'enabled', |
|
619 | - 'tabtamer_original_path' => 'node/%node/revisions/list', |
|
620 | - 'tabtamer_title' => '', |
|
617 | + 'weight' => '0', |
|
618 | + 'action' => 'enabled', |
|
619 | + 'tabtamer_original_path' => 'node/%node/revisions/list', |
|
620 | + 'tabtamer_title' => '', |
|
621 | 621 | ), |
622 | 622 | 'node/%/revisions/view/%/%' => array( |
623 | - 'weight' => '0', |
|
624 | - 'action' => 'enabled', |
|
625 | - 'tabtamer_original_path' => 'node/%node/revisions/view/%/%', |
|
626 | - 'tabtamer_title' => '', |
|
623 | + 'weight' => '0', |
|
624 | + 'action' => 'enabled', |
|
625 | + 'tabtamer_original_path' => 'node/%node/revisions/view/%/%', |
|
626 | + 'tabtamer_title' => '', |
|
627 | 627 | ), |
628 | 628 | 'node/%/revisions/view/latest' => array( |
629 | - 'weight' => '0', |
|
630 | - 'action' => 'enabled', |
|
631 | - 'tabtamer_original_path' => 'node/%node/revisions/view/latest', |
|
632 | - 'tabtamer_title' => '', |
|
629 | + 'weight' => '0', |
|
630 | + 'action' => 'enabled', |
|
631 | + 'tabtamer_original_path' => 'node/%node/revisions/view/latest', |
|
632 | + 'tabtamer_title' => '', |
|
633 | 633 | ), |
634 | 634 | 'search/node/%' => array( |
635 | - 'weight' => '0', |
|
636 | - 'action' => 'enabled', |
|
637 | - 'tabtamer_original_path' => 'search/node/%menu_tail', |
|
638 | - 'tabtamer_title' => '', |
|
635 | + 'weight' => '0', |
|
636 | + 'action' => 'enabled', |
|
637 | + 'tabtamer_original_path' => 'search/node/%menu_tail', |
|
638 | + 'tabtamer_title' => '', |
|
639 | 639 | ), |
640 | 640 | 'search/user/%' => array( |
641 | - 'weight' => '0', |
|
642 | - 'action' => 'enabled', |
|
643 | - 'tabtamer_original_path' => 'search/user/%menu_tail', |
|
644 | - 'tabtamer_title' => '', |
|
641 | + 'weight' => '0', |
|
642 | + 'action' => 'enabled', |
|
643 | + 'tabtamer_original_path' => 'search/user/%menu_tail', |
|
644 | + 'tabtamer_title' => '', |
|
645 | 645 | ), |
646 | 646 | 'user/login' => array( |
647 | - 'weight' => '0', |
|
648 | - 'action' => 'enabled', |
|
649 | - 'tabtamer_original_path' => 'user/login', |
|
650 | - 'tabtamer_title' => '', |
|
647 | + 'weight' => '0', |
|
648 | + 'action' => 'enabled', |
|
649 | + 'tabtamer_original_path' => 'user/login', |
|
650 | + 'tabtamer_title' => '', |
|
651 | 651 | ), |
652 | 652 | 'user/register' => array( |
653 | - 'weight' => '0', |
|
654 | - 'action' => 'enabled', |
|
655 | - 'tabtamer_original_path' => 'user/register', |
|
656 | - 'tabtamer_title' => '', |
|
653 | + 'weight' => '0', |
|
654 | + 'action' => 'enabled', |
|
655 | + 'tabtamer_original_path' => 'user/register', |
|
656 | + 'tabtamer_title' => '', |
|
657 | 657 | ), |
658 | 658 | 'user/password' => array( |
659 | - 'weight' => '0', |
|
660 | - 'action' => 'enabled', |
|
661 | - 'tabtamer_original_path' => 'user/password', |
|
662 | - 'tabtamer_title' => '', |
|
659 | + 'weight' => '0', |
|
660 | + 'action' => 'enabled', |
|
661 | + 'tabtamer_original_path' => 'user/password', |
|
662 | + 'tabtamer_title' => '', |
|
663 | 663 | ), |
664 | 664 | 'user/%/view' => array( |
665 | - 'weight' => '-10', |
|
666 | - 'action' => 'hidden', |
|
667 | - 'tabtamer_original_path' => 'user/%user/view', |
|
668 | - 'tabtamer_title' => '', |
|
665 | + 'weight' => '-10', |
|
666 | + 'action' => 'hidden', |
|
667 | + 'tabtamer_original_path' => 'user/%user/view', |
|
668 | + 'tabtamer_title' => '', |
|
669 | 669 | ), |
670 | 670 | 'user/%/edit' => array( |
671 | - 'weight' => '0', |
|
672 | - 'action' => 'hidden', |
|
673 | - 'tabtamer_original_path' => 'user/%user_category/edit', |
|
674 | - 'tabtamer_title' => '', |
|
671 | + 'weight' => '0', |
|
672 | + 'action' => 'hidden', |
|
673 | + 'tabtamer_original_path' => 'user/%user_category/edit', |
|
674 | + 'tabtamer_title' => '', |
|
675 | 675 | ), |
676 | 676 | 'user/%/imce' => array( |
677 | - 'weight' => '10', |
|
678 | - 'action' => 'hidden', |
|
679 | - 'tabtamer_original_path' => 'user/%user/imce', |
|
680 | - 'tabtamer_title' => '', |
|
677 | + 'weight' => '10', |
|
678 | + 'action' => 'hidden', |
|
679 | + 'tabtamer_original_path' => 'user/%user/imce', |
|
680 | + 'tabtamer_title' => '', |
|
681 | 681 | ), |
682 | 682 | 'user/%/roles' => array( |
683 | - 'weight' => '0', |
|
684 | - 'action' => 'enabled', |
|
685 | - 'tabtamer_original_path' => 'user/%user/roles', |
|
686 | - 'tabtamer_title' => '', |
|
683 | + 'weight' => '0', |
|
684 | + 'action' => 'enabled', |
|
685 | + 'tabtamer_original_path' => 'user/%user/roles', |
|
686 | + 'tabtamer_title' => '', |
|
687 | 687 | ), |
688 | 688 | 'user/%/messages' => array( |
689 | - 'weight' => '0', |
|
690 | - 'action' => 'hidden', |
|
691 | - 'tabtamer_original_path' => 'user/%/messages', |
|
692 | - 'tabtamer_title' => '', |
|
689 | + 'weight' => '0', |
|
690 | + 'action' => 'hidden', |
|
691 | + 'tabtamer_original_path' => 'user/%/messages', |
|
692 | + 'tabtamer_title' => '', |
|
693 | 693 | ), |
694 | 694 | 'user/%/friends' => array( |
695 | - 'weight' => '0', |
|
696 | - 'action' => 'hidden', |
|
697 | - 'tabtamer_original_path' => 'user/%/friends', |
|
698 | - 'tabtamer_title' => '', |
|
695 | + 'weight' => '0', |
|
696 | + 'action' => 'hidden', |
|
697 | + 'tabtamer_original_path' => 'user/%/friends', |
|
698 | + 'tabtamer_title' => '', |
|
699 | 699 | ), |
700 | 700 | 'user/%/edit/account' => array( |
701 | - 'weight' => '0', |
|
702 | - 'action' => 'enabled', |
|
703 | - 'tabtamer_original_path' => 'user/%user_category/edit/account', |
|
704 | - 'tabtamer_title' => '', |
|
701 | + 'weight' => '0', |
|
702 | + 'action' => 'enabled', |
|
703 | + 'tabtamer_original_path' => 'user/%user_category/edit/account', |
|
704 | + 'tabtamer_title' => '', |
|
705 | 705 | ), |
706 | 706 | 'user/%/edit/profile' => array( |
707 | - 'weight' => '1', |
|
708 | - 'action' => 'hidden', |
|
709 | - 'tabtamer_original_path' => 'user/%user_category/edit/profile', |
|
710 | - 'tabtamer_title' => '', |
|
707 | + 'weight' => '1', |
|
708 | + 'action' => 'hidden', |
|
709 | + 'tabtamer_original_path' => 'user/%user_category/edit/profile', |
|
710 | + 'tabtamer_title' => '', |
|
711 | 711 | ), |
712 | 712 | 'user/%/friends/pending' => array( |
713 | - 'weight' => '0', |
|
714 | - 'action' => 'enabled', |
|
715 | - 'tabtamer_original_path' => 'user/%views_arg/friends/pending', |
|
716 | - 'tabtamer_title' => '', |
|
713 | + 'weight' => '0', |
|
714 | + 'action' => 'enabled', |
|
715 | + 'tabtamer_original_path' => 'user/%views_arg/friends/pending', |
|
716 | + 'tabtamer_title' => '', |
|
717 | 717 | ), |
718 | 718 | 'user/%/friends/flagged' => array( |
719 | - 'weight' => '0', |
|
720 | - 'action' => 'enabled', |
|
721 | - 'tabtamer_original_path' => 'user/%views_arg/friends/flagged', |
|
722 | - 'tabtamer_title' => '', |
|
719 | + 'weight' => '0', |
|
720 | + 'action' => 'enabled', |
|
721 | + 'tabtamer_original_path' => 'user/%views_arg/friends/flagged', |
|
722 | + 'tabtamer_title' => '', |
|
723 | 723 | ), |
724 | 724 | 'account/profile/view' => array( |
725 | - 'weight' => '0', |
|
726 | - 'action' => 'enabled', |
|
727 | - 'tabtamer_original_path' => 'account/profile/view', |
|
728 | - 'tabtamer_title' => '', |
|
725 | + 'weight' => '0', |
|
726 | + 'action' => 'enabled', |
|
727 | + 'tabtamer_original_path' => 'account/profile/view', |
|
728 | + 'tabtamer_title' => '', |
|
729 | 729 | ), |
730 | 730 | 'account/profile/edit' => array( |
731 | - 'weight' => '5', |
|
732 | - 'action' => 'enabled', |
|
733 | - 'tabtamer_original_path' => 'account/profile/edit', |
|
734 | - 'tabtamer_title' => '', |
|
731 | + 'weight' => '5', |
|
732 | + 'action' => 'enabled', |
|
733 | + 'tabtamer_original_path' => 'account/profile/edit', |
|
734 | + 'tabtamer_title' => '', |
|
735 | 735 | ), |
736 | 736 | 'account/prefs/computing' => array( |
737 | - 'weight' => '0', |
|
738 | - 'action' => 'enabled', |
|
739 | - 'tabtamer_original_path' => 'account/prefs/computing', |
|
740 | - 'tabtamer_title' => '', |
|
737 | + 'weight' => '0', |
|
738 | + 'action' => 'enabled', |
|
739 | + 'tabtamer_original_path' => 'account/prefs/computing', |
|
740 | + 'tabtamer_title' => '', |
|
741 | 741 | ), |
742 | 742 | 'account/prefs/project' => array( |
743 | - 'weight' => '5', |
|
744 | - 'action' => 'enabled', |
|
745 | - 'tabtamer_original_path' => 'account/prefs/project', |
|
746 | - 'tabtamer_title' => '', |
|
743 | + 'weight' => '5', |
|
744 | + 'action' => 'enabled', |
|
745 | + 'tabtamer_original_path' => 'account/prefs/project', |
|
746 | + 'tabtamer_title' => '', |
|
747 | 747 | ), |
748 | 748 | 'account/prefs/community' => array( |
749 | - 'weight' => '10', |
|
750 | - 'action' => 'enabled', |
|
751 | - 'tabtamer_original_path' => 'account/prefs/community', |
|
752 | - 'tabtamer_title' => '', |
|
749 | + 'weight' => '10', |
|
750 | + 'action' => 'enabled', |
|
751 | + 'tabtamer_original_path' => 'account/prefs/community', |
|
752 | + 'tabtamer_title' => '', |
|
753 | 753 | ), |
754 | 754 | 'account/prefs/privacy' => array( |
755 | - 'weight' => '15', |
|
756 | - 'action' => 'enabled', |
|
757 | - 'tabtamer_original_path' => 'account/prefs/privacy', |
|
758 | - 'tabtamer_title' => '', |
|
755 | + 'weight' => '15', |
|
756 | + 'action' => 'enabled', |
|
757 | + 'tabtamer_original_path' => 'account/prefs/privacy', |
|
758 | + 'tabtamer_title' => '', |
|
759 | 759 | ), |
760 | 760 | 'account/obsolete' => array( |
761 | - 'weight' => '0', |
|
762 | - 'action' => 'enabled', |
|
763 | - 'tabtamer_original_path' => 'account/obsolete', |
|
764 | - 'tabtamer_title' => '', |
|
761 | + 'weight' => '0', |
|
762 | + 'action' => 'enabled', |
|
763 | + 'tabtamer_original_path' => 'account/obsolete', |
|
764 | + 'tabtamer_title' => '', |
|
765 | 765 | ), |
766 | 766 | 'account/tasks/all' => array( |
767 | - 'weight' => '0', |
|
768 | - 'action' => 'enabled', |
|
769 | - 'tabtamer_original_path' => 'account/tasks/all', |
|
770 | - 'tabtamer_title' => '', |
|
767 | + 'weight' => '0', |
|
768 | + 'action' => 'enabled', |
|
769 | + 'tabtamer_original_path' => 'account/tasks/all', |
|
770 | + 'tabtamer_title' => '', |
|
771 | 771 | ), |
772 | 772 | 'account/tasks/error' => array( |
773 | - 'weight' => '5', |
|
774 | - 'action' => 'enabled', |
|
775 | - 'tabtamer_original_path' => 'account/tasks/error', |
|
776 | - 'tabtamer_title' => '', |
|
773 | + 'weight' => '5', |
|
774 | + 'action' => 'enabled', |
|
775 | + 'tabtamer_original_path' => 'account/tasks/error', |
|
776 | + 'tabtamer_title' => '', |
|
777 | 777 | ), |
778 | 778 | 'account/tasks/active' => array( |
779 | - 'weight' => '1', |
|
780 | - 'action' => 'enabled', |
|
781 | - 'tabtamer_original_path' => 'account/tasks/active', |
|
782 | - 'tabtamer_title' => '', |
|
779 | + 'weight' => '1', |
|
780 | + 'action' => 'enabled', |
|
781 | + 'tabtamer_original_path' => 'account/tasks/active', |
|
782 | + 'tabtamer_title' => '', |
|
783 | 783 | ), |
784 | 784 | 'account/tasks/invalid' => array( |
785 | - 'weight' => '4', |
|
786 | - 'action' => 'enabled', |
|
787 | - 'tabtamer_original_path' => 'account/tasks/invalid', |
|
788 | - 'tabtamer_title' => '', |
|
785 | + 'weight' => '4', |
|
786 | + 'action' => 'enabled', |
|
787 | + 'tabtamer_original_path' => 'account/tasks/invalid', |
|
788 | + 'tabtamer_title' => '', |
|
789 | 789 | ), |
790 | 790 | 'account/tasks/pending' => array( |
791 | - 'weight' => '2', |
|
792 | - 'action' => 'enabled', |
|
793 | - 'tabtamer_original_path' => 'account/tasks/pending', |
|
794 | - 'tabtamer_title' => '', |
|
791 | + 'weight' => '2', |
|
792 | + 'action' => 'enabled', |
|
793 | + 'tabtamer_original_path' => 'account/tasks/pending', |
|
794 | + 'tabtamer_title' => '', |
|
795 | 795 | ), |
796 | 796 | 'account/tasks/valid' => array( |
797 | - 'weight' => '3', |
|
798 | - 'action' => 'enabled', |
|
799 | - 'tabtamer_original_path' => 'account/tasks/valid', |
|
800 | - 'tabtamer_title' => '', |
|
797 | + 'weight' => '3', |
|
798 | + 'action' => 'enabled', |
|
799 | + 'tabtamer_original_path' => 'account/tasks/valid', |
|
800 | + 'tabtamer_title' => '', |
|
801 | 801 | ), |
802 | 802 | 'account/computers/all' => array( |
803 | - 'weight' => '1', |
|
804 | - 'action' => 'enabled', |
|
805 | - 'tabtamer_original_path' => 'account/computers/all', |
|
806 | - 'tabtamer_title' => '', |
|
803 | + 'weight' => '1', |
|
804 | + 'action' => 'enabled', |
|
805 | + 'tabtamer_original_path' => 'account/computers/all', |
|
806 | + 'tabtamer_title' => '', |
|
807 | 807 | ), |
808 | 808 | 'account/computers/active' => array( |
809 | - 'weight' => '0', |
|
810 | - 'action' => 'enabled', |
|
811 | - 'tabtamer_original_path' => 'account/computers/active', |
|
812 | - 'tabtamer_title' => '', |
|
809 | + 'weight' => '0', |
|
810 | + 'action' => 'enabled', |
|
811 | + 'tabtamer_original_path' => 'account/computers/active', |
|
812 | + 'tabtamer_title' => '', |
|
813 | 813 | ), |
814 | 814 | 'account/%/computers' => array( |
815 | - 'weight' => '0', |
|
816 | - 'action' => 'hidden', |
|
817 | - 'tabtamer_original_path' => 'account/%views_arg/computers', |
|
818 | - 'tabtamer_title' => '', |
|
815 | + 'weight' => '0', |
|
816 | + 'action' => 'hidden', |
|
817 | + 'tabtamer_original_path' => 'account/%views_arg/computers', |
|
818 | + 'tabtamer_title' => '', |
|
819 | 819 | ), |
820 | 820 | 'account/%/computers/all' => array( |
821 | - 'weight' => '1', |
|
822 | - 'action' => 'enabled', |
|
823 | - 'tabtamer_original_path' => 'account/%views_arg/computers/all', |
|
824 | - 'tabtamer_title' => '', |
|
821 | + 'weight' => '1', |
|
822 | + 'action' => 'enabled', |
|
823 | + 'tabtamer_original_path' => 'account/%views_arg/computers/all', |
|
824 | + 'tabtamer_title' => '', |
|
825 | 825 | ), |
826 | 826 | 'account/%/friends/all' => array( |
827 | - 'weight' => '-10', |
|
828 | - 'action' => 'enabled', |
|
829 | - 'tabtamer_original_path' => 'account/%/friends/all', |
|
830 | - 'tabtamer_title' => '', |
|
827 | + 'weight' => '-10', |
|
828 | + 'action' => 'enabled', |
|
829 | + 'tabtamer_original_path' => 'account/%/friends/all', |
|
830 | + 'tabtamer_title' => '', |
|
831 | 831 | ), |
832 | 832 | 'account/%/friends/pending' => array( |
833 | - 'weight' => '0', |
|
834 | - 'action' => 'enabled', |
|
835 | - 'tabtamer_original_path' => 'account/%views_arg/friends/pending', |
|
836 | - 'tabtamer_title' => '', |
|
833 | + 'weight' => '0', |
|
834 | + 'action' => 'enabled', |
|
835 | + 'tabtamer_original_path' => 'account/%views_arg/friends/pending', |
|
836 | + 'tabtamer_title' => '', |
|
837 | 837 | ), |
838 | 838 | 'account/%/friends/flagged' => array( |
839 | - 'weight' => '0', |
|
840 | - 'action' => 'enabled', |
|
841 | - 'tabtamer_original_path' => 'account/%views_arg/friends/flagged', |
|
842 | - 'tabtamer_title' => '', |
|
839 | + 'weight' => '0', |
|
840 | + 'action' => 'enabled', |
|
841 | + 'tabtamer_original_path' => 'account/%views_arg/friends/flagged', |
|
842 | + 'tabtamer_title' => '', |
|
843 | 843 | ), |
844 | 844 | 'join/new' => array( |
845 | - 'weight' => '0', |
|
846 | - 'action' => 'enabled', |
|
847 | - 'tabtamer_original_path' => 'join/new', |
|
848 | - 'tabtamer_title' => '', |
|
845 | + 'weight' => '0', |
|
846 | + 'action' => 'enabled', |
|
847 | + 'tabtamer_original_path' => 'join/new', |
|
848 | + 'tabtamer_title' => '', |
|
849 | 849 | ), |
850 | 850 | 'join/boinc' => array( |
851 | - 'weight' => '5', |
|
852 | - 'action' => 'enabled', |
|
853 | - 'tabtamer_original_path' => 'join/boinc', |
|
854 | - 'tabtamer_title' => '', |
|
851 | + 'weight' => '5', |
|
852 | + 'action' => 'enabled', |
|
853 | + 'tabtamer_original_path' => 'join/boinc', |
|
854 | + 'tabtamer_title' => '', |
|
855 | 855 | ), |
856 | 856 | 'messages/list' => array( |
857 | - 'weight' => '-10', |
|
858 | - 'action' => 'enabled', |
|
859 | - 'tabtamer_original_path' => 'messages/list', |
|
860 | - 'tabtamer_title' => '', |
|
857 | + 'weight' => '-10', |
|
858 | + 'action' => 'enabled', |
|
859 | + 'tabtamer_original_path' => 'messages/list', |
|
860 | + 'tabtamer_title' => '', |
|
861 | 861 | ), |
862 | 862 | 'messages/view/%' => array( |
863 | - 'weight' => '-5', |
|
864 | - 'action' => 'enabled', |
|
865 | - 'tabtamer_original_path' => 'messages/view/%privatemsg_thread', |
|
866 | - 'tabtamer_title' => '', |
|
863 | + 'weight' => '-5', |
|
864 | + 'action' => 'enabled', |
|
865 | + 'tabtamer_original_path' => 'messages/view/%privatemsg_thread', |
|
866 | + 'tabtamer_title' => '', |
|
867 | 867 | ), |
868 | 868 | 'messages/new' => array( |
869 | - 'weight' => '-3', |
|
870 | - 'action' => 'enabled', |
|
871 | - 'tabtamer_original_path' => 'messages/new', |
|
872 | - 'tabtamer_title' => '', |
|
869 | + 'weight' => '-3', |
|
870 | + 'action' => 'enabled', |
|
871 | + 'tabtamer_original_path' => 'messages/new', |
|
872 | + 'tabtamer_title' => '', |
|
873 | 873 | ), |
874 | 874 | 'news' => array( |
875 | - 'weight' => 0, |
|
876 | - 'action' => 'enabled', |
|
877 | - 'tabtamer_original_path' => 'news', |
|
878 | - 'tabtamer_title' => '', |
|
875 | + 'weight' => 0, |
|
876 | + 'action' => 'enabled', |
|
877 | + 'tabtamer_original_path' => 'news', |
|
878 | + 'tabtamer_title' => '', |
|
879 | 879 | ), |
880 | 880 | 'workunit/%/tasks' => array( |
881 | - 'weight' => '0', |
|
882 | - 'action' => 'enabled', |
|
883 | - 'tabtamer_original_path' => 'workunit/%views_arg/tasks', |
|
884 | - 'tabtamer_title' => '', |
|
881 | + 'weight' => '0', |
|
882 | + 'action' => 'enabled', |
|
883 | + 'tabtamer_original_path' => 'workunit/%views_arg/tasks', |
|
884 | + 'tabtamer_title' => '', |
|
885 | 885 | ), |
886 | 886 | 'workunit/%/tasks/error' => array( |
887 | - 'weight' => '5', |
|
888 | - 'action' => 'enabled', |
|
889 | - 'tabtamer_original_path' => 'workunit/%views_arg/tasks/error', |
|
890 | - 'tabtamer_title' => '', |
|
887 | + 'weight' => '5', |
|
888 | + 'action' => 'enabled', |
|
889 | + 'tabtamer_original_path' => 'workunit/%views_arg/tasks/error', |
|
890 | + 'tabtamer_title' => '', |
|
891 | 891 | ), |
892 | 892 | 'workunit/%/tasks/active' => array( |
893 | - 'weight' => '1', |
|
894 | - 'action' => 'enabled', |
|
895 | - 'tabtamer_original_path' => 'workunit/%views_arg/tasks/active', |
|
896 | - 'tabtamer_title' => '', |
|
893 | + 'weight' => '1', |
|
894 | + 'action' => 'enabled', |
|
895 | + 'tabtamer_original_path' => 'workunit/%views_arg/tasks/active', |
|
896 | + 'tabtamer_title' => '', |
|
897 | 897 | ), |
898 | 898 | 'workunit/%/tasks/invalid' => array( |
899 | - 'weight' => '4', |
|
900 | - 'action' => 'enabled', |
|
901 | - 'tabtamer_original_path' => 'workunit/%views_arg/tasks/invalid', |
|
902 | - 'tabtamer_title' => '', |
|
899 | + 'weight' => '4', |
|
900 | + 'action' => 'enabled', |
|
901 | + 'tabtamer_original_path' => 'workunit/%views_arg/tasks/invalid', |
|
902 | + 'tabtamer_title' => '', |
|
903 | 903 | ), |
904 | 904 | 'workunit/%/tasks/pending' => array( |
905 | - 'weight' => '2', |
|
906 | - 'action' => 'enabled', |
|
907 | - 'tabtamer_original_path' => 'workunit/%views_arg/tasks/pending', |
|
908 | - 'tabtamer_title' => '', |
|
905 | + 'weight' => '2', |
|
906 | + 'action' => 'enabled', |
|
907 | + 'tabtamer_original_path' => 'workunit/%views_arg/tasks/pending', |
|
908 | + 'tabtamer_title' => '', |
|
909 | 909 | ), |
910 | 910 | 'workunit/%/tasks/valid' => array( |
911 | - 'weight' => '3', |
|
912 | - 'action' => 'enabled', |
|
913 | - 'tabtamer_original_path' => 'workunit/%views_arg/tasks/valid', |
|
914 | - 'tabtamer_title' => '', |
|
911 | + 'weight' => '3', |
|
912 | + 'action' => 'enabled', |
|
913 | + 'tabtamer_original_path' => 'workunit/%views_arg/tasks/valid', |
|
914 | + 'tabtamer_title' => '', |
|
915 | 915 | ), |
916 | 916 | 'host/%/tasks' => array( |
917 | - 'weight' => '0', |
|
918 | - 'action' => 'enabled', |
|
919 | - 'tabtamer_original_path' => 'host/%views_arg/tasks', |
|
920 | - 'tabtamer_title' => '', |
|
917 | + 'weight' => '0', |
|
918 | + 'action' => 'enabled', |
|
919 | + 'tabtamer_original_path' => 'host/%views_arg/tasks', |
|
920 | + 'tabtamer_title' => '', |
|
921 | 921 | ), |
922 | 922 | 'host/%/tasks/error' => array( |
923 | - 'weight' => '5', |
|
924 | - 'action' => 'enabled', |
|
925 | - 'tabtamer_original_path' => 'host/%views_arg/tasks/error', |
|
926 | - 'tabtamer_title' => '', |
|
923 | + 'weight' => '5', |
|
924 | + 'action' => 'enabled', |
|
925 | + 'tabtamer_original_path' => 'host/%views_arg/tasks/error', |
|
926 | + 'tabtamer_title' => '', |
|
927 | 927 | ), |
928 | 928 | 'host/%/tasks/active' => array( |
929 | - 'weight' => '1', |
|
930 | - 'action' => 'enabled', |
|
931 | - 'tabtamer_original_path' => 'host/%views_arg/tasks/active', |
|
932 | - 'tabtamer_title' => '', |
|
929 | + 'weight' => '1', |
|
930 | + 'action' => 'enabled', |
|
931 | + 'tabtamer_original_path' => 'host/%views_arg/tasks/active', |
|
932 | + 'tabtamer_title' => '', |
|
933 | 933 | ), |
934 | 934 | 'host/%/tasks/invalid' => array( |
935 | - 'weight' => '4', |
|
936 | - 'action' => 'enabled', |
|
937 | - 'tabtamer_original_path' => 'host/%views_arg/tasks/invalid', |
|
938 | - 'tabtamer_title' => '', |
|
935 | + 'weight' => '4', |
|
936 | + 'action' => 'enabled', |
|
937 | + 'tabtamer_original_path' => 'host/%views_arg/tasks/invalid', |
|
938 | + 'tabtamer_title' => '', |
|
939 | 939 | ), |
940 | 940 | 'host/%/tasks/pending' => array( |
941 | - 'weight' => '2', |
|
942 | - 'action' => 'enabled', |
|
943 | - 'tabtamer_original_path' => 'host/%views_arg/tasks/pending', |
|
944 | - 'tabtamer_title' => '', |
|
941 | + 'weight' => '2', |
|
942 | + 'action' => 'enabled', |
|
943 | + 'tabtamer_original_path' => 'host/%views_arg/tasks/pending', |
|
944 | + 'tabtamer_title' => '', |
|
945 | 945 | ), |
946 | 946 | 'host/%/tasks/valid' => array( |
947 | - 'weight' => '3', |
|
948 | - 'action' => 'enabled', |
|
949 | - 'tabtamer_original_path' => 'host/%views_arg/tasks/valid', |
|
950 | - 'tabtamer_title' => '', |
|
951 | - ), |
|
952 | - ); |
|
953 | - $export['tabtamer_tab_settings'] = $strongarm; |
|
954 | - |
|
955 | - $strongarm = new stdClass; |
|
956 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
957 | - $strongarm->api_version = 1; |
|
958 | - $strongarm->name = 'theme_boinc_settings'; |
|
959 | - $strongarm->value = array( |
|
947 | + 'weight' => '3', |
|
948 | + 'action' => 'enabled', |
|
949 | + 'tabtamer_original_path' => 'host/%views_arg/tasks/valid', |
|
950 | + 'tabtamer_title' => '', |
|
951 | + ), |
|
952 | + ); |
|
953 | + $export['tabtamer_tab_settings'] = $strongarm; |
|
954 | + |
|
955 | + $strongarm = new stdClass; |
|
956 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
957 | + $strongarm->api_version = 1; |
|
958 | + $strongarm->name = 'theme_boinc_settings'; |
|
959 | + $strongarm->value = array( |
|
960 | 960 | 'zen_block_editing' => 1, |
961 | 961 | 'zen_breadcrumb' => 'yes', |
962 | 962 | 'zen_breadcrumb_separator' => ' › ', |
@@ -983,21 +983,21 @@ discard block |
||
983 | 983 | 'default_favicon' => 1, |
984 | 984 | 'favicon_path' => '', |
985 | 985 | 'favicon_upload' => '', |
986 | - ); |
|
987 | - $export['theme_boinc_settings'] = $strongarm; |
|
988 | - |
|
989 | - $strongarm = new stdClass; |
|
990 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
991 | - $strongarm->api_version = 1; |
|
992 | - $strongarm->name = 'theme_default'; |
|
993 | - $strongarm->value = 'einstein'; |
|
994 | - $export['theme_default'] = $strongarm; |
|
995 | - |
|
996 | - $strongarm = new stdClass; |
|
997 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
998 | - $strongarm->api_version = 1; |
|
999 | - $strongarm->name = 'theme_einstein_settings'; |
|
1000 | - $strongarm->value = array( |
|
986 | + ); |
|
987 | + $export['theme_boinc_settings'] = $strongarm; |
|
988 | + |
|
989 | + $strongarm = new stdClass; |
|
990 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
991 | + $strongarm->api_version = 1; |
|
992 | + $strongarm->name = 'theme_default'; |
|
993 | + $strongarm->value = 'einstein'; |
|
994 | + $export['theme_default'] = $strongarm; |
|
995 | + |
|
996 | + $strongarm = new stdClass; |
|
997 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
998 | + $strongarm->api_version = 1; |
|
999 | + $strongarm->name = 'theme_einstein_settings'; |
|
1000 | + $strongarm->value = array( |
|
1001 | 1001 | 'zen_block_editing' => 1, |
1002 | 1002 | 'zen_breadcrumb' => 'yes', |
1003 | 1003 | 'zen_breadcrumb_separator' => ' › ', |
@@ -1024,23 +1024,23 @@ discard block |
||
1024 | 1024 | 'favicon_upload' => '', |
1025 | 1025 | 'boinc_stats_chart_color' => '#009CDB', |
1026 | 1026 | 'boinc_stats_chart_bcolor' => '#EEEEEE', |
1027 | - ); |
|
1028 | - $export['theme_einstein_settings'] = $strongarm; |
|
1029 | - |
|
1030 | - $strongarm = new stdClass; |
|
1031 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1032 | - $strongarm->api_version = 1; |
|
1033 | - $strongarm->name = 'theme_settings'; |
|
1034 | - $strongarm->value = array( |
|
1027 | + ); |
|
1028 | + $export['theme_einstein_settings'] = $strongarm; |
|
1029 | + |
|
1030 | + $strongarm = new stdClass; |
|
1031 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1032 | + $strongarm->api_version = 1; |
|
1033 | + $strongarm->name = 'theme_settings'; |
|
1034 | + $strongarm->value = array( |
|
1035 | 1035 | 'toggle_node_info_page' => FALSE, |
1036 | - ); |
|
1037 | - $export['theme_settings'] = $strongarm; |
|
1038 | - |
|
1039 | - $strongarm = new stdClass; |
|
1040 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1041 | - $strongarm->api_version = 1; |
|
1042 | - $strongarm->name = 'theme_zen_settings'; |
|
1043 | - $strongarm->value = array( |
|
1036 | + ); |
|
1037 | + $export['theme_settings'] = $strongarm; |
|
1038 | + |
|
1039 | + $strongarm = new stdClass; |
|
1040 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1041 | + $strongarm->api_version = 1; |
|
1042 | + $strongarm->name = 'theme_zen_settings'; |
|
1043 | + $strongarm->value = array( |
|
1044 | 1044 | 'zen_block_editing' => '1', |
1045 | 1045 | 'zen_breadcrumb' => 'yes', |
1046 | 1046 | 'zen_breadcrumb_separator' => ' › ', |
@@ -1050,21 +1050,21 @@ discard block |
||
1050 | 1050 | 'zen_layout' => 'zen-columns-liquid', |
1051 | 1051 | 'zen_rebuild_registry' => '0', |
1052 | 1052 | 'zen_wireframes' => '0', |
1053 | - ); |
|
1054 | - $export['theme_zen_settings'] = $strongarm; |
|
1055 | - |
|
1056 | - $strongarm = new stdClass; |
|
1057 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1058 | - $strongarm->api_version = 1; |
|
1059 | - $strongarm->name = 'user_email_verification'; |
|
1060 | - $strongarm->value = 0; |
|
1061 | - $export['user_email_verification'] = $strongarm; |
|
1062 | - |
|
1063 | - $strongarm = new stdClass; |
|
1064 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1065 | - $strongarm->api_version = 1; |
|
1066 | - $strongarm->name = 'user_mail_password_reset_body'; |
|
1067 | - $strongarm->value = '!username, |
|
1053 | + ); |
|
1054 | + $export['theme_zen_settings'] = $strongarm; |
|
1055 | + |
|
1056 | + $strongarm = new stdClass; |
|
1057 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1058 | + $strongarm->api_version = 1; |
|
1059 | + $strongarm->name = 'user_email_verification'; |
|
1060 | + $strongarm->value = 0; |
|
1061 | + $export['user_email_verification'] = $strongarm; |
|
1062 | + |
|
1063 | + $strongarm = new stdClass; |
|
1064 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1065 | + $strongarm->api_version = 1; |
|
1066 | + $strongarm->name = 'user_mail_password_reset_body'; |
|
1067 | + $strongarm->value = '!username, |
|
1068 | 1068 | |
1069 | 1069 | A request to reset the password for your account has been made at !site. |
1070 | 1070 | |
@@ -1075,20 +1075,20 @@ discard block |
||
1075 | 1075 | This is a one-time login, so it can be used only once. It expires after one day and nothing will happen if it\'s not used. |
1076 | 1076 | |
1077 | 1077 | After logging in, you will be redirected to !edit_uri so you can change your password.'; |
1078 | - $export['user_mail_password_reset_body'] = $strongarm; |
|
1078 | + $export['user_mail_password_reset_body'] = $strongarm; |
|
1079 | 1079 | |
1080 | - $strongarm = new stdClass; |
|
1081 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1082 | - $strongarm->api_version = 1; |
|
1083 | - $strongarm->name = 'user_mail_password_reset_subject'; |
|
1084 | - $strongarm->value = 'Replacement login information for !username at !site'; |
|
1085 | - $export['user_mail_password_reset_subject'] = $strongarm; |
|
1080 | + $strongarm = new stdClass; |
|
1081 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1082 | + $strongarm->api_version = 1; |
|
1083 | + $strongarm->name = 'user_mail_password_reset_subject'; |
|
1084 | + $strongarm->value = 'Replacement login information for !username at !site'; |
|
1085 | + $export['user_mail_password_reset_subject'] = $strongarm; |
|
1086 | 1086 | |
1087 | - $strongarm = new stdClass; |
|
1088 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1089 | - $strongarm->api_version = 1; |
|
1090 | - $strongarm->name = 'user_mail_register_admin_created_body'; |
|
1091 | - $strongarm->value = '!username, |
|
1087 | + $strongarm = new stdClass; |
|
1088 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1089 | + $strongarm->api_version = 1; |
|
1090 | + $strongarm->name = 'user_mail_register_admin_created_body'; |
|
1091 | + $strongarm->value = '!username, |
|
1092 | 1092 | |
1093 | 1093 | A site administrator at !site has created an account for you. You may now log in to !login_uri using the following username and password: |
1094 | 1094 | |
@@ -1105,20 +1105,20 @@ discard block |
||
1105 | 1105 | |
1106 | 1106 | |
1107 | 1107 | -- !site team'; |
1108 | - $export['user_mail_register_admin_created_body'] = $strongarm; |
|
1108 | + $export['user_mail_register_admin_created_body'] = $strongarm; |
|
1109 | 1109 | |
1110 | - $strongarm = new stdClass; |
|
1111 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1112 | - $strongarm->api_version = 1; |
|
1113 | - $strongarm->name = 'user_mail_register_admin_created_subject'; |
|
1114 | - $strongarm->value = 'An administrator created an account for you at !site'; |
|
1115 | - $export['user_mail_register_admin_created_subject'] = $strongarm; |
|
1110 | + $strongarm = new stdClass; |
|
1111 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1112 | + $strongarm->api_version = 1; |
|
1113 | + $strongarm->name = 'user_mail_register_admin_created_subject'; |
|
1114 | + $strongarm->value = 'An administrator created an account for you at !site'; |
|
1115 | + $export['user_mail_register_admin_created_subject'] = $strongarm; |
|
1116 | 1116 | |
1117 | - $strongarm = new stdClass; |
|
1118 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1119 | - $strongarm->api_version = 1; |
|
1120 | - $strongarm->name = 'user_mail_register_no_approval_required_body'; |
|
1121 | - $strongarm->value = '!username, |
|
1117 | + $strongarm = new stdClass; |
|
1118 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1119 | + $strongarm->api_version = 1; |
|
1120 | + $strongarm->name = 'user_mail_register_no_approval_required_body'; |
|
1121 | + $strongarm->value = '!username, |
|
1122 | 1122 | |
1123 | 1123 | Thank you for registering at !site. You may now log in to !login_uri using the following username and password: |
1124 | 1124 | |
@@ -1135,39 +1135,39 @@ discard block |
||
1135 | 1135 | |
1136 | 1136 | |
1137 | 1137 | -- !site team'; |
1138 | - $export['user_mail_register_no_approval_required_body'] = $strongarm; |
|
1138 | + $export['user_mail_register_no_approval_required_body'] = $strongarm; |
|
1139 | 1139 | |
1140 | - $strongarm = new stdClass; |
|
1141 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1142 | - $strongarm->api_version = 1; |
|
1143 | - $strongarm->name = 'user_mail_register_no_approval_required_subject'; |
|
1144 | - $strongarm->value = 'Account details for !username at !site'; |
|
1145 | - $export['user_mail_register_no_approval_required_subject'] = $strongarm; |
|
1140 | + $strongarm = new stdClass; |
|
1141 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1142 | + $strongarm->api_version = 1; |
|
1143 | + $strongarm->name = 'user_mail_register_no_approval_required_subject'; |
|
1144 | + $strongarm->value = 'Account details for !username at !site'; |
|
1145 | + $export['user_mail_register_no_approval_required_subject'] = $strongarm; |
|
1146 | 1146 | |
1147 | - $strongarm = new stdClass; |
|
1148 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1149 | - $strongarm->api_version = 1; |
|
1150 | - $strongarm->name = 'user_mail_register_pending_approval_body'; |
|
1151 | - $strongarm->value = '!username, |
|
1147 | + $strongarm = new stdClass; |
|
1148 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1149 | + $strongarm->api_version = 1; |
|
1150 | + $strongarm->name = 'user_mail_register_pending_approval_body'; |
|
1151 | + $strongarm->value = '!username, |
|
1152 | 1152 | |
1153 | 1153 | Thank you for registering at !site. Your application for an account is currently pending approval. Once it has been approved, you will receive another e-mail containing information about how to log in, set your password, and other details. |
1154 | 1154 | |
1155 | 1155 | |
1156 | 1156 | -- !site team'; |
1157 | - $export['user_mail_register_pending_approval_body'] = $strongarm; |
|
1157 | + $export['user_mail_register_pending_approval_body'] = $strongarm; |
|
1158 | 1158 | |
1159 | - $strongarm = new stdClass; |
|
1160 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1161 | - $strongarm->api_version = 1; |
|
1162 | - $strongarm->name = 'user_mail_register_pending_approval_subject'; |
|
1163 | - $strongarm->value = 'Account details for !username at !site (pending admin approval)'; |
|
1164 | - $export['user_mail_register_pending_approval_subject'] = $strongarm; |
|
1159 | + $strongarm = new stdClass; |
|
1160 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1161 | + $strongarm->api_version = 1; |
|
1162 | + $strongarm->name = 'user_mail_register_pending_approval_subject'; |
|
1163 | + $strongarm->value = 'Account details for !username at !site (pending admin approval)'; |
|
1164 | + $export['user_mail_register_pending_approval_subject'] = $strongarm; |
|
1165 | 1165 | |
1166 | - $strongarm = new stdClass; |
|
1167 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1168 | - $strongarm->api_version = 1; |
|
1169 | - $strongarm->name = 'user_mail_status_activated_body'; |
|
1170 | - $strongarm->value = '!username, |
|
1166 | + $strongarm = new stdClass; |
|
1167 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1168 | + $strongarm->api_version = 1; |
|
1169 | + $strongarm->name = 'user_mail_status_activated_body'; |
|
1170 | + $strongarm->value = '!username, |
|
1171 | 1171 | |
1172 | 1172 | Your account at !site has been activated. |
1173 | 1173 | |
@@ -1183,130 +1183,130 @@ discard block |
||
1183 | 1183 | |
1184 | 1184 | username: !username |
1185 | 1185 | '; |
1186 | - $export['user_mail_status_activated_body'] = $strongarm; |
|
1187 | - |
|
1188 | - $strongarm = new stdClass; |
|
1189 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1190 | - $strongarm->api_version = 1; |
|
1191 | - $strongarm->name = 'user_mail_status_activated_notify'; |
|
1192 | - $strongarm->value = 1; |
|
1193 | - $export['user_mail_status_activated_notify'] = $strongarm; |
|
1194 | - |
|
1195 | - $strongarm = new stdClass; |
|
1196 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1197 | - $strongarm->api_version = 1; |
|
1198 | - $strongarm->name = 'user_mail_status_activated_subject'; |
|
1199 | - $strongarm->value = 'Account details for !username at !site (approved)'; |
|
1200 | - $export['user_mail_status_activated_subject'] = $strongarm; |
|
1201 | - |
|
1202 | - $strongarm = new stdClass; |
|
1203 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1204 | - $strongarm->api_version = 1; |
|
1205 | - $strongarm->name = 'user_mail_status_blocked_body'; |
|
1206 | - $strongarm->value = '!username, |
|
1186 | + $export['user_mail_status_activated_body'] = $strongarm; |
|
1187 | + |
|
1188 | + $strongarm = new stdClass; |
|
1189 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1190 | + $strongarm->api_version = 1; |
|
1191 | + $strongarm->name = 'user_mail_status_activated_notify'; |
|
1192 | + $strongarm->value = 1; |
|
1193 | + $export['user_mail_status_activated_notify'] = $strongarm; |
|
1194 | + |
|
1195 | + $strongarm = new stdClass; |
|
1196 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1197 | + $strongarm->api_version = 1; |
|
1198 | + $strongarm->name = 'user_mail_status_activated_subject'; |
|
1199 | + $strongarm->value = 'Account details for !username at !site (approved)'; |
|
1200 | + $export['user_mail_status_activated_subject'] = $strongarm; |
|
1201 | + |
|
1202 | + $strongarm = new stdClass; |
|
1203 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1204 | + $strongarm->api_version = 1; |
|
1205 | + $strongarm->name = 'user_mail_status_blocked_body'; |
|
1206 | + $strongarm->value = '!username, |
|
1207 | 1207 | |
1208 | 1208 | Your account on !site has been blocked.'; |
1209 | - $export['user_mail_status_blocked_body'] = $strongarm; |
|
1210 | - |
|
1211 | - $strongarm = new stdClass; |
|
1212 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1213 | - $strongarm->api_version = 1; |
|
1214 | - $strongarm->name = 'user_mail_status_blocked_notify'; |
|
1215 | - $strongarm->value = 0; |
|
1216 | - $export['user_mail_status_blocked_notify'] = $strongarm; |
|
1217 | - |
|
1218 | - $strongarm = new stdClass; |
|
1219 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1220 | - $strongarm->api_version = 1; |
|
1221 | - $strongarm->name = 'user_mail_status_blocked_subject'; |
|
1222 | - $strongarm->value = 'Account details for !username at !site (blocked)'; |
|
1223 | - $export['user_mail_status_blocked_subject'] = $strongarm; |
|
1224 | - |
|
1225 | - $strongarm = new stdClass; |
|
1226 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1227 | - $strongarm->api_version = 1; |
|
1228 | - $strongarm->name = 'user_mail_status_deleted_body'; |
|
1229 | - $strongarm->value = '!username, |
|
1209 | + $export['user_mail_status_blocked_body'] = $strongarm; |
|
1210 | + |
|
1211 | + $strongarm = new stdClass; |
|
1212 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1213 | + $strongarm->api_version = 1; |
|
1214 | + $strongarm->name = 'user_mail_status_blocked_notify'; |
|
1215 | + $strongarm->value = 0; |
|
1216 | + $export['user_mail_status_blocked_notify'] = $strongarm; |
|
1217 | + |
|
1218 | + $strongarm = new stdClass; |
|
1219 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1220 | + $strongarm->api_version = 1; |
|
1221 | + $strongarm->name = 'user_mail_status_blocked_subject'; |
|
1222 | + $strongarm->value = 'Account details for !username at !site (blocked)'; |
|
1223 | + $export['user_mail_status_blocked_subject'] = $strongarm; |
|
1224 | + |
|
1225 | + $strongarm = new stdClass; |
|
1226 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1227 | + $strongarm->api_version = 1; |
|
1228 | + $strongarm->name = 'user_mail_status_deleted_body'; |
|
1229 | + $strongarm->value = '!username, |
|
1230 | 1230 | |
1231 | 1231 | Your account on !site has been deleted.'; |
1232 | - $export['user_mail_status_deleted_body'] = $strongarm; |
|
1233 | - |
|
1234 | - $strongarm = new stdClass; |
|
1235 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1236 | - $strongarm->api_version = 1; |
|
1237 | - $strongarm->name = 'user_mail_status_deleted_notify'; |
|
1238 | - $strongarm->value = 0; |
|
1239 | - $export['user_mail_status_deleted_notify'] = $strongarm; |
|
1240 | - |
|
1241 | - $strongarm = new stdClass; |
|
1242 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1243 | - $strongarm->api_version = 1; |
|
1244 | - $strongarm->name = 'user_mail_status_deleted_subject'; |
|
1245 | - $strongarm->value = 'Account details for !username at !site (deleted)'; |
|
1246 | - $export['user_mail_status_deleted_subject'] = $strongarm; |
|
1247 | - |
|
1248 | - $strongarm = new stdClass; |
|
1249 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1250 | - $strongarm->api_version = 1; |
|
1251 | - $strongarm->name = 'user_pictures'; |
|
1252 | - $strongarm->value = '1'; |
|
1253 | - $export['user_pictures'] = $strongarm; |
|
1254 | - |
|
1255 | - $strongarm = new stdClass; |
|
1256 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1257 | - $strongarm->api_version = 1; |
|
1258 | - $strongarm->name = 'user_picture_default'; |
|
1259 | - $strongarm->value = ''; |
|
1260 | - $export['user_picture_default'] = $strongarm; |
|
1261 | - |
|
1262 | - $strongarm = new stdClass; |
|
1263 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1264 | - $strongarm->api_version = 1; |
|
1265 | - $strongarm->name = 'user_picture_dimensions'; |
|
1266 | - $strongarm->value = '85x85'; |
|
1267 | - $export['user_picture_dimensions'] = $strongarm; |
|
1268 | - |
|
1269 | - $strongarm = new stdClass; |
|
1270 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1271 | - $strongarm->api_version = 1; |
|
1272 | - $strongarm->name = 'user_picture_file_size'; |
|
1273 | - $strongarm->value = '30'; |
|
1274 | - $export['user_picture_file_size'] = $strongarm; |
|
1275 | - |
|
1276 | - $strongarm = new stdClass; |
|
1277 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1278 | - $strongarm->api_version = 1; |
|
1279 | - $strongarm->name = 'user_picture_guidelines'; |
|
1280 | - $strongarm->value = ''; |
|
1281 | - $export['user_picture_guidelines'] = $strongarm; |
|
1282 | - |
|
1283 | - $strongarm = new stdClass; |
|
1284 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1285 | - $strongarm->api_version = 1; |
|
1286 | - $strongarm->name = 'user_picture_path'; |
|
1287 | - $strongarm->value = 'pictures'; |
|
1288 | - $export['user_picture_path'] = $strongarm; |
|
1289 | - |
|
1290 | - $strongarm = new stdClass; |
|
1291 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1292 | - $strongarm->api_version = 1; |
|
1293 | - $strongarm->name = 'user_register'; |
|
1294 | - $strongarm->value = '0'; |
|
1295 | - $export['user_register'] = $strongarm; |
|
1296 | - |
|
1297 | - $strongarm = new stdClass; |
|
1298 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1299 | - $strongarm->api_version = 1; |
|
1300 | - $strongarm->name = 'user_registration_help'; |
|
1301 | - $strongarm->value = ''; |
|
1302 | - $export['user_registration_help'] = $strongarm; |
|
1303 | - |
|
1304 | - $strongarm = new stdClass; |
|
1305 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1306 | - $strongarm->api_version = 1; |
|
1307 | - $strongarm->name = 'user_signatures'; |
|
1308 | - $strongarm->value = '1'; |
|
1309 | - $export['user_signatures'] = $strongarm; |
|
1310 | - |
|
1311 | - return $export; |
|
1232 | + $export['user_mail_status_deleted_body'] = $strongarm; |
|
1233 | + |
|
1234 | + $strongarm = new stdClass; |
|
1235 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1236 | + $strongarm->api_version = 1; |
|
1237 | + $strongarm->name = 'user_mail_status_deleted_notify'; |
|
1238 | + $strongarm->value = 0; |
|
1239 | + $export['user_mail_status_deleted_notify'] = $strongarm; |
|
1240 | + |
|
1241 | + $strongarm = new stdClass; |
|
1242 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1243 | + $strongarm->api_version = 1; |
|
1244 | + $strongarm->name = 'user_mail_status_deleted_subject'; |
|
1245 | + $strongarm->value = 'Account details for !username at !site (deleted)'; |
|
1246 | + $export['user_mail_status_deleted_subject'] = $strongarm; |
|
1247 | + |
|
1248 | + $strongarm = new stdClass; |
|
1249 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1250 | + $strongarm->api_version = 1; |
|
1251 | + $strongarm->name = 'user_pictures'; |
|
1252 | + $strongarm->value = '1'; |
|
1253 | + $export['user_pictures'] = $strongarm; |
|
1254 | + |
|
1255 | + $strongarm = new stdClass; |
|
1256 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1257 | + $strongarm->api_version = 1; |
|
1258 | + $strongarm->name = 'user_picture_default'; |
|
1259 | + $strongarm->value = ''; |
|
1260 | + $export['user_picture_default'] = $strongarm; |
|
1261 | + |
|
1262 | + $strongarm = new stdClass; |
|
1263 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1264 | + $strongarm->api_version = 1; |
|
1265 | + $strongarm->name = 'user_picture_dimensions'; |
|
1266 | + $strongarm->value = '85x85'; |
|
1267 | + $export['user_picture_dimensions'] = $strongarm; |
|
1268 | + |
|
1269 | + $strongarm = new stdClass; |
|
1270 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1271 | + $strongarm->api_version = 1; |
|
1272 | + $strongarm->name = 'user_picture_file_size'; |
|
1273 | + $strongarm->value = '30'; |
|
1274 | + $export['user_picture_file_size'] = $strongarm; |
|
1275 | + |
|
1276 | + $strongarm = new stdClass; |
|
1277 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1278 | + $strongarm->api_version = 1; |
|
1279 | + $strongarm->name = 'user_picture_guidelines'; |
|
1280 | + $strongarm->value = ''; |
|
1281 | + $export['user_picture_guidelines'] = $strongarm; |
|
1282 | + |
|
1283 | + $strongarm = new stdClass; |
|
1284 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1285 | + $strongarm->api_version = 1; |
|
1286 | + $strongarm->name = 'user_picture_path'; |
|
1287 | + $strongarm->value = 'pictures'; |
|
1288 | + $export['user_picture_path'] = $strongarm; |
|
1289 | + |
|
1290 | + $strongarm = new stdClass; |
|
1291 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1292 | + $strongarm->api_version = 1; |
|
1293 | + $strongarm->name = 'user_register'; |
|
1294 | + $strongarm->value = '0'; |
|
1295 | + $export['user_register'] = $strongarm; |
|
1296 | + |
|
1297 | + $strongarm = new stdClass; |
|
1298 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1299 | + $strongarm->api_version = 1; |
|
1300 | + $strongarm->name = 'user_registration_help'; |
|
1301 | + $strongarm->value = ''; |
|
1302 | + $export['user_registration_help'] = $strongarm; |
|
1303 | + |
|
1304 | + $strongarm = new stdClass; |
|
1305 | + $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1306 | + $strongarm->api_version = 1; |
|
1307 | + $strongarm->name = 'user_signatures'; |
|
1308 | + $strongarm->value = '1'; |
|
1309 | + $export['user_signatures'] = $strongarm; |
|
1310 | + |
|
1311 | + return $export; |
|
1312 | 1312 | } |
@@ -7,98 +7,98 @@ discard block |
||
7 | 7 | $export = array(); |
8 | 8 | |
9 | 9 | $strongarm = new stdClass; |
10 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
10 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
11 | 11 | $strongarm->api_version = 1; |
12 | 12 | $strongarm->name = 'admin_theme'; |
13 | 13 | $strongarm->value = 'garland'; |
14 | 14 | $export['admin_theme'] = $strongarm; |
15 | 15 | |
16 | 16 | $strongarm = new stdClass; |
17 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
17 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
18 | 18 | $strongarm->api_version = 1; |
19 | 19 | $strongarm->name = 'comment_anonymous_page'; |
20 | 20 | $strongarm->value = 0; |
21 | 21 | $export['comment_anonymous_page'] = $strongarm; |
22 | 22 | |
23 | 23 | $strongarm = new stdClass; |
24 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
24 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
25 | 25 | $strongarm->api_version = 1; |
26 | 26 | $strongarm->name = 'comment_controls_page'; |
27 | 27 | $strongarm->value = '3'; |
28 | 28 | $export['comment_controls_page'] = $strongarm; |
29 | 29 | |
30 | 30 | $strongarm = new stdClass; |
31 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
31 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
32 | 32 | $strongarm->api_version = 1; |
33 | 33 | $strongarm->name = 'comment_default_mode_page'; |
34 | 34 | $strongarm->value = '4'; |
35 | 35 | $export['comment_default_mode_page'] = $strongarm; |
36 | 36 | |
37 | 37 | $strongarm = new stdClass; |
38 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
38 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
39 | 39 | $strongarm->api_version = 1; |
40 | 40 | $strongarm->name = 'comment_default_order_page'; |
41 | 41 | $strongarm->value = '1'; |
42 | 42 | $export['comment_default_order_page'] = $strongarm; |
43 | 43 | |
44 | 44 | $strongarm = new stdClass; |
45 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
45 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
46 | 46 | $strongarm->api_version = 1; |
47 | 47 | $strongarm->name = 'comment_default_per_page_page'; |
48 | 48 | $strongarm->value = '50'; |
49 | 49 | $export['comment_default_per_page_page'] = $strongarm; |
50 | 50 | |
51 | 51 | $strongarm = new stdClass; |
52 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
52 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
53 | 53 | $strongarm->api_version = 1; |
54 | 54 | $strongarm->name = 'comment_form_location_page'; |
55 | 55 | $strongarm->value = '0'; |
56 | 56 | $export['comment_form_location_page'] = $strongarm; |
57 | 57 | |
58 | 58 | $strongarm = new stdClass; |
59 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
59 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
60 | 60 | $strongarm->api_version = 1; |
61 | 61 | $strongarm->name = 'comment_page'; |
62 | 62 | $strongarm->value = 0; |
63 | 63 | $export['comment_page'] = $strongarm; |
64 | 64 | |
65 | 65 | $strongarm = new stdClass; |
66 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
66 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
67 | 67 | $strongarm->api_version = 1; |
68 | 68 | $strongarm->name = 'comment_preview_page'; |
69 | 69 | $strongarm->value = '1'; |
70 | 70 | $export['comment_preview_page'] = $strongarm; |
71 | 71 | |
72 | 72 | $strongarm = new stdClass; |
73 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
73 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
74 | 74 | $strongarm->api_version = 1; |
75 | 75 | $strongarm->name = 'comment_subject_field_page'; |
76 | 76 | $strongarm->value = '1'; |
77 | 77 | $export['comment_subject_field_page'] = $strongarm; |
78 | 78 | |
79 | 79 | $strongarm = new stdClass; |
80 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
80 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
81 | 81 | $strongarm->api_version = 1; |
82 | 82 | $strongarm->name = 'error_level'; |
83 | 83 | $strongarm->value = '0'; |
84 | 84 | $export['error_level'] = $strongarm; |
85 | 85 | |
86 | 86 | $strongarm = new stdClass; |
87 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
87 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
88 | 88 | $strongarm->api_version = 1; |
89 | 89 | $strongarm->name = 'filter_default_format'; |
90 | 90 | $strongarm->value = '4'; |
91 | 91 | $export['filter_default_format'] = $strongarm; |
92 | 92 | |
93 | 93 | $strongarm = new stdClass; |
94 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
94 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
95 | 95 | $strongarm->api_version = 1; |
96 | 96 | $strongarm->name = 'format'; |
97 | 97 | $strongarm->value = '4'; |
98 | 98 | $export['format'] = $strongarm; |
99 | 99 | |
100 | 100 | $strongarm = new stdClass; |
101 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
101 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
102 | 102 | $strongarm->api_version = 1; |
103 | 103 | $strongarm->name = 'imce_profiles'; |
104 | 104 | $strongarm->value = array( |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | $export['imce_profiles'] = $strongarm; |
218 | 218 | |
219 | 219 | $strongarm = new stdClass; |
220 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
220 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
221 | 221 | $strongarm->api_version = 1; |
222 | 222 | $strongarm->name = 'imce_roles_profiles'; |
223 | 223 | $strongarm->value = array( |
@@ -261,70 +261,70 @@ discard block |
||
261 | 261 | $export['imce_roles_profiles'] = $strongarm; |
262 | 262 | |
263 | 263 | $strongarm = new stdClass; |
264 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
264 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
265 | 265 | $strongarm->api_version = 1; |
266 | 266 | $strongarm->name = 'language_content_type_page'; |
267 | 267 | $strongarm->value = '2'; |
268 | 268 | $export['language_content_type_page'] = $strongarm; |
269 | 269 | |
270 | 270 | $strongarm = new stdClass; |
271 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
271 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
272 | 272 | $strongarm->api_version = 1; |
273 | 273 | $strongarm->name = 'menu_block_1_admin_title'; |
274 | 274 | $strongarm->value = 'Tertiary menu'; |
275 | 275 | $export['menu_block_1_admin_title'] = $strongarm; |
276 | 276 | |
277 | 277 | $strongarm = new stdClass; |
278 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
278 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
279 | 279 | $strongarm->api_version = 1; |
280 | 280 | $strongarm->name = 'menu_block_1_depth'; |
281 | 281 | $strongarm->value = '0'; |
282 | 282 | $export['menu_block_1_depth'] = $strongarm; |
283 | 283 | |
284 | 284 | $strongarm = new stdClass; |
285 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
285 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
286 | 286 | $strongarm->api_version = 1; |
287 | 287 | $strongarm->name = 'menu_block_1_expanded'; |
288 | 288 | $strongarm->value = 0; |
289 | 289 | $export['menu_block_1_expanded'] = $strongarm; |
290 | 290 | |
291 | 291 | $strongarm = new stdClass; |
292 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
292 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
293 | 293 | $strongarm->api_version = 1; |
294 | 294 | $strongarm->name = 'menu_block_1_follow'; |
295 | 295 | $strongarm->value = 0; |
296 | 296 | $export['menu_block_1_follow'] = $strongarm; |
297 | 297 | |
298 | 298 | $strongarm = new stdClass; |
299 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
299 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
300 | 300 | $strongarm->api_version = 1; |
301 | 301 | $strongarm->name = 'menu_block_1_level'; |
302 | 302 | $strongarm->value = '3'; |
303 | 303 | $export['menu_block_1_level'] = $strongarm; |
304 | 304 | |
305 | 305 | $strongarm = new stdClass; |
306 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
306 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
307 | 307 | $strongarm->api_version = 1; |
308 | 308 | $strongarm->name = 'menu_block_1_parent'; |
309 | 309 | $strongarm->value = 'primary-links:0'; |
310 | 310 | $export['menu_block_1_parent'] = $strongarm; |
311 | 311 | |
312 | 312 | $strongarm = new stdClass; |
313 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
313 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
314 | 314 | $strongarm->api_version = 1; |
315 | 315 | $strongarm->name = 'menu_block_1_sort'; |
316 | 316 | $strongarm->value = 0; |
317 | 317 | $export['menu_block_1_sort'] = $strongarm; |
318 | 318 | |
319 | 319 | $strongarm = new stdClass; |
320 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
320 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
321 | 321 | $strongarm->api_version = 1; |
322 | 322 | $strongarm->name = 'menu_block_1_title_link'; |
323 | 323 | $strongarm->value = 0; |
324 | 324 | $export['menu_block_1_title_link'] = $strongarm; |
325 | 325 | |
326 | 326 | $strongarm = new stdClass; |
327 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
327 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
328 | 328 | $strongarm->api_version = 1; |
329 | 329 | $strongarm->name = 'menu_block_ids'; |
330 | 330 | $strongarm->value = array( |
@@ -333,14 +333,14 @@ discard block |
||
333 | 333 | $export['menu_block_ids'] = $strongarm; |
334 | 334 | |
335 | 335 | $strongarm = new stdClass; |
336 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
336 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
337 | 337 | $strongarm->api_version = 1; |
338 | 338 | $strongarm->name = 'menu_default_node_menu'; |
339 | 339 | $strongarm->value = 'primary-links'; |
340 | 340 | $export['menu_default_node_menu'] = $strongarm; |
341 | 341 | |
342 | 342 | $strongarm = new stdClass; |
343 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
343 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
344 | 344 | $strongarm->api_version = 1; |
345 | 345 | $strongarm->name = 'menu_expanded'; |
346 | 346 | $strongarm->value = array( |
@@ -349,28 +349,28 @@ discard block |
||
349 | 349 | $export['menu_expanded'] = $strongarm; |
350 | 350 | |
351 | 351 | $strongarm = new stdClass; |
352 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
352 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
353 | 353 | $strongarm->api_version = 1; |
354 | 354 | $strongarm->name = 'menu_primary_links_source'; |
355 | 355 | $strongarm->value = 'primary-links'; |
356 | 356 | $export['menu_primary_links_source'] = $strongarm; |
357 | 357 | |
358 | 358 | $strongarm = new stdClass; |
359 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
359 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
360 | 360 | $strongarm->api_version = 1; |
361 | 361 | $strongarm->name = 'menu_secondary_links_source'; |
362 | 362 | $strongarm->value = 'primary-links'; |
363 | 363 | $export['menu_secondary_links_source'] = $strongarm; |
364 | 364 | |
365 | 365 | $strongarm = new stdClass; |
366 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
366 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
367 | 367 | $strongarm->api_version = 1; |
368 | 368 | $strongarm->name = 'node_admin_theme'; |
369 | 369 | $strongarm->value = 0; |
370 | 370 | $export['node_admin_theme'] = $strongarm; |
371 | 371 | |
372 | 372 | $strongarm = new stdClass; |
373 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
373 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
374 | 374 | $strongarm->api_version = 1; |
375 | 375 | $strongarm->name = 'node_options_page'; |
376 | 376 | $strongarm->value = array( |
@@ -379,56 +379,56 @@ discard block |
||
379 | 379 | $export['node_options_page'] = $strongarm; |
380 | 380 | |
381 | 381 | $strongarm = new stdClass; |
382 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
382 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
383 | 383 | $strongarm->api_version = 1; |
384 | 384 | $strongarm->name = 'page_manager_user_view_disabled'; |
385 | - $strongarm->value = FALSE; |
|
385 | + $strongarm->value = false; |
|
386 | 386 | $export['page_manager_user_view_disabled'] = $strongarm; |
387 | 387 | |
388 | 388 | $strongarm = new stdClass; |
389 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
389 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
390 | 390 | $strongarm->api_version = 1; |
391 | 391 | $strongarm->name = 'panels_legacy_rendering_mode'; |
392 | - $strongarm->value = FALSE; |
|
392 | + $strongarm->value = false; |
|
393 | 393 | $export['panels_legacy_rendering_mode'] = $strongarm; |
394 | 394 | |
395 | 395 | $strongarm = new stdClass; |
396 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
396 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
397 | 397 | $strongarm->api_version = 1; |
398 | 398 | $strongarm->name = 'pathauto_ignore_words'; |
399 | 399 | $strongarm->value = 'a,an,as,at,before,but,by,for,from,is,in,into,like,of,off,on,onto,per,since,than,the,this,that,to,up,via,with'; |
400 | 400 | $export['pathauto_ignore_words'] = $strongarm; |
401 | 401 | |
402 | 402 | $strongarm = new stdClass; |
403 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
403 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
404 | 404 | $strongarm->api_version = 1; |
405 | 405 | $strongarm->name = 'pathauto_indexaliases'; |
406 | - $strongarm->value = FALSE; |
|
406 | + $strongarm->value = false; |
|
407 | 407 | $export['pathauto_indexaliases'] = $strongarm; |
408 | 408 | |
409 | 409 | $strongarm = new stdClass; |
410 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
410 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
411 | 411 | $strongarm->api_version = 1; |
412 | 412 | $strongarm->name = 'pathauto_indexaliases_bulkupdate'; |
413 | - $strongarm->value = FALSE; |
|
413 | + $strongarm->value = false; |
|
414 | 414 | $export['pathauto_indexaliases_bulkupdate'] = $strongarm; |
415 | 415 | |
416 | 416 | $strongarm = new stdClass; |
417 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
417 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
418 | 418 | $strongarm->api_version = 1; |
419 | 419 | $strongarm->name = 'pathauto_max_component_length'; |
420 | 420 | $strongarm->value = '100'; |
421 | 421 | $export['pathauto_max_component_length'] = $strongarm; |
422 | 422 | |
423 | 423 | $strongarm = new stdClass; |
424 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
424 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
425 | 425 | $strongarm->api_version = 1; |
426 | 426 | $strongarm->name = 'pathauto_max_length'; |
427 | 427 | $strongarm->value = '100'; |
428 | 428 | $export['pathauto_max_length'] = $strongarm; |
429 | 429 | |
430 | 430 | $strongarm = new stdClass; |
431 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
431 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
432 | 432 | $strongarm->api_version = 1; |
433 | 433 | $strongarm->name = 'pathauto_modulelist'; |
434 | 434 | $strongarm->value = array( |
@@ -439,147 +439,147 @@ discard block |
||
439 | 439 | $export['pathauto_modulelist'] = $strongarm; |
440 | 440 | |
441 | 441 | $strongarm = new stdClass; |
442 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
442 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
443 | 443 | $strongarm->api_version = 1; |
444 | 444 | $strongarm->name = 'pathauto_node_applytofeeds'; |
445 | 445 | $strongarm->value = ''; |
446 | 446 | $export['pathauto_node_applytofeeds'] = $strongarm; |
447 | 447 | |
448 | 448 | $strongarm = new stdClass; |
449 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
449 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
450 | 450 | $strongarm->api_version = 1; |
451 | 451 | $strongarm->name = 'pathauto_node_bulkupdate'; |
452 | - $strongarm->value = FALSE; |
|
452 | + $strongarm->value = false; |
|
453 | 453 | $export['pathauto_node_bulkupdate'] = $strongarm; |
454 | 454 | |
455 | 455 | $strongarm = new stdClass; |
456 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
456 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
457 | 457 | $strongarm->api_version = 1; |
458 | 458 | $strongarm->name = 'pathauto_node_image_pattern'; |
459 | 459 | $strongarm->value = ''; |
460 | 460 | $export['pathauto_node_image_pattern'] = $strongarm; |
461 | 461 | |
462 | 462 | $strongarm = new stdClass; |
463 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
463 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
464 | 464 | $strongarm->api_version = 1; |
465 | 465 | $strongarm->name = 'pathauto_node_page_pattern'; |
466 | 466 | $strongarm->value = ''; |
467 | 467 | $export['pathauto_node_page_pattern'] = $strongarm; |
468 | 468 | |
469 | 469 | $strongarm = new stdClass; |
470 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
470 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
471 | 471 | $strongarm->api_version = 1; |
472 | 472 | $strongarm->name = 'pathauto_node_pattern'; |
473 | 473 | $strongarm->value = 'content/[title-raw]'; |
474 | 474 | $export['pathauto_node_pattern'] = $strongarm; |
475 | 475 | |
476 | 476 | $strongarm = new stdClass; |
477 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
477 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
478 | 478 | $strongarm->api_version = 1; |
479 | 479 | $strongarm->name = 'pathauto_node_story_pattern'; |
480 | 480 | $strongarm->value = ''; |
481 | 481 | $export['pathauto_node_story_pattern'] = $strongarm; |
482 | 482 | |
483 | 483 | $strongarm = new stdClass; |
484 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
484 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
485 | 485 | $strongarm->api_version = 1; |
486 | 486 | $strongarm->name = 'pathauto_punctuation_hyphen'; |
487 | 487 | $strongarm->value = 1; |
488 | 488 | $export['pathauto_punctuation_hyphen'] = $strongarm; |
489 | 489 | |
490 | 490 | $strongarm = new stdClass; |
491 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
491 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
492 | 492 | $strongarm->api_version = 1; |
493 | 493 | $strongarm->name = 'pathauto_punctuation_quotes'; |
494 | 494 | $strongarm->value = 0; |
495 | 495 | $export['pathauto_punctuation_quotes'] = $strongarm; |
496 | 496 | |
497 | 497 | $strongarm = new stdClass; |
498 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
498 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
499 | 499 | $strongarm->api_version = 1; |
500 | 500 | $strongarm->name = 'pathauto_separator'; |
501 | 501 | $strongarm->value = '-'; |
502 | 502 | $export['pathauto_separator'] = $strongarm; |
503 | 503 | |
504 | 504 | $strongarm = new stdClass; |
505 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
505 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
506 | 506 | $strongarm->api_version = 1; |
507 | 507 | $strongarm->name = 'pathauto_taxonomy_2_pattern'; |
508 | 508 | $strongarm->value = ''; |
509 | 509 | $export['pathauto_taxonomy_2_pattern'] = $strongarm; |
510 | 510 | |
511 | 511 | $strongarm = new stdClass; |
512 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
512 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
513 | 513 | $strongarm->api_version = 1; |
514 | 514 | $strongarm->name = 'pathauto_taxonomy_applytofeeds'; |
515 | - $strongarm->value = FALSE; |
|
515 | + $strongarm->value = false; |
|
516 | 516 | $export['pathauto_taxonomy_applytofeeds'] = $strongarm; |
517 | 517 | |
518 | 518 | $strongarm = new stdClass; |
519 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
519 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
520 | 520 | $strongarm->api_version = 1; |
521 | 521 | $strongarm->name = 'pathauto_taxonomy_bulkupdate'; |
522 | - $strongarm->value = FALSE; |
|
522 | + $strongarm->value = false; |
|
523 | 523 | $export['pathauto_taxonomy_bulkupdate'] = $strongarm; |
524 | 524 | |
525 | 525 | $strongarm = new stdClass; |
526 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
526 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
527 | 527 | $strongarm->api_version = 1; |
528 | 528 | $strongarm->name = 'pathauto_taxonomy_pattern'; |
529 | 529 | $strongarm->value = 'category/[vocab-raw]/[catpath-raw]'; |
530 | 530 | $export['pathauto_taxonomy_pattern'] = $strongarm; |
531 | 531 | |
532 | 532 | $strongarm = new stdClass; |
533 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
533 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
534 | 534 | $strongarm->api_version = 1; |
535 | 535 | $strongarm->name = 'pathauto_taxonomy_supportsfeeds'; |
536 | 536 | $strongarm->value = '0/feed'; |
537 | 537 | $export['pathauto_taxonomy_supportsfeeds'] = $strongarm; |
538 | 538 | |
539 | 539 | $strongarm = new stdClass; |
540 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
540 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
541 | 541 | $strongarm->api_version = 1; |
542 | 542 | $strongarm->name = 'pathauto_update_action'; |
543 | 543 | $strongarm->value = '2'; |
544 | 544 | $export['pathauto_update_action'] = $strongarm; |
545 | 545 | |
546 | 546 | $strongarm = new stdClass; |
547 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
547 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
548 | 548 | $strongarm->api_version = 1; |
549 | 549 | $strongarm->name = 'pathauto_user_bulkupdate'; |
550 | - $strongarm->value = FALSE; |
|
550 | + $strongarm->value = false; |
|
551 | 551 | $export['pathauto_user_bulkupdate'] = $strongarm; |
552 | 552 | |
553 | 553 | $strongarm = new stdClass; |
554 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
554 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
555 | 555 | $strongarm->api_version = 1; |
556 | 556 | $strongarm->name = 'pathauto_user_pattern'; |
557 | 557 | $strongarm->value = 'users/[user-raw]'; |
558 | 558 | $export['pathauto_user_pattern'] = $strongarm; |
559 | 559 | |
560 | 560 | $strongarm = new stdClass; |
561 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
561 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
562 | 562 | $strongarm->api_version = 1; |
563 | 563 | $strongarm->name = 'pathauto_user_supportsfeeds'; |
564 | 564 | $strongarm->value = ''; |
565 | 565 | $export['pathauto_user_supportsfeeds'] = $strongarm; |
566 | 566 | |
567 | 567 | $strongarm = new stdClass; |
568 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
568 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
569 | 569 | $strongarm->api_version = 1; |
570 | 570 | $strongarm->name = 'pathauto_verbose'; |
571 | - $strongarm->value = FALSE; |
|
571 | + $strongarm->value = false; |
|
572 | 572 | $export['pathauto_verbose'] = $strongarm; |
573 | 573 | |
574 | 574 | $strongarm = new stdClass; |
575 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
575 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
576 | 576 | $strongarm->api_version = 1; |
577 | 577 | $strongarm->name = 'site_frontpage'; |
578 | 578 | $strongarm->value = 'home'; |
579 | 579 | $export['site_frontpage'] = $strongarm; |
580 | 580 | |
581 | 581 | $strongarm = new stdClass; |
582 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
582 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
583 | 583 | $strongarm->api_version = 1; |
584 | 584 | $strongarm->name = 'tabtamer_tab_settings'; |
585 | 585 | $strongarm->value = array( |
@@ -953,7 +953,7 @@ discard block |
||
953 | 953 | $export['tabtamer_tab_settings'] = $strongarm; |
954 | 954 | |
955 | 955 | $strongarm = new stdClass; |
956 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
956 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
957 | 957 | $strongarm->api_version = 1; |
958 | 958 | $strongarm->name = 'theme_boinc_settings'; |
959 | 959 | $strongarm->value = array( |
@@ -987,14 +987,14 @@ discard block |
||
987 | 987 | $export['theme_boinc_settings'] = $strongarm; |
988 | 988 | |
989 | 989 | $strongarm = new stdClass; |
990 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
990 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
991 | 991 | $strongarm->api_version = 1; |
992 | 992 | $strongarm->name = 'theme_default'; |
993 | 993 | $strongarm->value = 'einstein'; |
994 | 994 | $export['theme_default'] = $strongarm; |
995 | 995 | |
996 | 996 | $strongarm = new stdClass; |
997 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
997 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
998 | 998 | $strongarm->api_version = 1; |
999 | 999 | $strongarm->name = 'theme_einstein_settings'; |
1000 | 1000 | $strongarm->value = array( |
@@ -1028,16 +1028,16 @@ discard block |
||
1028 | 1028 | $export['theme_einstein_settings'] = $strongarm; |
1029 | 1029 | |
1030 | 1030 | $strongarm = new stdClass; |
1031 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1031 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1032 | 1032 | $strongarm->api_version = 1; |
1033 | 1033 | $strongarm->name = 'theme_settings'; |
1034 | 1034 | $strongarm->value = array( |
1035 | - 'toggle_node_info_page' => FALSE, |
|
1035 | + 'toggle_node_info_page' => false, |
|
1036 | 1036 | ); |
1037 | 1037 | $export['theme_settings'] = $strongarm; |
1038 | 1038 | |
1039 | 1039 | $strongarm = new stdClass; |
1040 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1040 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1041 | 1041 | $strongarm->api_version = 1; |
1042 | 1042 | $strongarm->name = 'theme_zen_settings'; |
1043 | 1043 | $strongarm->value = array( |
@@ -1054,14 +1054,14 @@ discard block |
||
1054 | 1054 | $export['theme_zen_settings'] = $strongarm; |
1055 | 1055 | |
1056 | 1056 | $strongarm = new stdClass; |
1057 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1057 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1058 | 1058 | $strongarm->api_version = 1; |
1059 | 1059 | $strongarm->name = 'user_email_verification'; |
1060 | 1060 | $strongarm->value = 0; |
1061 | 1061 | $export['user_email_verification'] = $strongarm; |
1062 | 1062 | |
1063 | 1063 | $strongarm = new stdClass; |
1064 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1064 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1065 | 1065 | $strongarm->api_version = 1; |
1066 | 1066 | $strongarm->name = 'user_mail_password_reset_body'; |
1067 | 1067 | $strongarm->value = '!username, |
@@ -1078,14 +1078,14 @@ discard block |
||
1078 | 1078 | $export['user_mail_password_reset_body'] = $strongarm; |
1079 | 1079 | |
1080 | 1080 | $strongarm = new stdClass; |
1081 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1081 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1082 | 1082 | $strongarm->api_version = 1; |
1083 | 1083 | $strongarm->name = 'user_mail_password_reset_subject'; |
1084 | 1084 | $strongarm->value = 'Replacement login information for !username at !site'; |
1085 | 1085 | $export['user_mail_password_reset_subject'] = $strongarm; |
1086 | 1086 | |
1087 | 1087 | $strongarm = new stdClass; |
1088 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1088 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1089 | 1089 | $strongarm->api_version = 1; |
1090 | 1090 | $strongarm->name = 'user_mail_register_admin_created_body'; |
1091 | 1091 | $strongarm->value = '!username, |
@@ -1108,14 +1108,14 @@ discard block |
||
1108 | 1108 | $export['user_mail_register_admin_created_body'] = $strongarm; |
1109 | 1109 | |
1110 | 1110 | $strongarm = new stdClass; |
1111 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1111 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1112 | 1112 | $strongarm->api_version = 1; |
1113 | 1113 | $strongarm->name = 'user_mail_register_admin_created_subject'; |
1114 | 1114 | $strongarm->value = 'An administrator created an account for you at !site'; |
1115 | 1115 | $export['user_mail_register_admin_created_subject'] = $strongarm; |
1116 | 1116 | |
1117 | 1117 | $strongarm = new stdClass; |
1118 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1118 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1119 | 1119 | $strongarm->api_version = 1; |
1120 | 1120 | $strongarm->name = 'user_mail_register_no_approval_required_body'; |
1121 | 1121 | $strongarm->value = '!username, |
@@ -1138,14 +1138,14 @@ discard block |
||
1138 | 1138 | $export['user_mail_register_no_approval_required_body'] = $strongarm; |
1139 | 1139 | |
1140 | 1140 | $strongarm = new stdClass; |
1141 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1141 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1142 | 1142 | $strongarm->api_version = 1; |
1143 | 1143 | $strongarm->name = 'user_mail_register_no_approval_required_subject'; |
1144 | 1144 | $strongarm->value = 'Account details for !username at !site'; |
1145 | 1145 | $export['user_mail_register_no_approval_required_subject'] = $strongarm; |
1146 | 1146 | |
1147 | 1147 | $strongarm = new stdClass; |
1148 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1148 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1149 | 1149 | $strongarm->api_version = 1; |
1150 | 1150 | $strongarm->name = 'user_mail_register_pending_approval_body'; |
1151 | 1151 | $strongarm->value = '!username, |
@@ -1157,14 +1157,14 @@ discard block |
||
1157 | 1157 | $export['user_mail_register_pending_approval_body'] = $strongarm; |
1158 | 1158 | |
1159 | 1159 | $strongarm = new stdClass; |
1160 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1160 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1161 | 1161 | $strongarm->api_version = 1; |
1162 | 1162 | $strongarm->name = 'user_mail_register_pending_approval_subject'; |
1163 | 1163 | $strongarm->value = 'Account details for !username at !site (pending admin approval)'; |
1164 | 1164 | $export['user_mail_register_pending_approval_subject'] = $strongarm; |
1165 | 1165 | |
1166 | 1166 | $strongarm = new stdClass; |
1167 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1167 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1168 | 1168 | $strongarm->api_version = 1; |
1169 | 1169 | $strongarm->name = 'user_mail_status_activated_body'; |
1170 | 1170 | $strongarm->value = '!username, |
@@ -1186,21 +1186,21 @@ discard block |
||
1186 | 1186 | $export['user_mail_status_activated_body'] = $strongarm; |
1187 | 1187 | |
1188 | 1188 | $strongarm = new stdClass; |
1189 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1189 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1190 | 1190 | $strongarm->api_version = 1; |
1191 | 1191 | $strongarm->name = 'user_mail_status_activated_notify'; |
1192 | 1192 | $strongarm->value = 1; |
1193 | 1193 | $export['user_mail_status_activated_notify'] = $strongarm; |
1194 | 1194 | |
1195 | 1195 | $strongarm = new stdClass; |
1196 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1196 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1197 | 1197 | $strongarm->api_version = 1; |
1198 | 1198 | $strongarm->name = 'user_mail_status_activated_subject'; |
1199 | 1199 | $strongarm->value = 'Account details for !username at !site (approved)'; |
1200 | 1200 | $export['user_mail_status_activated_subject'] = $strongarm; |
1201 | 1201 | |
1202 | 1202 | $strongarm = new stdClass; |
1203 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1203 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1204 | 1204 | $strongarm->api_version = 1; |
1205 | 1205 | $strongarm->name = 'user_mail_status_blocked_body'; |
1206 | 1206 | $strongarm->value = '!username, |
@@ -1209,21 +1209,21 @@ discard block |
||
1209 | 1209 | $export['user_mail_status_blocked_body'] = $strongarm; |
1210 | 1210 | |
1211 | 1211 | $strongarm = new stdClass; |
1212 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1212 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1213 | 1213 | $strongarm->api_version = 1; |
1214 | 1214 | $strongarm->name = 'user_mail_status_blocked_notify'; |
1215 | 1215 | $strongarm->value = 0; |
1216 | 1216 | $export['user_mail_status_blocked_notify'] = $strongarm; |
1217 | 1217 | |
1218 | 1218 | $strongarm = new stdClass; |
1219 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1219 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1220 | 1220 | $strongarm->api_version = 1; |
1221 | 1221 | $strongarm->name = 'user_mail_status_blocked_subject'; |
1222 | 1222 | $strongarm->value = 'Account details for !username at !site (blocked)'; |
1223 | 1223 | $export['user_mail_status_blocked_subject'] = $strongarm; |
1224 | 1224 | |
1225 | 1225 | $strongarm = new stdClass; |
1226 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1226 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1227 | 1227 | $strongarm->api_version = 1; |
1228 | 1228 | $strongarm->name = 'user_mail_status_deleted_body'; |
1229 | 1229 | $strongarm->value = '!username, |
@@ -1232,77 +1232,77 @@ discard block |
||
1232 | 1232 | $export['user_mail_status_deleted_body'] = $strongarm; |
1233 | 1233 | |
1234 | 1234 | $strongarm = new stdClass; |
1235 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1235 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1236 | 1236 | $strongarm->api_version = 1; |
1237 | 1237 | $strongarm->name = 'user_mail_status_deleted_notify'; |
1238 | 1238 | $strongarm->value = 0; |
1239 | 1239 | $export['user_mail_status_deleted_notify'] = $strongarm; |
1240 | 1240 | |
1241 | 1241 | $strongarm = new stdClass; |
1242 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1242 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1243 | 1243 | $strongarm->api_version = 1; |
1244 | 1244 | $strongarm->name = 'user_mail_status_deleted_subject'; |
1245 | 1245 | $strongarm->value = 'Account details for !username at !site (deleted)'; |
1246 | 1246 | $export['user_mail_status_deleted_subject'] = $strongarm; |
1247 | 1247 | |
1248 | 1248 | $strongarm = new stdClass; |
1249 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1249 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1250 | 1250 | $strongarm->api_version = 1; |
1251 | 1251 | $strongarm->name = 'user_pictures'; |
1252 | 1252 | $strongarm->value = '1'; |
1253 | 1253 | $export['user_pictures'] = $strongarm; |
1254 | 1254 | |
1255 | 1255 | $strongarm = new stdClass; |
1256 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1256 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1257 | 1257 | $strongarm->api_version = 1; |
1258 | 1258 | $strongarm->name = 'user_picture_default'; |
1259 | 1259 | $strongarm->value = ''; |
1260 | 1260 | $export['user_picture_default'] = $strongarm; |
1261 | 1261 | |
1262 | 1262 | $strongarm = new stdClass; |
1263 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1263 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1264 | 1264 | $strongarm->api_version = 1; |
1265 | 1265 | $strongarm->name = 'user_picture_dimensions'; |
1266 | 1266 | $strongarm->value = '85x85'; |
1267 | 1267 | $export['user_picture_dimensions'] = $strongarm; |
1268 | 1268 | |
1269 | 1269 | $strongarm = new stdClass; |
1270 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1270 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1271 | 1271 | $strongarm->api_version = 1; |
1272 | 1272 | $strongarm->name = 'user_picture_file_size'; |
1273 | 1273 | $strongarm->value = '30'; |
1274 | 1274 | $export['user_picture_file_size'] = $strongarm; |
1275 | 1275 | |
1276 | 1276 | $strongarm = new stdClass; |
1277 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1277 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1278 | 1278 | $strongarm->api_version = 1; |
1279 | 1279 | $strongarm->name = 'user_picture_guidelines'; |
1280 | 1280 | $strongarm->value = ''; |
1281 | 1281 | $export['user_picture_guidelines'] = $strongarm; |
1282 | 1282 | |
1283 | 1283 | $strongarm = new stdClass; |
1284 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1284 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1285 | 1285 | $strongarm->api_version = 1; |
1286 | 1286 | $strongarm->name = 'user_picture_path'; |
1287 | 1287 | $strongarm->value = 'pictures'; |
1288 | 1288 | $export['user_picture_path'] = $strongarm; |
1289 | 1289 | |
1290 | 1290 | $strongarm = new stdClass; |
1291 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1291 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1292 | 1292 | $strongarm->api_version = 1; |
1293 | 1293 | $strongarm->name = 'user_register'; |
1294 | 1294 | $strongarm->value = '0'; |
1295 | 1295 | $export['user_register'] = $strongarm; |
1296 | 1296 | |
1297 | 1297 | $strongarm = new stdClass; |
1298 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1298 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1299 | 1299 | $strongarm->api_version = 1; |
1300 | 1300 | $strongarm->name = 'user_registration_help'; |
1301 | 1301 | $strongarm->value = ''; |
1302 | 1302 | $export['user_registration_help'] = $strongarm; |
1303 | 1303 | |
1304 | 1304 | $strongarm = new stdClass; |
1305 | - $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */ |
|
1305 | + $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */ |
|
1306 | 1306 | $strongarm->api_version = 1; |
1307 | 1307 | $strongarm->name = 'user_signatures'; |
1308 | 1308 | $strongarm->value = '1'; |
@@ -4,22 +4,22 @@ discard block |
||
4 | 4 | * Implementation of hook_views_default_views(). |
5 | 5 | */ |
6 | 6 | function boinc_standard_views_default_views() { |
7 | - $views = array(); |
|
7 | + $views = array(); |
|
8 | 8 | |
9 | - // Exported view: admin_user_search |
|
10 | - $view = new view; |
|
11 | - $view->name = 'admin_user_search'; |
|
12 | - $view->description = 'Administrator User Search'; |
|
13 | - $view->tag = ''; |
|
14 | - $view->base_table = 'users'; |
|
15 | - $view->core = 6; |
|
16 | - $view->api_version = '2'; |
|
17 | - $view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */ |
|
18 | - $handler = $view->new_display('default', 'Defaults', 'default'); |
|
19 | - $handler->override_option('fields', array( |
|
9 | + // Exported view: admin_user_search |
|
10 | + $view = new view; |
|
11 | + $view->name = 'admin_user_search'; |
|
12 | + $view->description = 'Administrator User Search'; |
|
13 | + $view->tag = ''; |
|
14 | + $view->base_table = 'users'; |
|
15 | + $view->core = 6; |
|
16 | + $view->api_version = '2'; |
|
17 | + $view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */ |
|
18 | + $handler = $view->new_display('default', 'Defaults', 'default'); |
|
19 | + $handler->override_option('fields', array( |
|
20 | 20 | 'uid' => array( |
21 | - 'label' => 'Uid', |
|
22 | - 'alter' => array( |
|
21 | + 'label' => 'Uid', |
|
22 | + 'alter' => array( |
|
23 | 23 | 'alter_text' => 0, |
24 | 24 | 'text' => '', |
25 | 25 | 'make_link' => 0, |
@@ -38,21 +38,21 @@ discard block |
||
38 | 38 | 'ellipsis' => 1, |
39 | 39 | 'html' => 0, |
40 | 40 | 'strip_tags' => 0, |
41 | - ), |
|
42 | - 'empty' => '', |
|
43 | - 'hide_empty' => 0, |
|
44 | - 'empty_zero' => 0, |
|
45 | - 'hide_alter_empty' => 1, |
|
46 | - 'link_to_user' => 0, |
|
47 | - 'exclude' => 0, |
|
48 | - 'id' => 'uid', |
|
49 | - 'table' => 'users', |
|
50 | - 'field' => 'uid', |
|
51 | - 'relationship' => 'none', |
|
41 | + ), |
|
42 | + 'empty' => '', |
|
43 | + 'hide_empty' => 0, |
|
44 | + 'empty_zero' => 0, |
|
45 | + 'hide_alter_empty' => 1, |
|
46 | + 'link_to_user' => 0, |
|
47 | + 'exclude' => 0, |
|
48 | + 'id' => 'uid', |
|
49 | + 'table' => 'users', |
|
50 | + 'field' => 'uid', |
|
51 | + 'relationship' => 'none', |
|
52 | 52 | ), |
53 | 53 | 'name' => array( |
54 | - 'label' => 'Name', |
|
55 | - 'alter' => array( |
|
54 | + 'label' => 'Name', |
|
55 | + 'alter' => array( |
|
56 | 56 | 'alter_text' => 0, |
57 | 57 | 'text' => '', |
58 | 58 | 'make_link' => 1, |
@@ -71,23 +71,23 @@ discard block |
||
71 | 71 | 'ellipsis' => 1, |
72 | 72 | 'html' => 0, |
73 | 73 | 'strip_tags' => 0, |
74 | - ), |
|
75 | - 'empty' => '', |
|
76 | - 'hide_empty' => 0, |
|
77 | - 'empty_zero' => 0, |
|
78 | - 'hide_alter_empty' => 1, |
|
79 | - 'link_to_user' => 0, |
|
80 | - 'overwrite_anonymous' => 0, |
|
81 | - 'anonymous_text' => '', |
|
82 | - 'exclude' => 0, |
|
83 | - 'id' => 'name', |
|
84 | - 'table' => 'users', |
|
85 | - 'field' => 'name', |
|
86 | - 'relationship' => 'none', |
|
74 | + ), |
|
75 | + 'empty' => '', |
|
76 | + 'hide_empty' => 0, |
|
77 | + 'empty_zero' => 0, |
|
78 | + 'hide_alter_empty' => 1, |
|
79 | + 'link_to_user' => 0, |
|
80 | + 'overwrite_anonymous' => 0, |
|
81 | + 'anonymous_text' => '', |
|
82 | + 'exclude' => 0, |
|
83 | + 'id' => 'name', |
|
84 | + 'table' => 'users', |
|
85 | + 'field' => 'name', |
|
86 | + 'relationship' => 'none', |
|
87 | 87 | ), |
88 | 88 | 'rid' => array( |
89 | - 'label' => 'Roles', |
|
90 | - 'alter' => array( |
|
89 | + 'label' => 'Roles', |
|
90 | + 'alter' => array( |
|
91 | 91 | 'alter_text' => 0, |
92 | 92 | 'text' => '', |
93 | 93 | 'make_link' => 0, |
@@ -106,22 +106,22 @@ discard block |
||
106 | 106 | 'ellipsis' => 1, |
107 | 107 | 'html' => 0, |
108 | 108 | 'strip_tags' => 0, |
109 | - ), |
|
110 | - 'empty' => '', |
|
111 | - 'hide_empty' => 0, |
|
112 | - 'empty_zero' => 0, |
|
113 | - 'hide_alter_empty' => 1, |
|
114 | - 'type' => 'separator', |
|
115 | - 'separator' => ', ', |
|
116 | - 'exclude' => 0, |
|
117 | - 'id' => 'rid', |
|
118 | - 'table' => 'users_roles', |
|
119 | - 'field' => 'rid', |
|
120 | - 'relationship' => 'none', |
|
109 | + ), |
|
110 | + 'empty' => '', |
|
111 | + 'hide_empty' => 0, |
|
112 | + 'empty_zero' => 0, |
|
113 | + 'hide_alter_empty' => 1, |
|
114 | + 'type' => 'separator', |
|
115 | + 'separator' => ', ', |
|
116 | + 'exclude' => 0, |
|
117 | + 'id' => 'rid', |
|
118 | + 'table' => 'users_roles', |
|
119 | + 'field' => 'rid', |
|
120 | + 'relationship' => 'none', |
|
121 | 121 | ), |
122 | 122 | 'status' => array( |
123 | - 'label' => 'Banned', |
|
124 | - 'alter' => array( |
|
123 | + 'label' => 'Banned', |
|
124 | + 'alter' => array( |
|
125 | 125 | 'alter_text' => 0, |
126 | 126 | 'text' => '', |
127 | 127 | 'make_link' => 0, |
@@ -140,22 +140,22 @@ discard block |
||
140 | 140 | 'ellipsis' => 1, |
141 | 141 | 'html' => 0, |
142 | 142 | 'strip_tags' => 0, |
143 | - ), |
|
144 | - 'empty' => '', |
|
145 | - 'hide_empty' => 0, |
|
146 | - 'empty_zero' => 0, |
|
147 | - 'hide_alter_empty' => 1, |
|
148 | - 'type' => 'yes-no', |
|
149 | - 'not' => 1, |
|
150 | - 'exclude' => 0, |
|
151 | - 'id' => 'status', |
|
152 | - 'table' => 'users', |
|
153 | - 'field' => 'status', |
|
154 | - 'relationship' => 'none', |
|
143 | + ), |
|
144 | + 'empty' => '', |
|
145 | + 'hide_empty' => 0, |
|
146 | + 'empty_zero' => 0, |
|
147 | + 'hide_alter_empty' => 1, |
|
148 | + 'type' => 'yes-no', |
|
149 | + 'not' => 1, |
|
150 | + 'exclude' => 0, |
|
151 | + 'id' => 'status', |
|
152 | + 'table' => 'users', |
|
153 | + 'field' => 'status', |
|
154 | + 'relationship' => 'none', |
|
155 | 155 | ), |
156 | 156 | 'access' => array( |
157 | - 'label' => 'Last access', |
|
158 | - 'alter' => array( |
|
157 | + 'label' => 'Last access', |
|
158 | + 'alter' => array( |
|
159 | 159 | 'alter_text' => 0, |
160 | 160 | 'text' => '', |
161 | 161 | 'make_link' => 0, |
@@ -174,22 +174,22 @@ discard block |
||
174 | 174 | 'ellipsis' => 1, |
175 | 175 | 'html' => 0, |
176 | 176 | 'strip_tags' => 0, |
177 | - ), |
|
178 | - 'empty' => '', |
|
179 | - 'hide_empty' => 0, |
|
180 | - 'empty_zero' => 0, |
|
181 | - 'hide_alter_empty' => 1, |
|
182 | - 'date_format' => 'time ago', |
|
183 | - 'custom_date_format' => '', |
|
184 | - 'exclude' => 0, |
|
185 | - 'id' => 'access', |
|
186 | - 'table' => 'users', |
|
187 | - 'field' => 'access', |
|
188 | - 'relationship' => 'none', |
|
177 | + ), |
|
178 | + 'empty' => '', |
|
179 | + 'hide_empty' => 0, |
|
180 | + 'empty_zero' => 0, |
|
181 | + 'hide_alter_empty' => 1, |
|
182 | + 'date_format' => 'time ago', |
|
183 | + 'custom_date_format' => '', |
|
184 | + 'exclude' => 0, |
|
185 | + 'id' => 'access', |
|
186 | + 'table' => 'users', |
|
187 | + 'field' => 'access', |
|
188 | + 'relationship' => 'none', |
|
189 | 189 | ), |
190 | 190 | 'login' => array( |
191 | - 'label' => 'Last login', |
|
192 | - 'alter' => array( |
|
191 | + 'label' => 'Last login', |
|
192 | + 'alter' => array( |
|
193 | 193 | 'alter_text' => 0, |
194 | 194 | 'text' => '', |
195 | 195 | 'make_link' => 0, |
@@ -208,22 +208,22 @@ discard block |
||
208 | 208 | 'ellipsis' => 1, |
209 | 209 | 'html' => 0, |
210 | 210 | 'strip_tags' => 0, |
211 | - ), |
|
212 | - 'empty' => '', |
|
213 | - 'hide_empty' => 0, |
|
214 | - 'empty_zero' => 0, |
|
215 | - 'hide_alter_empty' => 1, |
|
216 | - 'date_format' => 'time ago', |
|
217 | - 'custom_date_format' => '', |
|
218 | - 'exclude' => 0, |
|
219 | - 'id' => 'login', |
|
220 | - 'table' => 'users', |
|
221 | - 'field' => 'login', |
|
222 | - 'relationship' => 'none', |
|
211 | + ), |
|
212 | + 'empty' => '', |
|
213 | + 'hide_empty' => 0, |
|
214 | + 'empty_zero' => 0, |
|
215 | + 'hide_alter_empty' => 1, |
|
216 | + 'date_format' => 'time ago', |
|
217 | + 'custom_date_format' => '', |
|
218 | + 'exclude' => 0, |
|
219 | + 'id' => 'login', |
|
220 | + 'table' => 'users', |
|
221 | + 'field' => 'login', |
|
222 | + 'relationship' => 'none', |
|
223 | 223 | ), |
224 | 224 | 'created' => array( |
225 | - 'label' => 'Created date', |
|
226 | - 'alter' => array( |
|
225 | + 'label' => 'Created date', |
|
226 | + 'alter' => array( |
|
227 | 227 | 'alter_text' => 0, |
228 | 228 | 'text' => '', |
229 | 229 | 'make_link' => 0, |
@@ -242,22 +242,22 @@ discard block |
||
242 | 242 | 'ellipsis' => 1, |
243 | 243 | 'html' => 0, |
244 | 244 | 'strip_tags' => 0, |
245 | - ), |
|
246 | - 'empty' => '', |
|
247 | - 'hide_empty' => 0, |
|
248 | - 'empty_zero' => 0, |
|
249 | - 'hide_alter_empty' => 1, |
|
250 | - 'date_format' => 'time ago', |
|
251 | - 'custom_date_format' => '', |
|
252 | - 'exclude' => 0, |
|
253 | - 'id' => 'created', |
|
254 | - 'table' => 'users', |
|
255 | - 'field' => 'created', |
|
256 | - 'relationship' => 'none', |
|
245 | + ), |
|
246 | + 'empty' => '', |
|
247 | + 'hide_empty' => 0, |
|
248 | + 'empty_zero' => 0, |
|
249 | + 'hide_alter_empty' => 1, |
|
250 | + 'date_format' => 'time ago', |
|
251 | + 'custom_date_format' => '', |
|
252 | + 'exclude' => 0, |
|
253 | + 'id' => 'created', |
|
254 | + 'table' => 'users', |
|
255 | + 'field' => 'created', |
|
256 | + 'relationship' => 'none', |
|
257 | 257 | ), |
258 | 258 | 'edit_node' => array( |
259 | - 'label' => '', |
|
260 | - 'alter' => array( |
|
259 | + 'label' => '', |
|
260 | + 'alter' => array( |
|
261 | 261 | 'alter_text' => 0, |
262 | 262 | 'text' => '', |
263 | 263 | 'make_link' => 0, |
@@ -276,134 +276,134 @@ discard block |
||
276 | 276 | 'ellipsis' => 1, |
277 | 277 | 'html' => 0, |
278 | 278 | 'strip_tags' => 0, |
279 | - ), |
|
280 | - 'empty' => '', |
|
281 | - 'hide_empty' => 0, |
|
282 | - 'empty_zero' => 0, |
|
283 | - 'hide_alter_empty' => 1, |
|
284 | - 'text' => '', |
|
285 | - 'exclude' => 0, |
|
286 | - 'id' => 'edit_node', |
|
287 | - 'table' => 'users', |
|
288 | - 'field' => 'edit_node', |
|
289 | - 'relationship' => 'none', |
|
279 | + ), |
|
280 | + 'empty' => '', |
|
281 | + 'hide_empty' => 0, |
|
282 | + 'empty_zero' => 0, |
|
283 | + 'hide_alter_empty' => 1, |
|
284 | + 'text' => '', |
|
285 | + 'exclude' => 0, |
|
286 | + 'id' => 'edit_node', |
|
287 | + 'table' => 'users', |
|
288 | + 'field' => 'edit_node', |
|
289 | + 'relationship' => 'none', |
|
290 | 290 | ), |
291 | - )); |
|
292 | - $handler->override_option('filters', array( |
|
291 | + )); |
|
292 | + $handler->override_option('filters', array( |
|
293 | 293 | 'name' => array( |
294 | - 'operator' => 'contains', |
|
295 | - 'value' => '', |
|
296 | - 'group' => '0', |
|
297 | - 'exposed' => TRUE, |
|
298 | - 'expose' => array( |
|
294 | + 'operator' => 'contains', |
|
295 | + 'value' => '', |
|
296 | + 'group' => '0', |
|
297 | + 'exposed' => TRUE, |
|
298 | + 'expose' => array( |
|
299 | 299 | 'use_operator' => 0, |
300 | 300 | 'operator' => 'name_op', |
301 | 301 | 'identifier' => 'name', |
302 | 302 | 'label' => 'Part of a User\'s name', |
303 | 303 | 'remember' => 0, |
304 | - ), |
|
305 | - 'case' => 0, |
|
306 | - 'id' => 'name', |
|
307 | - 'table' => 'users', |
|
308 | - 'field' => 'name', |
|
309 | - 'relationship' => 'none', |
|
304 | + ), |
|
305 | + 'case' => 0, |
|
306 | + 'id' => 'name', |
|
307 | + 'table' => 'users', |
|
308 | + 'field' => 'name', |
|
309 | + 'relationship' => 'none', |
|
310 | 310 | ), |
311 | 311 | 'mail' => array( |
312 | - 'operator' => 'contains', |
|
313 | - 'value' => '', |
|
314 | - 'group' => '0', |
|
315 | - 'exposed' => TRUE, |
|
316 | - 'expose' => array( |
|
312 | + 'operator' => 'contains', |
|
313 | + 'value' => '', |
|
314 | + 'group' => '0', |
|
315 | + 'exposed' => TRUE, |
|
316 | + 'expose' => array( |
|
317 | 317 | 'use_operator' => 0, |
318 | 318 | 'operator' => 'mail_op', |
319 | 319 | 'identifier' => 'mail', |
320 | 320 | 'label' => 'Part of a User\'s E-mail', |
321 | 321 | 'remember' => 0, |
322 | - ), |
|
323 | - 'case' => 0, |
|
324 | - 'id' => 'mail', |
|
325 | - 'table' => 'users', |
|
326 | - 'field' => 'mail', |
|
327 | - 'relationship' => 'none', |
|
322 | + ), |
|
323 | + 'case' => 0, |
|
324 | + 'id' => 'mail', |
|
325 | + 'table' => 'users', |
|
326 | + 'field' => 'mail', |
|
327 | + 'relationship' => 'none', |
|
328 | 328 | ), |
329 | - )); |
|
330 | - $handler->override_option('access', array( |
|
329 | + )); |
|
330 | + $handler->override_option('access', array( |
|
331 | 331 | 'type' => 'perm', |
332 | 332 | 'perm' => 'administer users', |
333 | - )); |
|
334 | - $handler->override_option('cache', array( |
|
333 | + )); |
|
334 | + $handler->override_option('cache', array( |
|
335 | 335 | 'type' => 'none', |
336 | - )); |
|
337 | - $handler->override_option('use_pager', '1'); |
|
338 | - $handler->override_option('style_plugin', 'table'); |
|
339 | - $handler->override_option('style_options', array( |
|
336 | + )); |
|
337 | + $handler->override_option('use_pager', '1'); |
|
338 | + $handler->override_option('style_plugin', 'table'); |
|
339 | + $handler->override_option('style_options', array( |
|
340 | 340 | 'grouping' => '', |
341 | 341 | 'override' => 1, |
342 | 342 | 'sticky' => 0, |
343 | 343 | 'order' => 'desc', |
344 | 344 | 'summary' => '', |
345 | 345 | 'columns' => array( |
346 | - 'uid' => 'uid', |
|
347 | - 'name' => 'name', |
|
348 | - 'status' => 'status', |
|
349 | - 'rid' => 'rid', |
|
350 | - 'login' => 'login', |
|
351 | - 'access' => 'access', |
|
352 | - 'created' => 'created', |
|
353 | - 'edit_node' => 'edit_node', |
|
346 | + 'uid' => 'uid', |
|
347 | + 'name' => 'name', |
|
348 | + 'status' => 'status', |
|
349 | + 'rid' => 'rid', |
|
350 | + 'login' => 'login', |
|
351 | + 'access' => 'access', |
|
352 | + 'created' => 'created', |
|
353 | + 'edit_node' => 'edit_node', |
|
354 | 354 | ), |
355 | 355 | 'info' => array( |
356 | - 'uid' => array( |
|
356 | + 'uid' => array( |
|
357 | 357 | 'sortable' => 1, |
358 | 358 | 'separator' => '', |
359 | - ), |
|
360 | - 'name' => array( |
|
359 | + ), |
|
360 | + 'name' => array( |
|
361 | 361 | 'sortable' => 1, |
362 | 362 | 'separator' => '', |
363 | - ), |
|
364 | - 'status' => array( |
|
363 | + ), |
|
364 | + 'status' => array( |
|
365 | 365 | 'sortable' => 1, |
366 | 366 | 'separator' => '', |
367 | - ), |
|
368 | - 'rid' => array( |
|
367 | + ), |
|
368 | + 'rid' => array( |
|
369 | 369 | 'separator' => '', |
370 | - ), |
|
371 | - 'login' => array( |
|
370 | + ), |
|
371 | + 'login' => array( |
|
372 | 372 | 'sortable' => 1, |
373 | 373 | 'separator' => '', |
374 | - ), |
|
375 | - 'access' => array( |
|
374 | + ), |
|
375 | + 'access' => array( |
|
376 | 376 | 'sortable' => 1, |
377 | 377 | 'separator' => '', |
378 | - ), |
|
379 | - 'created' => array( |
|
378 | + ), |
|
379 | + 'created' => array( |
|
380 | 380 | 'sortable' => 1, |
381 | 381 | 'separator' => '', |
382 | - ), |
|
383 | - 'edit_node' => array( |
|
382 | + ), |
|
383 | + 'edit_node' => array( |
|
384 | 384 | 'separator' => '', |
385 | - ), |
|
385 | + ), |
|
386 | 386 | ), |
387 | 387 | 'default' => 'access', |
388 | - )); |
|
389 | - $handler = $view->new_display('page', 'Page', 'page_1'); |
|
390 | - $handler->override_option('path', 'admin/user/search'); |
|
391 | - $handler->override_option('menu', array( |
|
388 | + )); |
|
389 | + $handler = $view->new_display('page', 'Page', 'page_1'); |
|
390 | + $handler->override_option('path', 'admin/user/search'); |
|
391 | + $handler->override_option('menu', array( |
|
392 | 392 | 'type' => 'normal', |
393 | 393 | 'title' => 'User search', |
394 | 394 | 'description' => 'Find users by partial name or email address', |
395 | 395 | 'weight' => '0', |
396 | 396 | 'name' => 'navigation', |
397 | - )); |
|
398 | - $handler->override_option('tab_options', array( |
|
397 | + )); |
|
398 | + $handler->override_option('tab_options', array( |
|
399 | 399 | 'type' => 'none', |
400 | 400 | 'title' => '', |
401 | 401 | 'description' => '', |
402 | 402 | 'weight' => 0, |
403 | 403 | 'name' => 'navigation', |
404 | - )); |
|
404 | + )); |
|
405 | 405 | |
406 | - $views[$view->name] = $view; |
|
406 | + $views[$view->name] = $view; |
|
407 | 407 | |
408 | - return $views; |
|
408 | + return $views; |
|
409 | 409 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | $view->base_table = 'users'; |
15 | 15 | $view->core = 6; |
16 | 16 | $view->api_version = '2'; |
17 | - $view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */ |
|
17 | + $view->disabled = false; /* Edit this to true to make a default view disabled initially */ |
|
18 | 18 | $handler = $view->new_display('default', 'Defaults', 'default'); |
19 | 19 | $handler->override_option('fields', array( |
20 | 20 | 'uid' => array( |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | 'operator' => 'contains', |
295 | 295 | 'value' => '', |
296 | 296 | 'group' => '0', |
297 | - 'exposed' => TRUE, |
|
297 | + 'exposed' => true, |
|
298 | 298 | 'expose' => array( |
299 | 299 | 'use_operator' => 0, |
300 | 300 | 'operator' => 'name_op', |
@@ -312,7 +312,7 @@ discard block |
||
312 | 312 | 'operator' => 'contains', |
313 | 313 | 'value' => '', |
314 | 314 | 'group' => '0', |
315 | - 'exposed' => TRUE, |
|
315 | + 'exposed' => true, |
|
316 | 316 | 'expose' => array( |
317 | 317 | 'use_operator' => 0, |
318 | 318 | 'operator' => 'mail_op', |