Completed
Pull Request — master (#1795)
by Christian
09:16
created
drupal/sites/all/features/stats_charts/stats_charts.panels_default.inc 2 patches
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -4,31 +4,31 @@  discard block
 block discarded – undo
4 4
  * Implementation of hook_default_panels_mini().
5 5
  */
6 6
 function stats_charts_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 = 'project_stats_overview';
13
-  $mini->category = 'BOINC';
14
-  $mini->admin_title = 'Project stats overview';
15
-  $mini->admin_description = 'General statistical information for the project';
16
-  $mini->requiredcontexts = array();
17
-  $mini->contexts = array();
18
-  $mini->relationships = array();
19
-  $display = new panels_display;
20
-  $display->layout = 'onecol';
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 = 'project_stats_overview';
13
+    $mini->category = 'BOINC';
14
+    $mini->admin_title = 'Project stats overview';
15
+    $mini->admin_description = 'General statistical information for the project';
16
+    $mini->requiredcontexts = array();
17
+    $mini->contexts = array();
18
+    $mini->relationships = array();
19
+    $display = new panels_display;
20
+    $display->layout = 'onecol';
21
+    $display->layout_settings = array();
22
+    $display->panel_settings = array(
23 23
     'style_settings' => array(
24
-      'default' => NULL,
25
-      'middle' => NULL,
24
+        'default' => NULL,
25
+        'middle' => NULL,
26 26
     ),
27
-  );
28
-  $display->cache = array();
29
-  $display->title = '';
30
-  $display->content = array();
31
-  $display->panels = array();
27
+    );
28
+    $display->cache = array();
29
+    $display->title = '';
30
+    $display->content = array();
31
+    $display->panels = array();
32 32
     $pane = new stdClass;
33 33
     $pane->pid = 'new-1';
34 34
     $pane->panel = 'middle';
@@ -37,25 +37,25 @@  discard block
 block discarded – undo
37 37
     $pane->shown = TRUE;
38 38
     $pane->access = array();
39 39
     $pane->configuration = array(
40
-      'admin_title' => 'Project stats overview',
41
-      'title' => 'Einstein@Home Progress',
42
-      'body' => '<?php echo boincstats_get_project_stats_overview(); ?>',
43
-      'format' => '3',
44
-      'substitute' => TRUE,
40
+        'admin_title' => 'Project stats overview',
41
+        'title' => 'Einstein@Home Progress',
42
+        'body' => '<?php echo boincstats_get_project_stats_overview(); ?>',
43
+        'format' => '3',
44
+        'substitute' => TRUE,
45 45
     );
46 46
     $pane->cache = array();
47 47
     $pane->style = array(
48
-      'settings' => NULL,
48
+        'settings' => NULL,
49 49
     );
50 50
     $pane->css = array();
51 51
     $pane->extras = array();
52 52
     $pane->position = 0;
53 53
     $display->content['new-1'] = $pane;
54 54
     $display->panels['middle'][0] = 'new-1';
55
-  $display->hide_title = PANELS_TITLE_FIXED;
56
-  $display->title_pane = 'new-1';
57
-  $mini->display = $display;
58
-  $export['project_stats_overview'] = $mini;
55
+    $display->hide_title = PANELS_TITLE_FIXED;
56
+    $display->title_pane = 'new-1';
57
+    $mini->display = $display;
58
+    $export['project_stats_overview'] = $mini;
59 59
 
60
-  return $export;
60
+    return $export;
61 61
 }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
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 = 'project_stats_overview';
13 13
   $mini->category = 'BOINC';
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
   $display->layout_settings = array();
22 22
   $display->panel_settings = array(
23 23
     'style_settings' => array(
24
-      'default' => NULL,
25
-      'middle' => NULL,
24
+      'default' => null,
25
+      'middle' => null,
26 26
     ),
27 27
   );
28 28
   $display->cache = array();
@@ -34,18 +34,18 @@  discard block
 block discarded – undo
34 34
     $pane->panel = 'middle';
35 35
     $pane->type = 'custom';
36 36
     $pane->subtype = 'custom';
37
-    $pane->shown = TRUE;
37
+    $pane->shown = true;
38 38
     $pane->access = array();
39 39
     $pane->configuration = array(
40 40
       'admin_title' => 'Project stats overview',
41 41
       'title' => 'Einstein@Home Progress',
42 42
       'body' => '<?php echo boincstats_get_project_stats_overview(); ?>',
43 43
       'format' => '3',
44
-      'substitute' => TRUE,
44
+      'substitute' => true,
45 45
     );
46 46
     $pane->cache = array();
47 47
     $pane->style = array(
48
-      'settings' => NULL,
48
+      'settings' => null,
49 49
     );
50 50
     $pane->css = array();
51 51
     $pane->extras = array();
Please login to merge, or discard this patch.
drupal/sites/all/features/stats_charts/stats_charts.views_default.inc 2 patches
Indentation   +460 added lines, -460 removed lines patch added patch discarded remove patch
@@ -4,22 +4,22 @@  discard block
 block discarded – undo
4 4
  * Implementation of hook_views_default_views().
5 5
  */
6 6
 function stats_charts_views_default_views() {
7
-  $views = array();
7
+    $views = array();
8 8
 
9
-  // Exported view: boinc_account_stats
10
-  $view = new view;
11
-  $view->name = 'boinc_account_stats';
12
-  $view->description = 'BOINC user stats information';
13
-  $view->tag = '';
14
-  $view->base_table = 'user';
15
-  $view->core = 0;
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: boinc_account_stats
10
+    $view = new view;
11
+    $view->name = 'boinc_account_stats';
12
+    $view->description = 'BOINC user stats information';
13
+    $view->tag = '';
14
+    $view->base_table = 'user';
15
+    $view->core = 0;
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
     'id' => array(
21
-      'label' => 'User ID',
22
-      'alter' => array(
21
+        'label' => 'User ID',
22
+        'alter' => array(
23 23
         'alter_text' => 0,
24 24
         'text' => '',
25 25
         'make_link' => 0,
@@ -36,25 +36,25 @@  discard block
 block discarded – undo
36 36
         'ellipsis' => 1,
37 37
         'html' => 0,
38 38
         'strip_tags' => 0,
39
-      ),
40
-      'empty' => '',
41
-      'hide_empty' => 0,
42
-      'empty_zero' => 0,
43
-      'set_precision' => FALSE,
44
-      'precision' => 0,
45
-      'decimal' => '.',
46
-      'separator' => '',
47
-      'prefix' => '',
48
-      'suffix' => '',
49
-      'exclude' => 0,
50
-      'id' => 'id',
51
-      'table' => 'user',
52
-      'field' => 'id',
53
-      'relationship' => 'none',
39
+        ),
40
+        'empty' => '',
41
+        'hide_empty' => 0,
42
+        'empty_zero' => 0,
43
+        'set_precision' => FALSE,
44
+        'precision' => 0,
45
+        'decimal' => '.',
46
+        'separator' => '',
47
+        'prefix' => '',
48
+        'suffix' => '',
49
+        'exclude' => 0,
50
+        'id' => 'id',
51
+        'table' => 'user',
52
+        'field' => 'id',
53
+        'relationship' => 'none',
54 54
     ),
55 55
     'total_credit' => array(
56
-      'label' => 'Total credit',
57
-      'alter' => array(
56
+        'label' => 'Total credit',
57
+        'alter' => array(
58 58
         'alter_text' => 0,
59 59
         'text' => '',
60 60
         'make_link' => 0,
@@ -71,25 +71,25 @@  discard block
 block discarded – undo
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
-      'set_precision' => 1,
79
-      'precision' => '0',
80
-      'decimal' => '.',
81
-      'separator' => ',',
82
-      'prefix' => '',
83
-      'suffix' => '',
84
-      'exclude' => 0,
85
-      'id' => 'total_credit',
86
-      'table' => 'user',
87
-      'field' => 'total_credit',
88
-      'relationship' => 'none',
74
+        ),
75
+        'empty' => '',
76
+        'hide_empty' => 0,
77
+        'empty_zero' => 0,
78
+        'set_precision' => 1,
79
+        'precision' => '0',
80
+        'decimal' => '.',
81
+        'separator' => ',',
82
+        'prefix' => '',
83
+        'suffix' => '',
84
+        'exclude' => 0,
85
+        'id' => 'total_credit',
86
+        'table' => 'user',
87
+        'field' => 'total_credit',
88
+        'relationship' => 'none',
89 89
     ),
90 90
     'expavg_credit' => array(
91
-      'label' => 'Recent average credit',
92
-      'alter' => array(
91
+        'label' => 'Recent average credit',
92
+        'alter' => array(
93 93
         'alter_text' => 0,
94 94
         'text' => '',
95 95
         'make_link' => 0,
@@ -106,25 +106,25 @@  discard block
 block discarded – undo
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
-      'set_precision' => 1,
114
-      'precision' => '2',
115
-      'decimal' => '.',
116
-      'separator' => ',',
117
-      'prefix' => '',
118
-      'suffix' => '',
119
-      'exclude' => 0,
120
-      'id' => 'expavg_credit',
121
-      'table' => 'user',
122
-      'field' => 'expavg_credit',
123
-      'relationship' => 'none',
109
+        ),
110
+        'empty' => '',
111
+        'hide_empty' => 0,
112
+        'empty_zero' => 0,
113
+        'set_precision' => 1,
114
+        'precision' => '2',
115
+        'decimal' => '.',
116
+        'separator' => ',',
117
+        'prefix' => '',
118
+        'suffix' => '',
119
+        'exclude' => 0,
120
+        'id' => 'expavg_credit',
121
+        'table' => 'user',
122
+        'field' => 'expavg_credit',
123
+        'relationship' => 'none',
124 124
     ),
125 125
     'nothing_4' => array(
126
-      'label' => 'Pending credit',
127
-      'alter' => array(
126
+        'label' => 'Pending credit',
127
+        'alter' => array(
128 128
         'text' => 'View',
129 129
         'make_link' => 1,
130 130
         'path' => 'account/credit/pending',
@@ -142,20 +142,20 @@  discard block
 block discarded – undo
142 142
         'ellipsis' => 1,
143 143
         'html' => 0,
144 144
         'strip_tags' => 0,
145
-      ),
146
-      'empty' => '',
147
-      'hide_empty' => 0,
148
-      'empty_zero' => 0,
149
-      'hide_alter_empty' => 1,
150
-      'exclude' => 1,
151
-      'id' => 'nothing_4',
152
-      'table' => 'views',
153
-      'field' => 'nothing',
154
-      'relationship' => 'none',
145
+        ),
146
+        'empty' => '',
147
+        'hide_empty' => 0,
148
+        'empty_zero' => 0,
149
+        'hide_alter_empty' => 1,
150
+        'exclude' => 1,
151
+        'id' => 'nothing_4',
152
+        'table' => 'views',
153
+        'field' => 'nothing',
154
+        'relationship' => 'none',
155 155
     ),
156 156
     'nothing_5' => array(
157
-      'label' => 'Computers on this account',
158
-      'alter' => array(
157
+        'label' => 'Computers on this account',
158
+        'alter' => array(
159 159
         'text' => 'View',
160 160
         'make_link' => 1,
161 161
         'path' => 'account/computers',
@@ -171,19 +171,19 @@  discard block
 block discarded – undo
171 171
         'ellipsis' => 1,
172 172
         'html' => 0,
173 173
         'strip_tags' => 0,
174
-      ),
175
-      'empty' => '',
176
-      'hide_empty' => 0,
177
-      'empty_zero' => 0,
178
-      'exclude' => 0,
179
-      'id' => 'nothing_5',
180
-      'table' => 'views',
181
-      'field' => 'nothing',
182
-      'relationship' => 'none',
174
+        ),
175
+        'empty' => '',
176
+        'hide_empty' => 0,
177
+        'empty_zero' => 0,
178
+        'exclude' => 0,
179
+        'id' => 'nothing_5',
180
+        'table' => 'views',
181
+        'field' => 'nothing',
182
+        'relationship' => 'none',
183 183
     ),
184 184
     'nothing_6' => array(
185
-      'label' => 'Tasks',
186
-      'alter' => array(
185
+        'label' => 'Tasks',
186
+        'alter' => array(
187 187
         'text' => 'View',
188 188
         'make_link' => 1,
189 189
         'path' => 'account/tasks',
@@ -199,19 +199,19 @@  discard block
 block discarded – undo
199 199
         'ellipsis' => 1,
200 200
         'html' => 0,
201 201
         'strip_tags' => 0,
202
-      ),
203
-      'empty' => '',
204
-      'hide_empty' => 0,
205
-      'empty_zero' => 0,
206
-      'exclude' => 0,
207
-      'id' => 'nothing_6',
208
-      'table' => 'views',
209
-      'field' => 'nothing',
210
-      'relationship' => 'none',
202
+        ),
203
+        'empty' => '',
204
+        'hide_empty' => 0,
205
+        'empty_zero' => 0,
206
+        'exclude' => 0,
207
+        'id' => 'nothing_6',
208
+        'table' => 'views',
209
+        'field' => 'nothing',
210
+        'relationship' => 'none',
211 211
     ),
212 212
     'cross_project_id' => array(
213
-      'label' => 'Cross-project statistics',
214
-      'alter' => array(
213
+        'label' => 'Cross-project statistics',
214
+        'alter' => array(
215 215
         'alter_text' => 0,
216 216
         'text' => '',
217 217
         'make_link' => 0,
@@ -228,22 +228,22 @@  discard block
 block discarded – undo
228 228
         'ellipsis' => 1,
229 229
         'html' => 0,
230 230
         'strip_tags' => 0,
231
-      ),
232
-      'empty' => '',
233
-      'hide_empty' => 0,
234
-      'empty_zero' => 0,
235
-      'exclude' => 1,
236
-      'id' => 'cross_project_id',
237
-      'table' => 'user',
238
-      'field' => 'cross_project_id',
239
-      'relationship' => 'none',
240
-      'override' => array(
231
+        ),
232
+        'empty' => '',
233
+        'hide_empty' => 0,
234
+        'empty_zero' => 0,
235
+        'exclude' => 1,
236
+        'id' => 'cross_project_id',
237
+        'table' => 'user',
238
+        'field' => 'cross_project_id',
239
+        'relationship' => 'none',
240
+        'override' => array(
241 241
         'button' => 'Override',
242
-      ),
242
+        ),
243 243
     ),
244 244
     'nothing_8' => array(
245
-      'label' => 'Certificate',
246
-      'alter' => array(
245
+        'label' => 'Certificate',
246
+        'alter' => array(
247 247
         'text' => '<a href="account/certs">Account</a> | <a href="account/certs/all">Cross-project</a>',
248 248
         'make_link' => 0,
249 249
         'path' => '',
@@ -259,129 +259,129 @@  discard block
 block discarded – undo
259 259
         'ellipsis' => 1,
260 260
         'html' => 0,
261 261
         'strip_tags' => 0,
262
-      ),
263
-      'empty' => '',
264
-      'hide_empty' => 0,
265
-      'empty_zero' => 0,
266
-      'exclude' => 0,
267
-      'id' => 'nothing_8',
268
-      'table' => 'views',
269
-      'field' => 'nothing',
270
-      'relationship' => 'none',
262
+        ),
263
+        'empty' => '',
264
+        'hide_empty' => 0,
265
+        'empty_zero' => 0,
266
+        'exclude' => 0,
267
+        'id' => 'nothing_8',
268
+        'table' => 'views',
269
+        'field' => 'nothing',
270
+        'relationship' => 'none',
271 271
     ),
272
-  ));
273
-  $handler->override_option('arguments', array(
272
+    ));
273
+    $handler->override_option('arguments', array(
274 274
     'id' => array(
275
-      'default_action' => 'default',
276
-      'style_plugin' => 'default_summary',
277
-      'style_options' => array(),
278
-      'wildcard' => 'all',
279
-      'wildcard_substitution' => 'All',
280
-      'title' => '',
281
-      'breadcrumb' => '',
282
-      'default_argument_type' => 'current_user',
283
-      'default_argument' => '',
284
-      'validate_type' => 'numeric',
285
-      'validate_fail' => 'not found',
286
-      'break_phrase' => 0,
287
-      'not' => 0,
288
-      'id' => 'id',
289
-      'table' => 'user',
290
-      'field' => 'id',
291
-      'validate_user_argument_type' => 'uid',
292
-      'validate_user_roles' => array(
275
+        'default_action' => 'default',
276
+        'style_plugin' => 'default_summary',
277
+        'style_options' => array(),
278
+        'wildcard' => 'all',
279
+        'wildcard_substitution' => 'All',
280
+        'title' => '',
281
+        'breadcrumb' => '',
282
+        'default_argument_type' => 'current_user',
283
+        'default_argument' => '',
284
+        'validate_type' => 'numeric',
285
+        'validate_fail' => 'not found',
286
+        'break_phrase' => 0,
287
+        'not' => 0,
288
+        'id' => 'id',
289
+        'table' => 'user',
290
+        'field' => 'id',
291
+        'validate_user_argument_type' => 'uid',
292
+        'validate_user_roles' => array(
293 293
         2 => 0,
294 294
         4 => 0,
295 295
         7 => 0,
296 296
         5 => 0,
297 297
         3 => 0,
298 298
         6 => 0,
299
-      ),
300
-      'relationship' => 'none',
301
-      'default_options_div_prefix' => '',
302
-      'default_argument_fixed' => '',
303
-      'default_argument_user' => 0,
304
-      'default_argument_php' => '',
305
-      'validate_argument_node_type' => array(
299
+        ),
300
+        'relationship' => 'none',
301
+        'default_options_div_prefix' => '',
302
+        'default_argument_fixed' => '',
303
+        'default_argument_user' => 0,
304
+        'default_argument_php' => '',
305
+        'validate_argument_node_type' => array(
306 306
         'page' => 0,
307 307
         'news' => 0,
308 308
         'profile' => 0,
309 309
         'forum' => 0,
310 310
         'panel' => 0,
311 311
         'story' => 0,
312
-      ),
313
-      'validate_argument_node_access' => 0,
314
-      'validate_argument_nid_type' => 'nid',
315
-      'validate_argument_vocabulary' => array(
312
+        ),
313
+        'validate_argument_node_access' => 0,
314
+        'validate_argument_nid_type' => 'nid',
315
+        'validate_argument_vocabulary' => array(
316 316
         1 => 0,
317 317
         2 => 0,
318
-      ),
319
-      'validate_argument_type' => 'tid',
320
-      'validate_argument_transform' => 0,
321
-      'validate_user_restrict_roles' => 0,
322
-      'validate_argument_php' => '',
323
-      'override' => array(
318
+        ),
319
+        'validate_argument_type' => 'tid',
320
+        'validate_argument_transform' => 0,
321
+        'validate_user_restrict_roles' => 0,
322
+        'validate_argument_php' => '',
323
+        'override' => array(
324 324
         'button' => 'Override',
325
-      ),
326
-      'me_redirect' => 0,
327
-      'me_validate_user_argument_type' => 'uid',
328
-      'me_validate_user_roles' => array(
325
+        ),
326
+        'me_redirect' => 0,
327
+        'me_validate_user_argument_type' => 'uid',
328
+        'me_validate_user_roles' => array(
329 329
         2 => 0,
330 330
         4 => 0,
331 331
         7 => 0,
332 332
         5 => 0,
333 333
         3 => 0,
334 334
         6 => 0,
335
-      ),
336
-      'default_taxonomy_tid_term_page' => 0,
337
-      'default_taxonomy_tid_node' => 0,
338
-      'default_taxonomy_tid_limit' => 0,
339
-      'default_taxonomy_tid_vids' => array(
335
+        ),
336
+        'default_taxonomy_tid_term_page' => 0,
337
+        'default_taxonomy_tid_node' => 0,
338
+        'default_taxonomy_tid_limit' => 0,
339
+        'default_taxonomy_tid_vids' => array(
340 340
         1 => 0,
341 341
         2 => 0,
342
-      ),
343
-      'validate_argument_node_flag_name' => '*relationship*',
344
-      'validate_argument_node_flag_test' => 'flaggable',
345
-      'validate_argument_node_flag_id_type' => 'id',
346
-      'validate_argument_user_flag_name' => '*relationship*',
347
-      'validate_argument_user_flag_test' => 'flaggable',
348
-      'validate_argument_user_flag_id_type' => 'id',
349
-      'me_validate_user_restrict_roles' => 0,
342
+        ),
343
+        'validate_argument_node_flag_name' => '*relationship*',
344
+        'validate_argument_node_flag_test' => 'flaggable',
345
+        'validate_argument_node_flag_id_type' => 'id',
346
+        'validate_argument_user_flag_name' => '*relationship*',
347
+        'validate_argument_user_flag_test' => 'flaggable',
348
+        'validate_argument_user_flag_id_type' => 'id',
349
+        'me_validate_user_restrict_roles' => 0,
350 350
     ),
351
-  ));
352
-  $handler->override_option('access', array(
351
+    ));
352
+    $handler->override_option('access', array(
353 353
     'type' => 'none',
354
-  ));
355
-  $handler->override_option('cache', array(
354
+    ));
355
+    $handler->override_option('cache', array(
356 356
     'type' => 'none',
357
-  ));
358
-  $handler->override_option('css_class', 'stats');
359
-  $handler->override_option('header_format', '1');
360
-  $handler->override_option('header_empty', 0);
361
-  $handler->override_option('style_options', array(
357
+    ));
358
+    $handler->override_option('css_class', 'stats');
359
+    $handler->override_option('header_format', '1');
360
+    $handler->override_option('header_empty', 0);
361
+    $handler->override_option('style_options', array(
362 362
     'grouping' => '',
363
-  ));
364
-  $handler = $view->new_display('page', 'Page', 'page_1');
365
-  $handler->override_option('path', 'account/obsolete');
366
-  $handler->override_option('menu', array(
363
+    ));
364
+    $handler = $view->new_display('page', 'Page', 'page_1');
365
+    $handler->override_option('path', 'account/obsolete');
366
+    $handler->override_option('menu', array(
367 367
     'type' => 'tab',
368 368
     'title' => 'Obsolete',
369 369
     'description' => '',
370 370
     'weight' => '0',
371 371
     'name' => 'navigation',
372
-  ));
373
-  $handler->override_option('tab_options', array(
372
+    ));
373
+    $handler->override_option('tab_options', array(
374 374
     'type' => 'none',
375 375
     'title' => '',
376 376
     'description' => '',
377 377
     'weight' => 0,
378 378
     'name' => 'navigation',
379
-  ));
380
-  $handler = $view->new_display('panel_pane', 'Credit status', 'panel_pane_1');
381
-  $handler->override_option('fields', array(
379
+    ));
380
+    $handler = $view->new_display('panel_pane', 'Credit status', 'panel_pane_1');
381
+    $handler->override_option('fields', array(
382 382
     'id' => array(
383
-      'label' => 'User ID',
384
-      'alter' => array(
383
+        'label' => 'User ID',
384
+        'alter' => array(
385 385
         'alter_text' => 0,
386 386
         'text' => '',
387 387
         'make_link' => 0,
@@ -398,28 +398,28 @@  discard block
 block discarded – undo
398 398
         'ellipsis' => 1,
399 399
         'html' => 0,
400 400
         'strip_tags' => 0,
401
-      ),
402
-      'empty' => '',
403
-      'hide_empty' => 0,
404
-      'empty_zero' => 0,
405
-      'set_precision' => FALSE,
406
-      'precision' => 0,
407
-      'decimal' => '.',
408
-      'separator' => '',
409
-      'prefix' => '',
410
-      'suffix' => '',
411
-      'exclude' => 1,
412
-      'id' => 'id',
413
-      'table' => 'user',
414
-      'field' => 'id',
415
-      'relationship' => 'none',
416
-      'override' => array(
401
+        ),
402
+        'empty' => '',
403
+        'hide_empty' => 0,
404
+        'empty_zero' => 0,
405
+        'set_precision' => FALSE,
406
+        'precision' => 0,
407
+        'decimal' => '.',
408
+        'separator' => '',
409
+        'prefix' => '',
410
+        'suffix' => '',
411
+        'exclude' => 1,
412
+        'id' => 'id',
413
+        'table' => 'user',
414
+        'field' => 'id',
415
+        'relationship' => 'none',
416
+        'override' => array(
417 417
         'button' => 'Use default',
418
-      ),
418
+        ),
419 419
     ),
420 420
     'total_credit' => array(
421
-      'label' => 'Total credit',
422
-      'alter' => array(
421
+        'label' => 'Total credit',
422
+        'alter' => array(
423 423
         'alter_text' => 0,
424 424
         'text' => '',
425 425
         'make_link' => 0,
@@ -436,25 +436,25 @@  discard block
 block discarded – undo
436 436
         'ellipsis' => 1,
437 437
         'html' => 0,
438 438
         'strip_tags' => 0,
439
-      ),
440
-      'empty' => '',
441
-      'hide_empty' => 0,
442
-      'empty_zero' => 0,
443
-      'set_precision' => 1,
444
-      'precision' => '0',
445
-      'decimal' => '.',
446
-      'separator' => ',',
447
-      'prefix' => '',
448
-      'suffix' => '',
449
-      'exclude' => 0,
450
-      'id' => 'total_credit',
451
-      'table' => 'user',
452
-      'field' => 'total_credit',
453
-      'relationship' => 'none',
439
+        ),
440
+        'empty' => '',
441
+        'hide_empty' => 0,
442
+        'empty_zero' => 0,
443
+        'set_precision' => 1,
444
+        'precision' => '0',
445
+        'decimal' => '.',
446
+        'separator' => ',',
447
+        'prefix' => '',
448
+        'suffix' => '',
449
+        'exclude' => 0,
450
+        'id' => 'total_credit',
451
+        'table' => 'user',
452
+        'field' => 'total_credit',
453
+        'relationship' => 'none',
454 454
     ),
455 455
     'expavg_credit' => array(
456
-      'label' => 'Recent avg',
457
-      'alter' => array(
456
+        'label' => 'Recent avg',
457
+        'alter' => array(
458 458
         'alter_text' => 0,
459 459
         'text' => '',
460 460
         'make_link' => 0,
@@ -471,28 +471,28 @@  discard block
 block discarded – undo
471 471
         'ellipsis' => 1,
472 472
         'html' => 0,
473 473
         'strip_tags' => 0,
474
-      ),
475
-      'empty' => '',
476
-      'hide_empty' => 0,
477
-      'empty_zero' => 0,
478
-      'set_precision' => 1,
479
-      'precision' => '2',
480
-      'decimal' => '.',
481
-      'separator' => ',',
482
-      'prefix' => '',
483
-      'suffix' => '',
484
-      'exclude' => 0,
485
-      'id' => 'expavg_credit',
486
-      'table' => 'user',
487
-      'field' => 'expavg_credit',
488
-      'relationship' => 'none',
489
-      'override' => array(
474
+        ),
475
+        'empty' => '',
476
+        'hide_empty' => 0,
477
+        'empty_zero' => 0,
478
+        'set_precision' => 1,
479
+        'precision' => '2',
480
+        'decimal' => '.',
481
+        'separator' => ',',
482
+        'prefix' => '',
483
+        'suffix' => '',
484
+        'exclude' => 0,
485
+        'id' => 'expavg_credit',
486
+        'table' => 'user',
487
+        'field' => 'expavg_credit',
488
+        'relationship' => 'none',
489
+        'override' => array(
490 490
         'button' => 'Use default',
491
-      ),
491
+        ),
492 492
     ),
493 493
     'nothing_4' => array(
494
-      'label' => '',
495
-      'alter' => array(
494
+        'label' => '',
495
+        'alter' => array(
496 496
         'text' => 'Pending',
497 497
         'make_link' => 1,
498 498
         'path' => 'account/tasks/pending',
@@ -510,23 +510,23 @@  discard block
 block discarded – undo
510 510
         'ellipsis' => 1,
511 511
         'html' => 0,
512 512
         'strip_tags' => 0,
513
-      ),
514
-      'empty' => '',
515
-      'hide_empty' => 0,
516
-      'empty_zero' => 0,
517
-      'hide_alter_empty' => 1,
518
-      'exclude' => 1,
519
-      'id' => 'nothing_4',
520
-      'table' => 'views',
521
-      'field' => 'nothing',
522
-      'relationship' => 'none',
523
-      'override' => array(
513
+        ),
514
+        'empty' => '',
515
+        'hide_empty' => 0,
516
+        'empty_zero' => 0,
517
+        'hide_alter_empty' => 1,
518
+        'exclude' => 1,
519
+        'id' => 'nothing_4',
520
+        'table' => 'views',
521
+        'field' => 'nothing',
522
+        'relationship' => 'none',
523
+        'override' => array(
524 524
         'button' => 'Use default',
525
-      ),
525
+        ),
526 526
     ),
527 527
     'nothing' => array(
528
-      'label' => '',
529
-      'alter' => array(
528
+        'label' => '',
529
+        'alter' => array(
530 530
         'text' => 'Certificates',
531 531
         'make_link' => 1,
532 532
         'path' => 'account/certs',
@@ -544,23 +544,23 @@  discard block
 block discarded – undo
544 544
         'ellipsis' => 1,
545 545
         'html' => 0,
546 546
         'strip_tags' => 0,
547
-      ),
548
-      'empty' => '',
549
-      'hide_empty' => 0,
550
-      'empty_zero' => 0,
551
-      'hide_alter_empty' => 1,
552
-      'exclude' => 0,
553
-      'id' => 'nothing',
554
-      'table' => 'views',
555
-      'field' => 'nothing',
556
-      'override' => array(
547
+        ),
548
+        'empty' => '',
549
+        'hide_empty' => 0,
550
+        'empty_zero' => 0,
551
+        'hide_alter_empty' => 1,
552
+        'exclude' => 0,
553
+        'id' => 'nothing',
554
+        'table' => 'views',
555
+        'field' => 'nothing',
556
+        'override' => array(
557 557
         'button' => 'Use default',
558
-      ),
559
-      'relationship' => 'none',
558
+        ),
559
+        'relationship' => 'none',
560 560
     ),
561 561
     'nothing_1' => array(
562
-      'label' => '',
563
-      'alter' => array(
562
+        'label' => '',
563
+        'alter' => array(
564 564
         'text' => 'Cross-project',
565 565
         'make_link' => 1,
566 566
         'path' => 'account/certs/all',
@@ -576,22 +576,22 @@  discard block
 block discarded – undo
576 576
         'ellipsis' => 1,
577 577
         'html' => 0,
578 578
         'strip_tags' => 0,
579
-      ),
580
-      'empty' => '',
581
-      'hide_empty' => 0,
582
-      'empty_zero' => 0,
583
-      'exclude' => 1,
584
-      'id' => 'nothing_1',
585
-      'table' => 'views',
586
-      'field' => 'nothing',
587
-      'override' => array(
579
+        ),
580
+        'empty' => '',
581
+        'hide_empty' => 0,
582
+        'empty_zero' => 0,
583
+        'exclude' => 1,
584
+        'id' => 'nothing_1',
585
+        'table' => 'views',
586
+        'field' => 'nothing',
587
+        'override' => array(
588 588
         'button' => 'Use default',
589
-      ),
590
-      'relationship' => 'none',
589
+        ),
590
+        'relationship' => 'none',
591 591
     ),
592 592
     'cross_project_id' => array(
593
-      'label' => '',
594
-      'alter' => array(
593
+        'label' => '',
594
+        'alter' => array(
595 595
         'alter_text' => 0,
596 596
         'text' => '<div class="chart"><img src="charts/user/[cross_project_id]" /></div>',
597 597
         'make_link' => 0,
@@ -608,22 +608,22 @@  discard block
 block discarded – undo
608 608
         'ellipsis' => 1,
609 609
         'html' => 0,
610 610
         'strip_tags' => 0,
611
-      ),
612
-      'empty' => '',
613
-      'hide_empty' => 0,
614
-      'empty_zero' => 0,
615
-      'exclude' => 1,
616
-      'id' => 'cross_project_id',
617
-      'table' => 'user',
618
-      'field' => 'cross_project_id',
619
-      'relationship' => 'none',
620
-      'override' => array(
611
+        ),
612
+        'empty' => '',
613
+        'hide_empty' => 0,
614
+        'empty_zero' => 0,
615
+        'exclude' => 1,
616
+        'id' => 'cross_project_id',
617
+        'table' => 'user',
618
+        'field' => 'cross_project_id',
619
+        'relationship' => 'none',
620
+        'override' => array(
621 621
         'button' => 'Use default',
622
-      ),
622
+        ),
623 623
     ),
624 624
     'phpcode' => array(
625
-      'label' => '',
626
-      'alter' => array(
625
+        'label' => '',
626
+        'alter' => array(
627 627
         'alter_text' => 0,
628 628
         'text' => '',
629 629
         'make_link' => 0,
@@ -642,32 +642,32 @@  discard block
 block discarded – undo
642 642
         'ellipsis' => 1,
643 643
         'html' => 0,
644 644
         'strip_tags' => 0,
645
-      ),
646
-      'empty' => '',
647
-      'hide_empty' => 0,
648
-      'empty_zero' => 0,
649
-      'hide_alter_empty' => 1,
650
-      'value' => '<?php global $base_path; ?>
645
+        ),
646
+        'empty' => '',
647
+        'hide_empty' => 0,
648
+        'empty_zero' => 0,
649
+        'hide_alter_empty' => 1,
650
+        'value' => '<?php global $base_path; ?>
651 651
 <?php $account = user_load(get_drupal_id($data->id)); ?>
652 652
 <div class="chart"><img src="<?php echo "{$base_path}charts/user/{$account->boincuser_cpid}"; ?>" /></div>',
653
-      'exclude' => 0,
654
-      'id' => 'phpcode',
655
-      'table' => 'customfield',
656
-      'field' => 'phpcode',
657
-      'override' => array(
653
+        'exclude' => 0,
654
+        'id' => 'phpcode',
655
+        'table' => 'customfield',
656
+        'field' => 'phpcode',
657
+        'override' => array(
658 658
         'button' => 'Use default',
659
-      ),
660
-      'relationship' => 'none',
659
+        ),
660
+        'relationship' => 'none',
661 661
     ),
662
-  ));
663
-  $handler->override_option('style_options', array());
664
-  $handler->override_option('pane_title', 'BOINC account stats detail');
665
-  $handler->override_option('pane_description', '');
666
-  $handler->override_option('pane_category', array(
662
+    ));
663
+    $handler->override_option('style_options', array());
664
+    $handler->override_option('pane_title', 'BOINC account stats detail');
665
+    $handler->override_option('pane_description', '');
666
+    $handler->override_option('pane_category', array(
667 667
     'name' => 'View panes',
668 668
     'weight' => 0,
669
-  ));
670
-  $handler->override_option('allow', array(
669
+    ));
670
+    $handler->override_option('allow', array(
671 671
     'use_pager' => FALSE,
672 672
     'items_per_page' => FALSE,
673 673
     'offset' => FALSE,
@@ -677,15 +677,15 @@  discard block
 block discarded – undo
677 677
     'title_override' => FALSE,
678 678
     'exposed_form' => FALSE,
679 679
     'fields_override' => FALSE,
680
-  ));
681
-  $handler->override_option('argument_input', array());
682
-  $handler->override_option('link_to_view', 0);
683
-  $handler->override_option('inherit_panels_path', 0);
684
-  $handler = $view->new_display('panel_pane', 'User overview', 'panel_pane_2');
685
-  $handler->override_option('fields', array(
680
+    ));
681
+    $handler->override_option('argument_input', array());
682
+    $handler->override_option('link_to_view', 0);
683
+    $handler->override_option('inherit_panels_path', 0);
684
+    $handler = $view->new_display('panel_pane', 'User overview', 'panel_pane_2');
685
+    $handler->override_option('fields', array(
686 686
     'id' => array(
687
-      'label' => 'User ID',
688
-      'alter' => array(
687
+        'label' => 'User ID',
688
+        'alter' => array(
689 689
         'alter_text' => 0,
690 690
         'text' => '',
691 691
         'make_link' => 0,
@@ -704,32 +704,32 @@  discard block
 block discarded – undo
704 704
         'ellipsis' => 1,
705 705
         'html' => 0,
706 706
         'strip_tags' => 0,
707
-      ),
708
-      'empty' => '',
709
-      'hide_empty' => 0,
710
-      'empty_zero' => 0,
711
-      'hide_alter_empty' => 1,
712
-      'set_precision' => FALSE,
713
-      'precision' => 0,
714
-      'decimal' => '.',
715
-      'separator' => '',
716
-      'format_plural' => 0,
717
-      'format_plural_singular' => '1',
718
-      'format_plural_plural' => '@count',
719
-      'prefix' => '',
720
-      'suffix' => '',
721
-      'exclude' => 1,
722
-      'id' => 'id',
723
-      'table' => 'user',
724
-      'field' => 'id',
725
-      'relationship' => 'none',
726
-      'override' => array(
707
+        ),
708
+        'empty' => '',
709
+        'hide_empty' => 0,
710
+        'empty_zero' => 0,
711
+        'hide_alter_empty' => 1,
712
+        'set_precision' => FALSE,
713
+        'precision' => 0,
714
+        'decimal' => '.',
715
+        'separator' => '',
716
+        'format_plural' => 0,
717
+        'format_plural_singular' => '1',
718
+        'format_plural_plural' => '@count',
719
+        'prefix' => '',
720
+        'suffix' => '',
721
+        'exclude' => 1,
722
+        'id' => 'id',
723
+        'table' => 'user',
724
+        'field' => 'id',
725
+        'relationship' => 'none',
726
+        'override' => array(
727 727
         'button' => 'Use default',
728
-      ),
728
+        ),
729 729
     ),
730 730
     'total_credit' => array(
731
-      'label' => 'Total credit',
732
-      'alter' => array(
731
+        'label' => 'Total credit',
732
+        'alter' => array(
733 733
         'alter_text' => 0,
734 734
         'text' => '',
735 735
         'make_link' => 0,
@@ -746,25 +746,25 @@  discard block
 block discarded – undo
746 746
         'ellipsis' => 1,
747 747
         'html' => 0,
748 748
         'strip_tags' => 0,
749
-      ),
750
-      'empty' => '',
751
-      'hide_empty' => 0,
752
-      'empty_zero' => 0,
753
-      'set_precision' => 1,
754
-      'precision' => '0',
755
-      'decimal' => '.',
756
-      'separator' => ',',
757
-      'prefix' => '',
758
-      'suffix' => '',
759
-      'exclude' => 0,
760
-      'id' => 'total_credit',
761
-      'table' => 'user',
762
-      'field' => 'total_credit',
763
-      'relationship' => 'none',
749
+        ),
750
+        'empty' => '',
751
+        'hide_empty' => 0,
752
+        'empty_zero' => 0,
753
+        'set_precision' => 1,
754
+        'precision' => '0',
755
+        'decimal' => '.',
756
+        'separator' => ',',
757
+        'prefix' => '',
758
+        'suffix' => '',
759
+        'exclude' => 0,
760
+        'id' => 'total_credit',
761
+        'table' => 'user',
762
+        'field' => 'total_credit',
763
+        'relationship' => 'none',
764 764
     ),
765 765
     'expavg_credit' => array(
766
-      'label' => 'Avg credit',
767
-      'alter' => array(
766
+        'label' => 'Avg credit',
767
+        'alter' => array(
768 768
         'alter_text' => 0,
769 769
         'text' => '',
770 770
         'make_link' => 0,
@@ -783,32 +783,32 @@  discard block
 block discarded – undo
783 783
         'ellipsis' => 1,
784 784
         'html' => 0,
785 785
         'strip_tags' => 0,
786
-      ),
787
-      'empty' => '',
788
-      'hide_empty' => 0,
789
-      'empty_zero' => 0,
790
-      'hide_alter_empty' => 1,
791
-      'set_precision' => 1,
792
-      'precision' => '2',
793
-      'decimal' => '.',
794
-      'separator' => ',',
795
-      'format_plural' => 0,
796
-      'format_plural_singular' => '1',
797
-      'format_plural_plural' => '@count',
798
-      'prefix' => '',
799
-      'suffix' => '',
800
-      'exclude' => 0,
801
-      'id' => 'expavg_credit',
802
-      'table' => 'user',
803
-      'field' => 'expavg_credit',
804
-      'relationship' => 'none',
805
-      'override' => array(
786
+        ),
787
+        'empty' => '',
788
+        'hide_empty' => 0,
789
+        'empty_zero' => 0,
790
+        'hide_alter_empty' => 1,
791
+        'set_precision' => 1,
792
+        'precision' => '2',
793
+        'decimal' => '.',
794
+        'separator' => ',',
795
+        'format_plural' => 0,
796
+        'format_plural_singular' => '1',
797
+        'format_plural_plural' => '@count',
798
+        'prefix' => '',
799
+        'suffix' => '',
800
+        'exclude' => 0,
801
+        'id' => 'expavg_credit',
802
+        'table' => 'user',
803
+        'field' => 'expavg_credit',
804
+        'relationship' => 'none',
805
+        'override' => array(
806 806
         'button' => 'Use default',
807
-      ),
807
+        ),
808 808
     ),
809 809
     'phpcode_1' => array(
810
-      'label' => '',
811
-      'alter' => array(
810
+        'label' => '',
811
+        'alter' => array(
812 812
         'alter_text' => 0,
813 813
         'text' => '',
814 814
         'make_link' => 0,
@@ -827,28 +827,28 @@  discard block
 block discarded – undo
827 827
         'ellipsis' => 1,
828 828
         'html' => 0,
829 829
         'strip_tags' => 0,
830
-      ),
831
-      'empty' => '',
832
-      'hide_empty' => 0,
833
-      'empty_zero' => 0,
834
-      'hide_alter_empty' => 1,
835
-      'value' => '<?php
830
+        ),
831
+        'empty' => '',
832
+        'hide_empty' => 0,
833
+        'empty_zero' => 0,
834
+        'hide_alter_empty' => 1,
835
+        'value' => '<?php
836 836
 
837 837
 echo l(t(\'Show computers\'), \'account/\' . get_drupal_id($data->id) . \'/computers\');
838 838
 
839 839
 ?>',
840
-      'exclude' => 0,
841
-      'id' => 'phpcode_1',
842
-      'table' => 'customfield',
843
-      'field' => 'phpcode',
844
-      'override' => array(
840
+        'exclude' => 0,
841
+        'id' => 'phpcode_1',
842
+        'table' => 'customfield',
843
+        'field' => 'phpcode',
844
+        'override' => array(
845 845
         'button' => 'Use default',
846
-      ),
847
-      'relationship' => 'none',
846
+        ),
847
+        'relationship' => 'none',
848 848
     ),
849 849
     'cross_project_id' => array(
850
-      'label' => 'Cross-project statistics',
851
-      'alter' => array(
850
+        'label' => 'Cross-project statistics',
851
+        'alter' => array(
852 852
         'alter_text' => 0,
853 853
         'text' => '',
854 854
         'make_link' => 0,
@@ -865,22 +865,22 @@  discard block
 block discarded – undo
865 865
         'ellipsis' => 1,
866 866
         'html' => 0,
867 867
         'strip_tags' => 0,
868
-      ),
869
-      'empty' => '',
870
-      'hide_empty' => 0,
871
-      'empty_zero' => 0,
872
-      'exclude' => 1,
873
-      'id' => 'cross_project_id',
874
-      'table' => 'user',
875
-      'field' => 'cross_project_id',
876
-      'relationship' => 'none',
877
-      'override' => array(
868
+        ),
869
+        'empty' => '',
870
+        'hide_empty' => 0,
871
+        'empty_zero' => 0,
872
+        'exclude' => 1,
873
+        'id' => 'cross_project_id',
874
+        'table' => 'user',
875
+        'field' => 'cross_project_id',
876
+        'relationship' => 'none',
877
+        'override' => array(
878 878
         'button' => 'Override',
879
-      ),
879
+        ),
880 880
     ),
881 881
     'phpcode' => array(
882
-      'label' => '',
883
-      'alter' => array(
882
+        'label' => '',
883
+        'alter' => array(
884 884
         'alter_text' => 0,
885 885
         'text' => '',
886 886
         'make_link' => 0,
@@ -899,39 +899,39 @@  discard block
 block discarded – undo
899 899
         'ellipsis' => 1,
900 900
         'html' => 0,
901 901
         'strip_tags' => 0,
902
-      ),
903
-      'empty' => '',
904
-      'hide_empty' => 0,
905
-      'empty_zero' => 0,
906
-      'hide_alter_empty' => 1,
907
-      'value' => '<?php global $base_path; ?>
902
+        ),
903
+        'empty' => '',
904
+        'hide_empty' => 0,
905
+        'empty_zero' => 0,
906
+        'hide_alter_empty' => 1,
907
+        'value' => '<?php global $base_path; ?>
908 908
 <?php $account = user_load(get_drupal_id($data->id)); ?>
909 909
 <div class="chart"><img src="<?php echo "{$base_path}charts/user/{$account->boincuser_cpid}/small"; ?>" /></div>',
910
-      'exclude' => 0,
911
-      'id' => 'phpcode',
912
-      'table' => 'customfield',
913
-      'field' => 'phpcode',
914
-      'override' => array(
910
+        'exclude' => 0,
911
+        'id' => 'phpcode',
912
+        'table' => 'customfield',
913
+        'field' => 'phpcode',
914
+        'override' => array(
915 915
         'button' => 'Use default',
916
-      ),
917
-      'relationship' => 'none',
916
+        ),
917
+        'relationship' => 'none',
918 918
     ),
919
-  ));
920
-  $handler->override_option('title', 'Statistics');
921
-  $handler->override_option('empty', 'empty...');
922
-  $handler->override_option('empty_format', '5');
923
-  $handler->override_option('row_options', array(
919
+    ));
920
+    $handler->override_option('title', 'Statistics');
921
+    $handler->override_option('empty', 'empty...');
922
+    $handler->override_option('empty_format', '5');
923
+    $handler->override_option('row_options', array(
924 924
     'inline' => array(),
925 925
     'separator' => '',
926 926
     'hide_empty' => 0,
927
-  ));
928
-  $handler->override_option('pane_title', 'BOINC account stats overview');
929
-  $handler->override_option('pane_description', '');
930
-  $handler->override_option('pane_category', array(
927
+    ));
928
+    $handler->override_option('pane_title', 'BOINC account stats overview');
929
+    $handler->override_option('pane_description', '');
930
+    $handler->override_option('pane_category', array(
931 931
     'name' => 'View panes',
932 932
     'weight' => 0,
933
-  ));
934
-  $handler->override_option('allow', array(
933
+    ));
934
+    $handler->override_option('allow', array(
935 935
     'use_pager' => 0,
936 936
     'items_per_page' => 0,
937 937
     'offset' => 0,
@@ -941,21 +941,21 @@  discard block
 block discarded – undo
941 941
     'title_override' => 'title_override',
942 942
     'exposed_form' => 0,
943 943
     'fields_override' => 0,
944
-  ));
945
-  $handler->override_option('argument_input', array(
944
+    ));
945
+    $handler->override_option('argument_input', array(
946 946
     'id' => array(
947
-      'type' => 'panel',
948
-      'context' => 'node_edit_form.author-mail-raw',
949
-      'context_optional' => 0,
950
-      'panel' => '0',
951
-      'fixed' => '',
952
-      'label' => 'BOINC: Id',
947
+        'type' => 'panel',
948
+        'context' => 'node_edit_form.author-mail-raw',
949
+        'context_optional' => 0,
950
+        'panel' => '0',
951
+        'fixed' => '',
952
+        'label' => 'BOINC: Id',
953 953
     ),
954
-  ));
955
-  $handler->override_option('link_to_view', 0);
956
-  $handler->override_option('inherit_panels_path', 0);
954
+    ));
955
+    $handler->override_option('link_to_view', 0);
956
+    $handler->override_option('inherit_panels_path', 0);
957 957
 
958
-  $views[$view->name] = $view;
958
+    $views[$view->name] = $view;
959 959
 
960
-  return $views;
960
+    return $views;
961 961
 }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
   $view->base_table = 'user';
15 15
   $view->core = 0;
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
     'id' => array(
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
       'empty' => '',
41 41
       'hide_empty' => 0,
42 42
       'empty_zero' => 0,
43
-      'set_precision' => FALSE,
43
+      'set_precision' => false,
44 44
       'precision' => 0,
45 45
       'decimal' => '.',
46 46
       'separator' => '',
@@ -402,7 +402,7 @@  discard block
 block discarded – undo
402 402
       'empty' => '',
403 403
       'hide_empty' => 0,
404 404
       'empty_zero' => 0,
405
-      'set_precision' => FALSE,
405
+      'set_precision' => false,
406 406
       'precision' => 0,
407 407
       'decimal' => '.',
408 408
       'separator' => '',
@@ -668,15 +668,15 @@  discard block
 block discarded – undo
668 668
     'weight' => 0,
669 669
   ));
670 670
   $handler->override_option('allow', array(
671
-    'use_pager' => FALSE,
672
-    'items_per_page' => FALSE,
673
-    'offset' => FALSE,
674
-    'link_to_view' => FALSE,
675
-    'more_link' => FALSE,
676
-    'path_override' => FALSE,
677
-    'title_override' => FALSE,
678
-    'exposed_form' => FALSE,
679
-    'fields_override' => FALSE,
671
+    'use_pager' => false,
672
+    'items_per_page' => false,
673
+    'offset' => false,
674
+    'link_to_view' => false,
675
+    'more_link' => false,
676
+    'path_override' => false,
677
+    'title_override' => false,
678
+    'exposed_form' => false,
679
+    'fields_override' => false,
680 680
   ));
681 681
   $handler->override_option('argument_input', array());
682 682
   $handler->override_option('link_to_view', 0);
@@ -709,7 +709,7 @@  discard block
 block discarded – undo
709 709
       'hide_empty' => 0,
710 710
       'empty_zero' => 0,
711 711
       'hide_alter_empty' => 1,
712
-      'set_precision' => FALSE,
712
+      'set_precision' => false,
713 713
       'precision' => 0,
714 714
       'decimal' => '.',
715 715
       'separator' => '',
Please login to merge, or discard this patch.
drupal/sites/all/features/mobilemenu/mobilemenu.features.inc 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
  * Implementation of hook_ctools_plugin_api().
5 5
  */
6 6
 function mobilemenu_ctools_plugin_api() {
7
-  list($module, $api) = func_get_args();
8
-  if ($module == "strongarm" && $api == "strongarm") {
7
+    list($module, $api) = func_get_args();
8
+    if ($module == "strongarm" && $api == "strongarm") {
9 9
     return array("version" => 1);
10
-  }
10
+    }
11 11
 }
Please login to merge, or discard this patch.
sites/all/features/mobilemenu/mobilemenu.features.fe_block_settings.inc 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@  discard block
 block discarded – undo
4 4
  * Implementation of hook_default_fe_block_settings().
5 5
  */
6 6
 function mobilemenu_default_fe_block_settings() {
7
-  $export = array();
7
+    $export = array();
8 8
 
9
-  // boinc
10
-  $theme = array();
9
+    // boinc
10
+    $theme = array();
11 11
 
12
-  $theme['mobile_menu_toggle-0'] = array(
12
+    $theme['mobile_menu_toggle-0'] = array(
13 13
     'module' => 'mobile_menu_toggle',
14 14
     'delta' => '0',
15 15
     'theme' => 'boinc',
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
     'pages' => '',
23 23
     'title' => '<none>',
24 24
     'cache' => '1',
25
-  );
25
+    );
26 26
 
27
-  $export['boinc'] = $theme;
27
+    $export['boinc'] = $theme;
28 28
 
29
-  // einstein
30
-  $theme = array();
29
+    // einstein
30
+    $theme = array();
31 31
 
32
-  $theme['mobile_menu_toggle-0'] = array(
32
+    $theme['mobile_menu_toggle-0'] = array(
33 33
     'module' => 'mobile_menu_toggle',
34 34
     'delta' => '0',
35 35
     'theme' => 'einstein',
@@ -42,14 +42,14 @@  discard block
 block discarded – undo
42 42
     'pages' => '',
43 43
     'title' => '<none>',
44 44
     'cache' => '1',
45
-  );
45
+    );
46 46
 
47
-  $export['einstein'] = $theme;
47
+    $export['einstein'] = $theme;
48 48
 
49
-  // garland
50
-  $theme = array();
49
+    // garland
50
+    $theme = array();
51 51
 
52
-  $theme['mobile_menu_toggle-0'] = array(
52
+    $theme['mobile_menu_toggle-0'] = array(
53 53
     'module' => 'mobile_menu_toggle',
54 54
     'delta' => '0',
55 55
     'theme' => 'garland',
@@ -62,16 +62,16 @@  discard block
 block discarded – undo
62 62
     'pages' => '',
63 63
     'title' => '<none>',
64 64
     'cache' => '1',
65
-  );
65
+    );
66 66
 
67
-  $export['garland'] = $theme;
67
+    $export['garland'] = $theme;
68 68
 
69
-  $theme_default = variable_get('theme_default', 'garland');
70
-  $themes = list_themes();
71
-  foreach ($export as $theme_key => $settings) {
69
+    $theme_default = variable_get('theme_default', 'garland');
70
+    $themes = list_themes();
71
+    foreach ($export as $theme_key => $settings) {
72 72
     if ($theme_key != $theme_default && empty($themes[$theme_key]->status)) {
73
-      unset($export[$theme_key]);
73
+        unset($export[$theme_key]);
74 74
     }
75
-  }
76
-  return $export;
75
+    }
76
+    return $export;
77 77
 }
Please login to merge, or discard this patch.
drupal/sites/all/features/mobilemenu/mobilemenu.strongarm.inc 2 patches
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -4,79 +4,79 @@
 block discarded – undo
4 4
  * Implementation of hook_strongarm().
5 5
  */
6 6
 function mobilemenu_strongarm() {
7
-  $export = array();
7
+    $export = array();
8 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 = 'dhtml_menu_settings';
13
-  $strongarm->value = array(
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 = 'dhtml_menu_settings';
13
+    $strongarm->value = array(
14 14
     'nav' => 'none',
15 15
     'animation' => array(
16
-      'effects' => array(
16
+        'effects' => array(
17 17
         'height' => 'height',
18 18
         'opacity' => 'opacity',
19 19
         'width' => 0,
20
-      ),
21
-      'speed' => '500',
20
+        ),
21
+        'speed' => '500',
22 22
     ),
23 23
     'effects' => array(
24
-      'siblings' => 'close-same-tree',
25
-      'children' => 'none',
26
-      'remember' => '0',
24
+        'siblings' => 'close-same-tree',
25
+        'children' => 'none',
26
+        'remember' => '0',
27 27
     ),
28 28
     'filter' => array(
29
-      'type' => 'whitelist',
30
-      'list' => array(
29
+        'type' => 'whitelist',
30
+        'list' => array(
31 31
         'primary-links' => 'primary-links',
32 32
         'devel' => 0,
33 33
         'menu-footer-links' => 0,
34 34
         'navigation' => 0,
35
-      ),
35
+        ),
36 36
     ),
37
-  );
38
-  $export['dhtml_menu_settings'] = $strongarm;
37
+    );
38
+    $export['dhtml_menu_settings'] = $strongarm;
39 39
 
40
-  $strongarm = new stdClass;
41
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
42
-  $strongarm->api_version = 1;
43
-  $strongarm->name = 'dhtml_menu_theme';
44
-  $strongarm->value = array(
40
+    $strongarm = new stdClass;
41
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
42
+    $strongarm->api_version = 1;
43
+    $strongarm->name = 'dhtml_menu_theme';
44
+    $strongarm->value = array(
45 45
     'garland' => array(
46
-      'menu_item' => 'theme_menu_item',
47
-      'menu_item_link' => 'theme_menu_item_link',
46
+        'menu_item' => 'theme_menu_item',
47
+        'menu_item_link' => 'theme_menu_item_link',
48 48
     ),
49 49
     'einstein' => array(
50
-      'menu_item' => 'theme_menu_item',
51
-      'menu_item_link' => 'zen_menu_item_link',
50
+        'menu_item' => 'theme_menu_item',
51
+        'menu_item_link' => 'zen_menu_item_link',
52 52
     ),
53 53
     'boinc' => array(
54
-      'menu_item' => 'theme_menu_item',
55
-      'menu_item_link' => 'zen_menu_item_link',
54
+        'menu_item' => 'theme_menu_item',
55
+        'menu_item_link' => 'zen_menu_item_link',
56 56
     ),
57
-  );
58
-  $export['dhtml_menu_theme'] = $strongarm;
57
+    );
58
+    $export['dhtml_menu_theme'] = $strongarm;
59 59
 
60
-  $strongarm = new stdClass;
61
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
62
-  $strongarm->api_version = 1;
63
-  $strongarm->name = 'mobile_menu_block';
64
-  $strongarm->value = 0;
65
-  $export['mobile_menu_block'] = $strongarm;
60
+    $strongarm = new stdClass;
61
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
62
+    $strongarm->api_version = 1;
63
+    $strongarm->name = 'mobile_menu_block';
64
+    $strongarm->value = 0;
65
+    $export['mobile_menu_block'] = $strongarm;
66 66
 
67
-  $strongarm = new stdClass;
68
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
69
-  $strongarm->api_version = 1;
70
-  $strongarm->name = 'mobile_menu_css';
71
-  $strongarm->value = '#navigation-mmt';
72
-  $export['mobile_menu_css'] = $strongarm;
67
+    $strongarm = new stdClass;
68
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
69
+    $strongarm->api_version = 1;
70
+    $strongarm->name = 'mobile_menu_css';
71
+    $strongarm->value = '#navigation-mmt';
72
+    $export['mobile_menu_css'] = $strongarm;
73 73
 
74
-  $strongarm = new stdClass;
75
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
76
-  $strongarm->api_version = 1;
77
-  $strongarm->name = 'mobile_menu_menu';
78
-  $strongarm->value = 'primary-links';
79
-  $export['mobile_menu_menu'] = $strongarm;
74
+    $strongarm = new stdClass;
75
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
76
+    $strongarm->api_version = 1;
77
+    $strongarm->name = 'mobile_menu_menu';
78
+    $strongarm->value = 'primary-links';
79
+    $export['mobile_menu_menu'] = $strongarm;
80 80
 
81
-  return $export;
81
+    return $export;
82 82
 }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
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 = 'dhtml_menu_settings';
13 13
   $strongarm->value = array(
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
   $export['dhtml_menu_settings'] = $strongarm;
39 39
 
40 40
   $strongarm = new stdClass;
41
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
41
+  $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */
42 42
   $strongarm->api_version = 1;
43 43
   $strongarm->name = 'dhtml_menu_theme';
44 44
   $strongarm->value = array(
@@ -58,21 +58,21 @@  discard block
 block discarded – undo
58 58
   $export['dhtml_menu_theme'] = $strongarm;
59 59
 
60 60
   $strongarm = new stdClass;
61
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
61
+  $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */
62 62
   $strongarm->api_version = 1;
63 63
   $strongarm->name = 'mobile_menu_block';
64 64
   $strongarm->value = 0;
65 65
   $export['mobile_menu_block'] = $strongarm;
66 66
 
67 67
   $strongarm = new stdClass;
68
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
68
+  $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */
69 69
   $strongarm->api_version = 1;
70 70
   $strongarm->name = 'mobile_menu_css';
71 71
   $strongarm->value = '#navigation-mmt';
72 72
   $export['mobile_menu_css'] = $strongarm;
73 73
 
74 74
   $strongarm = new stdClass;
75
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
75
+  $strongarm->disabled = false; /* Edit this to true to make a default strongarm disabled initially */
76 76
   $strongarm->api_version = 1;
77 77
   $strongarm->name = 'mobile_menu_menu';
78 78
   $strongarm->value = 'primary-links';
Please login to merge, or discard this patch.
drupal/sites/all/features/news/news.features.menu_links.inc 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -4,19 +4,19 @@  discard block
 block discarded – undo
4 4
  * Implementation of hook_menu_default_menu_links().
5 5
  */
6 6
 function news_menu_default_menu_links() {
7
-  $menu_links = array();
7
+    $menu_links = array();
8 8
 
9
-  // Exported menu link: primary-links:news
10
-  $menu_links['primary-links:news'] = array(
9
+    // Exported menu link: primary-links:news
10
+    $menu_links['primary-links:news'] = array(
11 11
     'menu_name' => 'primary-links',
12 12
     'link_path' => 'news',
13 13
     'router_path' => 'news',
14 14
     'link_title' => 'News',
15 15
     'options' => array(
16
-      'attributes' => array(
16
+        'attributes' => array(
17 17
         'title' => '',
18
-      ),
19
-      'alter' => TRUE,
18
+        ),
19
+        'alter' => TRUE,
20 20
     ),
21 21
     'module' => 'menu',
22 22
     'hidden' => '0',
@@ -24,11 +24,11 @@  discard block
 block discarded – undo
24 24
     'has_children' => '0',
25 25
     'expanded' => '1',
26 26
     'weight' => '-48',
27
-  );
28
-  // Translatables
29
-  // Included for use with string extractors like potx.
30
-  t('News');
27
+    );
28
+    // Translatables
29
+    // Included for use with string extractors like potx.
30
+    t('News');
31 31
 
32 32
 
33
-  return $menu_links;
33
+    return $menu_links;
34 34
 }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
       'attributes' => array(
36 36
         'title' => '',
37 37
       ),
38
-      'alter' => TRUE,
38
+      'alter' => true,
39 39
     ),
40 40
     'module' => 'menu',
41 41
     'hidden' => '0',
Please login to merge, or discard this patch.
drupal/sites/all/features/news/news.features.fe_block_settings.inc 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@  discard block
 block discarded – undo
4 4
  * Implementation of hook_default_fe_block_settings().
5 5
  */
6 6
 function news_default_fe_block_settings() {
7
-  $export = array();
7
+    $export = array();
8 8
 
9
-  // boinc
10
-  $theme = array();
9
+    // boinc
10
+    $theme = array();
11 11
 
12
-  $theme['node_comment_block-node_comments'] = array(
12
+    $theme['node_comment_block-node_comments'] = array(
13 13
     'module' => 'node_comment_block',
14 14
     'delta' => 'node_comments',
15 15
     'theme' => 'boinc',
@@ -38,14 +38,14 @@  discard block
 block discarded – undo
38 38
 ?>',
39 39
     'title' => '',
40 40
     'cache' => '1',
41
-  );
41
+    );
42 42
 
43
-  $export['boinc'] = $theme;
43
+    $export['boinc'] = $theme;
44 44
 
45
-  // einstein
46
-  $theme = array();
45
+    // einstein
46
+    $theme = array();
47 47
 
48
-  $theme['node_comment_block-node_comments'] = array(
48
+    $theme['node_comment_block-node_comments'] = array(
49 49
     'module' => 'node_comment_block',
50 50
     'delta' => 'node_comments',
51 51
     'theme' => 'einstein',
@@ -74,14 +74,14 @@  discard block
 block discarded – undo
74 74
 ?>',
75 75
     'title' => '',
76 76
     'cache' => '1',
77
-  );
77
+    );
78 78
 
79
-  $export['einstein'] = $theme;
79
+    $export['einstein'] = $theme;
80 80
 
81
-  // garland
82
-  $theme = array();
81
+    // garland
82
+    $theme = array();
83 83
 
84
-  $theme['node_comment_block-node_comments'] = array(
84
+    $theme['node_comment_block-node_comments'] = array(
85 85
     'module' => 'node_comment_block',
86 86
     'delta' => 'node_comments',
87 87
     'theme' => 'garland',
@@ -110,16 +110,16 @@  discard block
 block discarded – undo
110 110
 ?>',
111 111
     'title' => '',
112 112
     'cache' => '1',
113
-  );
113
+    );
114 114
 
115
-  $export['garland'] = $theme;
115
+    $export['garland'] = $theme;
116 116
 
117
-  $theme_default = variable_get('theme_default', 'garland');
118
-  $themes = list_themes();
119
-  foreach ($export as $theme_key => $settings) {
117
+    $theme_default = variable_get('theme_default', 'garland');
118
+    $themes = list_themes();
119
+    foreach ($export as $theme_key => $settings) {
120 120
     if ($theme_key != $theme_default && empty($themes[$theme_key]->status)) {
121
-      unset($export[$theme_key]);
121
+        unset($export[$theme_key]);
122 122
     }
123
-  }
124
-  return $export;
123
+    }
124
+    return $export;
125 125
 }
Please login to merge, or discard this patch.
drupal/sites/all/features/news/news.features.inc 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -4,40 +4,40 @@
 block discarded – undo
4 4
  * Implementation of hook_ctools_plugin_api().
5 5
  */
6 6
 function news_ctools_plugin_api() {
7
-  list($module, $api) = func_get_args();
8
-  if ($module == "context" && $api == "context") {
7
+    list($module, $api) = func_get_args();
8
+    if ($module == "context" && $api == "context") {
9 9
     return array("version" => 3);
10
-  }
11
-  elseif ($module == "strongarm" && $api == "strongarm") {
10
+    }
11
+    elseif ($module == "strongarm" && $api == "strongarm") {
12 12
     return array("version" => 1);
13
-  }
13
+    }
14 14
 }
15 15
 
16 16
 /**
17 17
  * Implementation of hook_node_info().
18 18
  */
19 19
 function news_node_info() {
20
-  $items = array(
20
+    $items = array(
21 21
     'news' => array(
22
-      'name' => t('News item'),
23
-      'module' => 'features',
24
-      'description' => t('News items are bits of information and current events relevant to a BOINC project that are to be published to the website and RSS feeds.'),
25
-      'has_title' => '1',
26
-      'title_label' => t('Title'),
27
-      'has_body' => '1',
28
-      'body_label' => t('Body'),
29
-      'min_word_count' => '0',
30
-      'help' => '',
22
+        'name' => t('News item'),
23
+        'module' => 'features',
24
+        'description' => t('News items are bits of information and current events relevant to a BOINC project that are to be published to the website and RSS feeds.'),
25
+        'has_title' => '1',
26
+        'title_label' => t('Title'),
27
+        'has_body' => '1',
28
+        'body_label' => t('Body'),
29
+        'min_word_count' => '0',
30
+        'help' => '',
31 31
     ),
32
-  );
33
-  return $items;
32
+    );
33
+    return $items;
34 34
 }
35 35
 
36 36
 /**
37 37
  * Implementation of hook_views_api().
38 38
  */
39 39
 function news_views_api() {
40
-  return array(
40
+    return array(
41 41
     'api' => '2',
42
-  );
42
+    );
43 43
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,7 @@
 block discarded – undo
7 7
   list($module, $api) = func_get_args();
8 8
   if ($module == "context" && $api == "context") {
9 9
     return array("version" => 3);
10
-  }
11
-  elseif ($module == "strongarm" && $api == "strongarm") {
10
+  } elseif ($module == "strongarm" && $api == "strongarm") {
12 11
     return array("version" => 1);
13 12
   }
14 13
 }
Please login to merge, or discard this patch.
drupal/sites/all/features/news/news.features.user_permission.inc 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -4,25 +4,25 @@
 block discarded – undo
4 4
  * Implementation of hook_user_default_permissions().
5 5
  */
6 6
 function news_user_default_permissions() {
7
-  $permissions = array();
7
+    $permissions = array();
8 8
 
9
-  // Exported permission: create news content
10
-  $permissions['create news content'] = array(
9
+    // Exported permission: create news content
10
+    $permissions['create news content'] = array(
11 11
     'name' => 'create news content',
12 12
     'roles' => array(
13
-      '0' => 'administrator',
14
-      '1' => 'content editor',
13
+        '0' => 'administrator',
14
+        '1' => 'content editor',
15 15
     ),
16
-  );
16
+    );
17 17
 
18
-  // Exported permission: edit any news content
19
-  $permissions['edit any news content'] = array(
18
+    // Exported permission: edit any news content
19
+    $permissions['edit any news content'] = array(
20 20
     'name' => 'edit any news content',
21 21
     'roles' => array(
22
-      '0' => 'administrator',
23
-      '1' => 'content editor',
22
+        '0' => 'administrator',
23
+        '1' => 'content editor',
24 24
     ),
25
-  );
25
+    );
26 26
 
27
-  return $permissions;
27
+    return $permissions;
28 28
 }
Please login to merge, or discard this patch.