Completed
Pull Request — master (#2659)
by Christian
10:33
created
drupal/sites/all/features/boinc_standard/boinc_standard.input_formats.inc 1 patch
Switch Indentation   +200 added lines, -200 removed lines patch added patch discarded remove patch
@@ -4,212 +4,212 @@
 block discarded – undo
4 4
  * Implementation of hook_input_formats().
5 5
  */
6 6
 function boinc_standard_input_formats() {
7
-  $input_formats = array();
7
+$input_formats = array();
8 8
 
9
-  $input_format = new stdClass;
10
-  $input_format->api_version = 1;
11
-  $input_format->name = 'Rich text';
12
-  $input_format->roles = array(
13
-    1 => 'anonymous user',
14
-    2 => 'authenticated user',
15
-    3519698132 => 'administrator',
16
-    1110965548 => 'community member',
17
-    2938987599 => 'content editor',
18
-    268174006 => 'forum control (system use only)',
19
-    1271379760 => 'moderator',
20
-    933038561 => 'verified contributor',
21
-  );
22
-  $input_format->cache = FALSE;
23
-  $input_format->settings = array(
24
-    // Settings for: boinctranslate module
25
-    'boinctranslate' => array(
26
-      // Print debugging info
27
-      'boinctranslate_filter_debug' => '0',
9
+$input_format = new stdClass;
10
+$input_format->api_version = 1;
11
+$input_format->name = 'Rich text';
12
+$input_format->roles = array(
13
+1 => 'anonymous user',
14
+2 => 'authenticated user',
15
+3519698132 => 'administrator',
16
+1110965548 => 'community member',
17
+2938987599 => 'content editor',
18
+268174006 => 'forum control (system use only)',
19
+1271379760 => 'moderator',
20
+933038561 => 'verified contributor',
21
+);
22
+$input_format->cache = FALSE;
23
+$input_format->settings = array(
24
+// Settings for: boinctranslate module
25
+'boinctranslate' => array(
26
+  // Print debugging info
27
+  'boinctranslate_filter_debug' => '0',
28
+),
29
+// Settings for: tableofcontents module
30
+'tableofcontents' => array(
31
+  // Hide the table of contents tags
32
+  'tableofcontents_hide_table' => 0,
33
+  // Whether an automatic table of content should be added
34
+  'tableofcontents_automatic' => '0',
35
+  // Number of headers before an automatic table of content is added
36
+  'tableofcontents_min_limit' => '5',
37
+  // Remove Table of Contents tags from teasers
38
+  'tableofcontents_remove_teaser' => 1,
39
+  // Allow users to override the settings within the table of contents tag itself
40
+  'tableofcontents_allow_override' => 1,
41
+  // Ensure title is safe (i.e. use check_plain() to avoid XSS attacks.)
42
+  'tableofcontents_safe_title' => 1,
43
+  // Table of Contents Title
44
+  'tableofcontents_title' => 'Table of Contents',
45
+  // Minimum heading level
46
+  'tableofcontents_minlevel' => '2',
47
+  // Maximum heading level
48
+  'tableofcontents_maxlevel' => '3',
49
+  // Include link to hide/show table of contents
50
+  'tableofcontents_hide_show' => 1,
51
+  // Start with the table of content collapsed
52
+  'tableofcontents_collapsed' => 0,
53
+  // Select what is stripped from the header titles
54
+  'tableofcontents_id_stripping' => array(
55
+      'digits' => 0,
56
+      'dashes' => 0,
57
+      'periods' => 0,
58
+      'underscores' => 0,
59
+      'colons' => 0,
28 60
     ),
29
-    // Settings for: tableofcontents module
30
-    'tableofcontents' => array(
31
-      // Hide the table of contents tags
32
-      'tableofcontents_hide_table' => 0,
33
-      // Whether an automatic table of content should be added
34
-      'tableofcontents_automatic' => '0',
35
-      // Number of headers before an automatic table of content is added
36
-      'tableofcontents_min_limit' => '5',
37
-      // Remove Table of Contents tags from teasers
38
-      'tableofcontents_remove_teaser' => 1,
39
-      // Allow users to override the settings within the table of contents tag itself
40
-      'tableofcontents_allow_override' => 1,
41
-      // Ensure title is safe (i.e. use check_plain() to avoid XSS attacks.)
42
-      'tableofcontents_safe_title' => 1,
43
-      // Table of Contents Title
44
-      'tableofcontents_title' => 'Table of Contents',
45
-      // Minimum heading level
46
-      'tableofcontents_minlevel' => '2',
47
-      // Maximum heading level
48
-      'tableofcontents_maxlevel' => '3',
49
-      // Include link to hide/show table of contents
50
-      'tableofcontents_hide_show' => 1,
51
-      // Start with the table of content collapsed
52
-      'tableofcontents_collapsed' => 0,
53
-      // Select what is stripped from the header titles
54
-      'tableofcontents_id_stripping' => array(
55
-          'digits' => 0,
56
-          'dashes' => 0,
57
-          'periods' => 0,
58
-          'underscores' => 0,
59
-          'colons' => 0,
60
-        ),
61
-      // Identifier introducer
62
-      'tableofcontents_identifier_introducer' => 'header',
63
-      // Identifier and number separator
64
-      'tableofcontents_id_separator' => '-',
65
-      // How to generate missing header identifiers
66
-      'tableofcontents_id_generator' => 'title',
67
-      // List of tags allowed in table headers
68
-      'tableofcontents_allowed_tags' => '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>',
69
-      // Attachments
70
-      'tableofcontents_attachments' => 0,
71
-      // Add the comments to the table of contents
72
-      'tableofcontents_comments' => 0,
73
-      // Select header level at which comments start
74
-      'tableofcontents_comments_level' => '3',
75
-      // Back to top label
76
-      'tableofcontents_back_to_top' => '',
77
-      // Back to top location
78
-      'tableofcontents_back_to_top_location' => 'bottom',
79
-      // Minimum level where Back to Top appears
80
-      'tableofcontents_back_to_top_minlevel' => '2',
81
-      // Maximum level where Back to Top appears
82
-      'tableofcontents_back_to_top_maxlevel' => '4',
83
-      // Back to top anchor
84
-      'tableofcontents_back_to_top_anchor' => 'toc',
85
-      // Scroll back to the table of contents
86
-      'tableofcontents_scroll_back_to_top' => 0,
87
-      // Numbering method
88
-      'tableofcontents_numbering' => '0',
89
-      // Add the number to the headers
90
-      'tableofcontents_number_headers' => 0,
91
-      // Numbering mode
92
-      'tableofcontents_number_mode' => '0',
93
-      // Numbering prefix
94
-      'tableofcontents_number_start_letter' => '',
95
-      // Numbering separator
96
-      'tableofcontents_number_separator' => '.',
97
-      // Numbering suffix
98
-      'tableofcontents_number_end_letter' => '.',
61
+  // Identifier introducer
62
+  'tableofcontents_identifier_introducer' => 'header',
63
+  // Identifier and number separator
64
+  'tableofcontents_id_separator' => '-',
65
+  // How to generate missing header identifiers
66
+  'tableofcontents_id_generator' => 'title',
67
+  // List of tags allowed in table headers
68
+  'tableofcontents_allowed_tags' => '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>',
69
+  // Attachments
70
+  'tableofcontents_attachments' => 0,
71
+  // Add the comments to the table of contents
72
+  'tableofcontents_comments' => 0,
73
+  // Select header level at which comments start
74
+  'tableofcontents_comments_level' => '3',
75
+  // Back to top label
76
+  'tableofcontents_back_to_top' => '',
77
+  // Back to top location
78
+  'tableofcontents_back_to_top_location' => 'bottom',
79
+  // Minimum level where Back to Top appears
80
+  'tableofcontents_back_to_top_minlevel' => '2',
81
+  // Maximum level where Back to Top appears
82
+  'tableofcontents_back_to_top_maxlevel' => '4',
83
+  // Back to top anchor
84
+  'tableofcontents_back_to_top_anchor' => 'toc',
85
+  // Scroll back to the table of contents
86
+  'tableofcontents_scroll_back_to_top' => 0,
87
+  // Numbering method
88
+  'tableofcontents_numbering' => '0',
89
+  // Add the number to the headers
90
+  'tableofcontents_number_headers' => 0,
91
+  // Numbering mode
92
+  'tableofcontents_number_mode' => '0',
93
+  // Numbering prefix
94
+  'tableofcontents_number_start_letter' => '',
95
+  // Numbering separator
96
+  'tableofcontents_number_separator' => '.',
97
+  // Numbering suffix
98
+  'tableofcontents_number_end_letter' => '.',
99
+),
100
+// Settings for: pathologic module
101
+'pathologic' => array(
102
+  // Also considered local
103
+  'filter_pathologic_local_paths' => '/',
104
+  // Output full absolute URLs
105
+  'filter_pathologic_absolute' => 1,
106
+),
107
+// Settings for: bbcode module
108
+'bbcode' => array(
109
+  // Convert addresses to links
110
+  'bbcode_make_links' => '1',
111
+  // Spam link deterrent
112
+  'bbcode_filter_nofollow' => '0',
113
+  // Email address encoding
114
+  'bbcode_encode_mailto' => '1',
115
+  // Smart paragraph and line breaks
116
+  'bbcode_paragraph_breaks' => '2',
117
+  // Print debugging info
118
+  'bbcode_debug' => '0',
119
+),
120
+// Settings for: htmlpurifier module
121
+'htmlpurifier' => array(
122
+  'htmlpurifier_clear_cac' => array(
123
+      '#description' => NULL,
124
+      '#value' => 'Clear cache (Warning: Can result in performance degradation)',
99 125
     ),
100
-    // Settings for: pathologic module
101
-    'pathologic' => array(
102
-      // Also considered local
103
-      'filter_pathologic_local_paths' => '/',
104
-      // Output full absolute URLs
105
-      'filter_pathologic_absolute' => 1,
126
+  // Display help text
127
+  'htmlpurifier_help' => 1,
128
+  'htmlpurifier_config' => array(
129
+      '#description' => NULL,
130
+      '#value' => array(
131
+        'Attr.EnableID' => '0',
132
+        'AutoFormat.AutoParagraph' => '1',
133
+        'AutoFormat.Linkify' => '1',
134
+        'AutoFormat.RemoveEmpty' => '0',
135
+        'Null_HTML.Allowed' => '1',
136
+        'HTML.ForbiddenAttributes' => '',
137
+        'HTML.ForbiddenElements' => '',
138
+        'HTML.SafeObject' => '0',
139
+        'Output.FlashCompat' => '0',
140
+        'URI.DisableExternalResources' => '0',
141
+        'URI.DisableResources' => '0',
142
+        'Null_URI.Munge' => '1',
143
+      ),
106 144
     ),
107
-    // Settings for: bbcode module
108
-    'bbcode' => array(
109
-      // Convert addresses to links
110
-      'bbcode_make_links' => '1',
111
-      // Spam link deterrent
112
-      'bbcode_filter_nofollow' => '0',
113
-      // Email address encoding
114
-      'bbcode_encode_mailto' => '1',
115
-      // Smart paragraph and line breaks
116
-      'bbcode_paragraph_breaks' => '2',
117
-      // Print debugging info
118
-      'bbcode_debug' => '0',
119
-    ),
120
-    // Settings for: htmlpurifier module
121
-    'htmlpurifier' => array(
122
-      'htmlpurifier_clear_cac' => array(
123
-          '#description' => NULL,
124
-          '#value' => 'Clear cache (Warning: Can result in performance degradation)',
125
-        ),
126
-      // Display help text
127
-      'htmlpurifier_help' => 1,
128
-      'htmlpurifier_config' => array(
129
-          '#description' => NULL,
130
-          '#value' => array(
131
-            'Attr.EnableID' => '0',
132
-            'AutoFormat.AutoParagraph' => '1',
133
-            'AutoFormat.Linkify' => '1',
134
-            'AutoFormat.RemoveEmpty' => '0',
135
-            'Null_HTML.Allowed' => '1',
136
-            'HTML.ForbiddenAttributes' => '',
137
-            'HTML.ForbiddenElements' => '',
138
-            'HTML.SafeObject' => '0',
139
-            'Output.FlashCompat' => '0',
140
-            'URI.DisableExternalResources' => '0',
141
-            'URI.DisableResources' => '0',
142
-            'Null_URI.Munge' => '1',
143
-          ),
144
-        ),
145
-    ),
146
-  );
147
-  $input_format->filters = array(
148
-    'boinctranslate' => array(
149
-      // Delta => Weight for: BOINC translation filter to help split content into chunks for translations.
150
-      '0' => '1',
151
-    ),
152
-    'tableofcontents' => array(
153
-      // Delta => Weight for: Table of contents
154
-      '0' => '2',
155
-    ),
156
-    'pathologic' => array(
157
-      // Delta => Weight for: Pathologic
158
-      '0' => '3',
159
-    ),
160
-    'bbcode' => array(
161
-      // Delta => Weight for: BBCode
162
-      '0' => '4',
163
-    ),
164
-    'htmlpurifier' => array(
165
-      // Delta => Weight for: HTML Purifier
166
-      '0' => '5',
167
-    ),
168
-    'image_caption_filter' => array(
169
-      // Delta => Weight for: Image caption filter
170
-      '0' => '6',
171
-    ),
172
-  );
173
-  $input_format->machine = 'rich_text';
174
-  $input_formats['rich_text'] = $input_format;
145
+),
146
+);
147
+$input_format->filters = array(
148
+'boinctranslate' => array(
149
+  // Delta => Weight for: BOINC translation filter to help split content into chunks for translations.
150
+  '0' => '1',
151
+),
152
+'tableofcontents' => array(
153
+  // Delta => Weight for: Table of contents
154
+  '0' => '2',
155
+),
156
+'pathologic' => array(
157
+  // Delta => Weight for: Pathologic
158
+  '0' => '3',
159
+),
160
+'bbcode' => array(
161
+  // Delta => Weight for: BBCode
162
+  '0' => '4',
163
+),
164
+'htmlpurifier' => array(
165
+  // Delta => Weight for: HTML Purifier
166
+  '0' => '5',
167
+),
168
+'image_caption_filter' => array(
169
+  // Delta => Weight for: Image caption filter
170
+  '0' => '6',
171
+),
172
+);
173
+$input_format->machine = 'rich_text';
174
+$input_formats['rich_text'] = $input_format;
175 175
 
176
-  $input_format = new stdClass;
177
-  $input_format->api_version = 1;
178
-  $input_format->name = 'Plain text';
179
-  $input_format->roles = array(
180
-    3519698132 => 'administrator',
181
-  );
182
-  $input_format->cache = FALSE;
183
-  $input_format->settings = array(
184
-  );
185
-  $input_format->filters = array(
186
-    'boinctranslate' => array(
187
-      // Delta => Weight for: BOINC translation filter to help split content into chunks for translations.
188
-      '0' => '10',
189
-    ),
190
-    'filter' => array(
191
-      // Delta => Weight for: HTML filter
192
-      '0' => '10',
193
-    ),
194
-  );
195
-  $input_format->machine = 'plain_text';
196
-  $input_formats['plain_text'] = $input_format;
176
+$input_format = new stdClass;
177
+$input_format->api_version = 1;
178
+$input_format->name = 'Plain text';
179
+$input_format->roles = array(
180
+3519698132 => 'administrator',
181
+);
182
+$input_format->cache = FALSE;
183
+$input_format->settings = array(
184
+);
185
+$input_format->filters = array(
186
+'boinctranslate' => array(
187
+  // Delta => Weight for: BOINC translation filter to help split content into chunks for translations.
188
+  '0' => '10',
189
+),
190
+'filter' => array(
191
+  // Delta => Weight for: HTML filter
192
+  '0' => '10',
193
+),
194
+);
195
+$input_format->machine = 'plain_text';
196
+$input_formats['plain_text'] = $input_format;
197 197
 
198
-  $input_format = new stdClass;
199
-  $input_format->api_version = 1;
200
-  $input_format->name = 'PHP code';
201
-  $input_format->roles = array();
202
-  $input_format->cache = FALSE;
203
-  $input_format->settings = array(
204
-  );
205
-  $input_format->filters = array(
206
-    'php' => array(
207
-      '0' => '0',
208
-    ),
209
-  );
210
-  $input_format->machine = 'php_code';
211
-  $input_formats['php_code'] = $input_format;
198
+$input_format = new stdClass;
199
+$input_format->api_version = 1;
200
+$input_format->name = 'PHP code';
201
+$input_format->roles = array();
202
+$input_format->cache = FALSE;
203
+$input_format->settings = array(
204
+);
205
+$input_format->filters = array(
206
+'php' => array(
207
+  '0' => '0',
208
+),
209
+);
210
+$input_format->machine = 'php_code';
211
+$input_formats['php_code'] = $input_format;
212 212
 
213
-  return $input_formats;
213
+return $input_formats;
214 214
 
215 215
 }
Please login to merge, or discard this patch.
all/features/boinc_standard/boinc_standard.features.fe_block_settings.inc 1 patch
Switch Indentation   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -4,74 +4,74 @@
 block discarded – undo
4 4
  * Implementation of hook_default_fe_block_settings().
5 5
  */
6 6
 function boinc_standard_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['menu_block-1'] = array(
13
-    'module' => 'menu_block',
14
-    'delta' => '1',
15
-    'theme' => 'boinc',
16
-    'status' => 0,
17
-    'weight' => '0',
18
-    'region' => '',
19
-    'custom' => '0',
20
-    'throttle' => '0',
21
-    'visibility' => '0',
22
-    'pages' => '',
23
-    'title' => '<none>',
24
-    'cache' => '-1',
25
-  );
12
+$theme['menu_block-1'] = array(
13
+'module' => 'menu_block',
14
+'delta' => '1',
15
+'theme' => 'boinc',
16
+'status' => 0,
17
+'weight' => '0',
18
+'region' => '',
19
+'custom' => '0',
20
+'throttle' => '0',
21
+'visibility' => '0',
22
+'pages' => '',
23
+'title' => '<none>',
24
+'cache' => '-1',
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['menu_block-1'] = array(
33
-    'module' => 'menu_block',
34
-    'delta' => '1',
35
-    'theme' => 'einstein',
36
-    'status' => 0,
37
-    'weight' => '-23',
38
-    'region' => '',
39
-    'custom' => '0',
40
-    'throttle' => '0',
41
-    'visibility' => '0',
42
-    'pages' => '',
43
-    'title' => '<none>',
44
-    'cache' => '-1',
45
-  );
32
+$theme['menu_block-1'] = array(
33
+'module' => 'menu_block',
34
+'delta' => '1',
35
+'theme' => 'einstein',
36
+'status' => 0,
37
+'weight' => '-23',
38
+'region' => '',
39
+'custom' => '0',
40
+'throttle' => '0',
41
+'visibility' => '0',
42
+'pages' => '',
43
+'title' => '<none>',
44
+'cache' => '-1',
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['menu_block-1'] = array(
53
-    'module' => 'menu_block',
54
-    'delta' => '1',
55
-    'theme' => 'garland',
56
-    'status' => 0,
57
-    'weight' => '0',
58
-    'region' => '',
59
-    'custom' => '0',
60
-    'throttle' => '0',
61
-    'visibility' => '0',
62
-    'pages' => '',
63
-    'title' => '<none>',
64
-    'cache' => '-1',
65
-  );
52
+$theme['menu_block-1'] = array(
53
+'module' => 'menu_block',
54
+'delta' => '1',
55
+'theme' => 'garland',
56
+'status' => 0,
57
+'weight' => '0',
58
+'region' => '',
59
+'custom' => '0',
60
+'throttle' => '0',
61
+'visibility' => '0',
62
+'pages' => '',
63
+'title' => '<none>',
64
+'cache' => '-1',
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) {
72
-    if ($theme_key != $theme_default && empty($themes[$theme_key]->status)) {
73
-      unset($export[$theme_key]);
74
-    }
75
-  }
76
-  return $export;
69
+$theme_default = variable_get('theme_default', 'garland');
70
+$themes = list_themes();
71
+foreach ($export as $theme_key => $settings) {
72
+if ($theme_key != $theme_default && empty($themes[$theme_key]->status)) {
73
+  unset($export[$theme_key]);
74
+}
75
+}
76
+return $export;
77 77
 }
Please login to merge, or discard this patch.
drupal/sites/all/features/boinc_standard/boinc_standard.pages_default.inc 1 patch
Switch Indentation   +688 added lines, -688 removed lines patch added patch discarded remove patch
@@ -4,257 +4,257 @@  discard block
 block discarded – undo
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(
16
-    'type' => 'none',
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;
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
+'type' => 'none',
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;
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(
34
-    'plugins' => array(
35
-      1 => array(
36
-        'name' => 'role',
37
-        'settings' => array(
38
-          'rids' => array(
39
-            0 => 2,
40
-          ),
41
-        ),
42
-        'context' => 'logged-in-user',
43
-        'not' => FALSE,
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
+'plugins' => array(
35
+  1 => array(
36
+    'name' => 'role',
37
+    'settings' => array(
38
+      'rids' => array(
39
+        0 => 2,
44 40
       ),
45 41
     ),
46
-    'logic' => 'and',
47
-    'type' => 'none',
48
-    'settings' => NULL,
49
-  );
50
-  $page->menu = array(
51
-    'type' => 'none',
52
-    'title' => 'Dashboard',
53
-    'name' => 'navigation',
54
-    'weight' => '0',
55
-    'parent' => array(
56
-      'type' => 'normal',
57
-      'title' => 'Account',
58
-      'name' => 'navigation',
59
-      'weight' => '0',
42
+    'context' => 'logged-in-user',
43
+    'not' => FALSE,
44
+  ),
45
+),
46
+'logic' => 'and',
47
+'type' => 'none',
48
+'settings' => NULL,
49
+);
50
+$page->menu = array(
51
+'type' => 'none',
52
+'title' => 'Dashboard',
53
+'name' => 'navigation',
54
+'weight' => '0',
55
+'parent' => array(
56
+  'type' => 'normal',
57
+  'title' => 'Account',
58
+  'name' => 'navigation',
59
+  'weight' => '0',
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(
74
+'title' => 'Landing page',
75
+'no_blocks' => FALSE,
76
+'pipeline' => 'ipe',
77
+'css_id' => '',
78
+'css' => '',
79
+'contexts' => array(
80
+  0 => array(
81
+    'name' => 'user',
82
+    'id' => 1,
83
+    'identifier' => 'User',
84
+    'keyword' => 'user',
85
+    'context_settings' => array(
86
+      'type' => 'current',
87
+      'user' => '',
88
+      'uid' => '',
60 89
     ),
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
-    'title' => 'Landing page',
75
-    'no_blocks' => FALSE,
76
-    'pipeline' => 'ipe',
77
-    'css_id' => '',
78
-    'css' => '',
79
-    'contexts' => array(
80
-      0 => array(
81
-        'name' => 'user',
82
-        'id' => 1,
83
-        'identifier' => 'User',
84
-        'keyword' => 'user',
85
-        'context_settings' => array(
86
-          'type' => 'current',
87
-          'user' => '',
88
-          'uid' => '',
89
-        ),
90
+  ),
91
+),
92
+'relationships' => array(),
93
+'access' => array(
94
+  'plugins' => array(),
95
+  'logic' => 'and',
96
+),
97
+);
98
+$display = new panels_display;
99
+$display->layout = 'one_sidebar_second';
100
+$display->layout_settings = array();
101
+$display->panel_settings = array(
102
+'style_settings' => array(
103
+  'default' => NULL,
104
+  'content' => NULL,
105
+  'sidebar_first' => NULL,
106
+),
107
+);
108
+$display->cache = array();
109
+$display->title = 'Dashboard';
110
+$display->storage_type = 'page_manager';
111
+$display->storage_id = 'page_account_dashboard_panel_context';
112
+$display->content = array();
113
+$display->panels = array();
114
+$pane = new stdClass;
115
+$pane->pid = 'new-1';
116
+$pane->panel = 'content';
117
+$pane->type = 'panels_mini';
118
+$pane->subtype = 'dashboard_tables';
119
+$pane->shown = TRUE;
120
+$pane->access = array();
121
+$pane->configuration = array(
122
+  'override_title' => 1,
123
+  'override_title_text' => 'My stats',
124
+);
125
+$pane->cache = array();
126
+$pane->style = array(
127
+  'settings' => NULL,
128
+);
129
+$pane->css = array(
130
+  'css_id' => '',
131
+  'css_class' => 'panel-primary container shadow',
132
+);
133
+$pane->extras = array();
134
+$pane->position = 0;
135
+$display->content['new-1'] = $pane;
136
+$display->panels['content'][0] = 'new-1';
137
+$pane = new stdClass;
138
+$pane->pid = 'new-2';
139
+$pane->panel = 'content';
140
+$pane->type = 'views_panes';
141
+$pane->subtype = 'subscriptions-panel_pane_1';
142
+$pane->shown = TRUE;
143
+$pane->access = array();
144
+$pane->configuration = array();
145
+$pane->cache = array();
146
+$pane->style = array(
147
+  'settings' => NULL,
148
+);
149
+$pane->css = array(
150
+  'css_id' => '',
151
+  'css_class' => 'panel-primary container shadow',
152
+);
153
+$pane->extras = array();
154
+$pane->position = 1;
155
+$display->content['new-2'] = $pane;
156
+$display->panels['content'][1] = 'new-2';
157
+$pane = new stdClass;
158
+$pane->pid = 'new-3';
159
+$pane->panel = 'sidebar_first';
160
+$pane->type = 'custom';
161
+$pane->subtype = 'custom';
162
+$pane->shown = TRUE;
163
+$pane->access = array(
164
+  'plugins' => array(
165
+    1 => array(
166
+      'name' => 'perm',
167
+      'settings' => array(
168
+        'perm' => 'edit any profile content',
90 169
       ),
170
+      'context' => 'context_user_1',
171
+      'not' => FALSE,
91 172
     ),
92
-    'relationships' => array(),
93
-    'access' => array(
94
-      'plugins' => array(),
95
-      'logic' => 'and',
96
-    ),
97
-  );
98
-  $display = new panels_display;
99
-  $display->layout = 'one_sidebar_second';
100
-  $display->layout_settings = array();
101
-  $display->panel_settings = array(
102
-    'style_settings' => array(
103
-      'default' => NULL,
104
-      'content' => NULL,
105
-      'sidebar_first' => NULL,
106
-    ),
107
-  );
108
-  $display->cache = array();
109
-  $display->title = 'Dashboard';
110
-  $display->storage_type = 'page_manager';
111
-  $display->storage_id = 'page_account_dashboard_panel_context';
112
-  $display->content = array();
113
-  $display->panels = array();
114
-    $pane = new stdClass;
115
-    $pane->pid = 'new-1';
116
-    $pane->panel = 'content';
117
-    $pane->type = 'panels_mini';
118
-    $pane->subtype = 'dashboard_tables';
119
-    $pane->shown = TRUE;
120
-    $pane->access = array();
121
-    $pane->configuration = array(
122
-      'override_title' => 1,
123
-      'override_title_text' => 'My stats',
124
-    );
125
-    $pane->cache = array();
126
-    $pane->style = array(
127
-      'settings' => NULL,
128
-    );
129
-    $pane->css = array(
130
-      'css_id' => '',
131
-      'css_class' => 'panel-primary container shadow',
132
-    );
133
-    $pane->extras = array();
134
-    $pane->position = 0;
135
-    $display->content['new-1'] = $pane;
136
-    $display->panels['content'][0] = 'new-1';
137
-    $pane = new stdClass;
138
-    $pane->pid = 'new-2';
139
-    $pane->panel = 'content';
140
-    $pane->type = 'views_panes';
141
-    $pane->subtype = 'subscriptions-panel_pane_1';
142
-    $pane->shown = TRUE;
143
-    $pane->access = array();
144
-    $pane->configuration = array();
145
-    $pane->cache = array();
146
-    $pane->style = array(
147
-      'settings' => NULL,
148
-    );
149
-    $pane->css = array(
150
-      'css_id' => '',
151
-      'css_class' => 'panel-primary container shadow',
152
-    );
153
-    $pane->extras = array();
154
-    $pane->position = 1;
155
-    $display->content['new-2'] = $pane;
156
-    $display->panels['content'][1] = 'new-2';
157
-    $pane = new stdClass;
158
-    $pane->pid = 'new-3';
159
-    $pane->panel = 'sidebar_first';
160
-    $pane->type = 'custom';
161
-    $pane->subtype = 'custom';
162
-    $pane->shown = TRUE;
163
-    $pane->access = array(
164
-      'plugins' => array(
165
-        1 => array(
166
-          'name' => 'perm',
167
-          'settings' => array(
168
-            'perm' => 'edit any profile content',
169
-          ),
170
-          'context' => 'context_user_1',
171
-          'not' => FALSE,
172
-        ),
173
-      ),
174
-    );
175
-    $pane->configuration = array(
176
-      'admin_title' => 'Moderation overview',
177
-      'title' => '',
178
-      'body' => '<?php print boinccore_moderation_overview_panel(); ?>',
179
-      'format' => '3',
180
-      'substitute' => 1,
181
-    );
182
-    $pane->cache = array();
183
-    $pane->style = array(
184
-      'settings' => NULL,
185
-    );
186
-    $pane->css = array(
187
-      'css_id' => '',
188
-      'css_class' => 'panel-secondary container shadow',
189
-    );
190
-    $pane->extras = array();
191
-    $pane->position = 0;
192
-    $display->content['new-3'] = $pane;
193
-    $display->panels['sidebar_first'][0] = 'new-3';
194
-    $pane = new stdClass;
195
-    $pane->pid = 'new-4';
196
-    $pane->panel = 'sidebar_first';
197
-    $pane->type = 'panels_mini';
198
-    $pane->subtype = 'user_mail_summary';
199
-    $pane->shown = TRUE;
200
-    $pane->access = array();
201
-    $pane->configuration = array(
202
-      'override_title' => 0,
203
-      'override_title_text' => '',
204
-    );
205
-    $pane->cache = array();
206
-    $pane->style = array(
207
-      'settings' => NULL,
208
-    );
209
-    $pane->css = array(
210
-      'css_id' => '',
211
-      'css_class' => 'panel-secondary container shadow',
212
-    );
213
-    $pane->extras = array();
214
-    $pane->position = 1;
215
-    $display->content['new-4'] = $pane;
216
-    $display->panels['sidebar_first'][1] = 'new-4';
217
-    $pane = new stdClass;
218
-    $pane->pid = 'new-5';
219
-    $pane->panel = 'sidebar_first';
220
-    $pane->type = 'custom';
221
-    $pane->subtype = 'custom';
222
-    $pane->shown = TRUE;
223
-    $pane->access = array();
224
-    $pane->configuration = array(
225
-      'admin_title' => 'Team summary',
226
-      'title' => '',
227
-      'body' => '<?php 
173
+  ),
174
+);
175
+$pane->configuration = array(
176
+  'admin_title' => 'Moderation overview',
177
+  'title' => '',
178
+  'body' => '<?php print boinccore_moderation_overview_panel(); ?>',
179
+  'format' => '3',
180
+  'substitute' => 1,
181
+);
182
+$pane->cache = array();
183
+$pane->style = array(
184
+  'settings' => NULL,
185
+);
186
+$pane->css = array(
187
+  'css_id' => '',
188
+  'css_class' => 'panel-secondary container shadow',
189
+);
190
+$pane->extras = array();
191
+$pane->position = 0;
192
+$display->content['new-3'] = $pane;
193
+$display->panels['sidebar_first'][0] = 'new-3';
194
+$pane = new stdClass;
195
+$pane->pid = 'new-4';
196
+$pane->panel = 'sidebar_first';
197
+$pane->type = 'panels_mini';
198
+$pane->subtype = 'user_mail_summary';
199
+$pane->shown = TRUE;
200
+$pane->access = array();
201
+$pane->configuration = array(
202
+  'override_title' => 0,
203
+  'override_title_text' => '',
204
+);
205
+$pane->cache = array();
206
+$pane->style = array(
207
+  'settings' => NULL,
208
+);
209
+$pane->css = array(
210
+  'css_id' => '',
211
+  'css_class' => 'panel-secondary container shadow',
212
+);
213
+$pane->extras = array();
214
+$pane->position = 1;
215
+$display->content['new-4'] = $pane;
216
+$display->panels['sidebar_first'][1] = 'new-4';
217
+$pane = new stdClass;
218
+$pane->pid = 'new-5';
219
+$pane->panel = 'sidebar_first';
220
+$pane->type = 'custom';
221
+$pane->subtype = 'custom';
222
+$pane->shown = TRUE;
223
+$pane->access = array();
224
+$pane->configuration = array(
225
+  'admin_title' => 'Team summary',
226
+  'title' => '',
227
+  'body' => '<?php 
228 228
 if (module_exists(\'boincteam\')) {
229 229
   echo boincteam_dashboard_panel();
230 230
 }
231 231
 ?>',
232
-      'format' => '3',
233
-      'substitute' => 1,
234
-    );
235
-    $pane->cache = array();
236
-    $pane->style = array(
237
-      'settings' => NULL,
238
-    );
239
-    $pane->css = array(
240
-      'css_id' => 'team-dashboard-pane',
241
-      'css_class' => 'panel-secondary container shadow',
242
-    );
243
-    $pane->extras = array();
244
-    $pane->position = 2;
245
-    $display->content['new-5'] = $pane;
246
-    $display->panels['sidebar_first'][2] = 'new-5';
247
-    $pane = new stdClass;
248
-    $pane->pid = 'new-6';
249
-    $pane->panel = 'sidebar_first';
250
-    $pane->type = 'custom';
251
-    $pane->subtype = 'custom';
252
-    $pane->shown = TRUE;
253
-    $pane->access = array();
254
-    $pane->configuration = array(
255
-      'admin_title' => 'User activity summary',
256
-      'title' => '',
257
-      'body' => '<?php
232
+  'format' => '3',
233
+  'substitute' => 1,
234
+);
235
+$pane->cache = array();
236
+$pane->style = array(
237
+  'settings' => NULL,
238
+);
239
+$pane->css = array(
240
+  'css_id' => 'team-dashboard-pane',
241
+  'css_class' => 'panel-secondary container shadow',
242
+);
243
+$pane->extras = array();
244
+$pane->position = 2;
245
+$display->content['new-5'] = $pane;
246
+$display->panels['sidebar_first'][2] = 'new-5';
247
+$pane = new stdClass;
248
+$pane->pid = 'new-6';
249
+$pane->panel = 'sidebar_first';
250
+$pane->type = 'custom';
251
+$pane->subtype = 'custom';
252
+$pane->shown = TRUE;
253
+$pane->access = array();
254
+$pane->configuration = array(
255
+  'admin_title' => 'User activity summary',
256
+  'title' => '',
257
+  'body' => '<?php
258 258
 
259 259
 global $user;
260 260
 $uid = $user->uid;
@@ -263,226 +263,226 @@  discard block
 block discarded – undo
263 263
 echo \'<div class="item-count-wrapper"><div class="item-count">\' . $account->post_count . \'</div></div>\';
264 264
 
265 265
 ?>',
266
-      'format' => '3',
267
-      'substitute' => 1,
268
-    );
269
-    $pane->cache = array();
270
-    $pane->style = array(
271
-      'settings' => NULL,
272
-    );
273
-    $pane->css = array(
274
-      'css_id' => '',
275
-      'css_class' => 'panel-secondary container shadow',
276
-    );
277
-    $pane->extras = array();
278
-    $pane->position = 3;
279
-    $display->content['new-6'] = $pane;
280
-    $display->panels['sidebar_first'][3] = 'new-6';
281
-    $pane = new stdClass;
282
-    $pane->pid = 'new-7';
283
-    $pane->panel = 'sidebar_first';
284
-    $pane->type = 'views';
285
-    $pane->subtype = 'boinc_friends';
286
-    $pane->shown = TRUE;
287
-    $pane->access = array();
288
-    $pane->configuration = array(
289
-      'override_pager_settings' => 0,
290
-      'use_pager' => 0,
291
-      'nodes_per_page' => '6',
292
-      'pager_id' => '',
293
-      'offset' => '0',
294
-      'more_link' => 1,
295
-      'feed_icons' => 0,
296
-      'panel_args' => 0,
297
-      'link_to_view' => 0,
298
-      'args' => '',
299
-      'url' => '',
300
-      'display' => 'block_1',
301
-      'context' => array(
302
-        0 => 'context_user_1.uid',
303
-      ),
304
-      'override_title' => 0,
305
-      'override_title_text' => '',
306
-    );
307
-    $pane->cache = array();
308
-    $pane->style = array(
309
-      'settings' => NULL,
310
-    );
311
-    $pane->css = array(
312
-      'css_id' => '',
313
-      'css_class' => 'panel-secondary container shadow',
314
-    );
315
-    $pane->extras = array();
316
-    $pane->position = 4;
317
-    $display->content['new-7'] = $pane;
318
-    $display->panels['sidebar_first'][4] = 'new-7';
319
-  $display->hide_title = PANELS_TITLE_FIXED;
320
-  $display->title_pane = 'new-1';
321
-  $handler->conf['display'] = $display;
322
-  $page->default_handlers[$handler->name] = $handler;
323
-  $pages['account_dashboard'] = $page;
266
+  'format' => '3',
267
+  'substitute' => 1,
268
+);
269
+$pane->cache = array();
270
+$pane->style = array(
271
+  'settings' => NULL,
272
+);
273
+$pane->css = array(
274
+  'css_id' => '',
275
+  'css_class' => 'panel-secondary container shadow',
276
+);
277
+$pane->extras = array();
278
+$pane->position = 3;
279
+$display->content['new-6'] = $pane;
280
+$display->panels['sidebar_first'][3] = 'new-6';
281
+$pane = new stdClass;
282
+$pane->pid = 'new-7';
283
+$pane->panel = 'sidebar_first';
284
+$pane->type = 'views';
285
+$pane->subtype = 'boinc_friends';
286
+$pane->shown = TRUE;
287
+$pane->access = array();
288
+$pane->configuration = array(
289
+  'override_pager_settings' => 0,
290
+  'use_pager' => 0,
291
+  'nodes_per_page' => '6',
292
+  'pager_id' => '',
293
+  'offset' => '0',
294
+  'more_link' => 1,
295
+  'feed_icons' => 0,
296
+  'panel_args' => 0,
297
+  'link_to_view' => 0,
298
+  'args' => '',
299
+  'url' => '',
300
+  'display' => 'block_1',
301
+  'context' => array(
302
+    0 => 'context_user_1.uid',
303
+  ),
304
+  'override_title' => 0,
305
+  'override_title_text' => '',
306
+);
307
+$pane->cache = array();
308
+$pane->style = array(
309
+  'settings' => NULL,
310
+);
311
+$pane->css = array(
312
+  'css_id' => '',
313
+  'css_class' => 'panel-secondary container shadow',
314
+);
315
+$pane->extras = array();
316
+$pane->position = 4;
317
+$display->content['new-7'] = $pane;
318
+$display->panels['sidebar_first'][4] = 'new-7';
319
+$display->hide_title = PANELS_TITLE_FIXED;
320
+$display->title_pane = 'new-1';
321
+$handler->conf['display'] = $display;
322
+$page->default_handlers[$handler->name] = $handler;
323
+$pages['account_dashboard'] = $page;
324 324
 
325
-  $page = new stdClass;
326
-  $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */
327
-  $page->api_version = 1;
328
-  $page->name = 'boinc_user';
329
-  $page->task = 'page';
330
-  $page->admin_title = 'User profile template (boinc)';
331
-  $page->admin_description = '';
332
-  $page->path = 'account/%user';
333
-  $page->access = array(
334
-    'type' => 'none',
335
-    'settings' => NULL,
336
-  );
337
-  $page->menu = array();
338
-  $page->arguments = array(
339
-    'user' => array(
340
-      'id' => 1,
341
-      'identifier' => 'User: ID',
342
-      'name' => 'uid',
343
-      'settings' => array(),
344
-    ),
345
-  );
346
-  $page->conf = array();
347
-  $page->default_handlers = array();
348
-  $handler = new stdClass;
349
-  $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */
350
-  $handler->api_version = 1;
351
-  $handler->name = 'page_boinc_user_panel_context_2';
352
-  $handler->task = 'page';
353
-  $handler->subtask = 'boinc_user';
354
-  $handler->handler = 'panel_context';
355
-  $handler->weight = 1;
356
-  $handler->conf = array(
357
-    'title' => 'Panel',
358
-    'no_blocks' => 0,
359
-    'pipeline' => 'standard',
360
-    'css_id' => '',
361
-    'css' => '',
362
-    'contexts' => array(),
363
-    'relationships' => array(),
364
-    'access' => array(
365
-      'plugins' => array(
366
-        0 => array(
367
-          'name' => 'php',
368
-          'settings' => array(
369
-            'description' => 'if user status then show profile',
370
-            'php' => '$account = $contexts[\'argument_uid_1\']->data;
325
+$page = new stdClass;
326
+$page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */
327
+$page->api_version = 1;
328
+$page->name = 'boinc_user';
329
+$page->task = 'page';
330
+$page->admin_title = 'User profile template (boinc)';
331
+$page->admin_description = '';
332
+$page->path = 'account/%user';
333
+$page->access = array(
334
+'type' => 'none',
335
+'settings' => NULL,
336
+);
337
+$page->menu = array();
338
+$page->arguments = array(
339
+'user' => array(
340
+  'id' => 1,
341
+  'identifier' => 'User: ID',
342
+  'name' => 'uid',
343
+  'settings' => array(),
344
+),
345
+);
346
+$page->conf = array();
347
+$page->default_handlers = array();
348
+$handler = new stdClass;
349
+$handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */
350
+$handler->api_version = 1;
351
+$handler->name = 'page_boinc_user_panel_context_2';
352
+$handler->task = 'page';
353
+$handler->subtask = 'boinc_user';
354
+$handler->handler = 'panel_context';
355
+$handler->weight = 1;
356
+$handler->conf = array(
357
+'title' => 'Panel',
358
+'no_blocks' => 0,
359
+'pipeline' => 'standard',
360
+'css_id' => '',
361
+'css' => '',
362
+'contexts' => array(),
363
+'relationships' => array(),
364
+'access' => array(
365
+  'plugins' => array(
366
+    0 => array(
367
+      'name' => 'php',
368
+      'settings' => array(
369
+        'description' => 'if user status then show profile',
370
+        'php' => '$account = $contexts[\'argument_uid_1\']->data;
371 371
 return ($account->status);
372 372
 ',
373
-          ),
374
-          'not' => FALSE,
375
-        ),
376 373
       ),
377
-      'logic' => 'and',
374
+      'not' => FALSE,
378 375
     ),
379
-  );
380
-  $display = new panels_display;
381
-  $display->layout = 'one_sidebar_second';
382
-  $display->layout_settings = array();
383
-  $display->panel_settings = array(
384
-    'style_settings' => array(
385
-      'default' => NULL,
386
-      'content' => NULL,
387
-      'sidebar_first' => NULL,
388
-    ),
389
-  );
390
-  $display->cache = array();
391
-  $display->title = 'Account';
392
-  $display->storage_type = 'page_manager';
393
-  $display->storage_id = 'page_boinc_user_panel_context_2';
394
-  $display->content = array();
395
-  $display->panels = array();
396
-    $pane = new stdClass;
397
-    $pane->pid = 'new-1';
398
-    $pane->panel = 'content';
399
-    $pane->type = 'panels_mini';
400
-    $pane->subtype = 'user_profile';
401
-    $pane->shown = TRUE;
402
-    $pane->access = array();
403
-    $pane->configuration = array(
404
-      'context' => array(
405
-        0 => 'argument_uid_1',
406
-      ),
407
-      'override_title' => 0,
408
-      'override_title_text' => '',
409
-    );
410
-    $pane->cache = array();
411
-    $pane->style = array(
412
-      'settings' => NULL,
413
-    );
414
-    $pane->css = array(
415
-      'css_id' => '',
416
-      'css_class' => 'panel-primary container shadow',
417
-    );
418
-    $pane->extras = array();
419
-    $pane->position = 0;
420
-    $display->content['new-1'] = $pane;
421
-    $display->panels['content'][0] = 'new-1';
422
-    $pane = new stdClass;
423
-    $pane->pid = 'new-2';
424
-    $pane->panel = 'sidebar_first';
425
-    $pane->type = 'views_panes';
426
-    $pane->subtype = 'boinc_account_stats-panel_pane_2';
427
-    $pane->shown = TRUE;
428
-    $pane->access = array();
429
-    $pane->configuration = array(
430
-      'override_title' => 0,
431
-      'override_title_text' => '',
432
-    );
433
-    $pane->cache = array();
434
-    $pane->style = array(
435
-      'settings' => NULL,
436
-    );
437
-    $pane->css = array(
438
-      'css_id' => '',
439
-      'css_class' => 'panel-secondary container shadow',
440
-    );
441
-    $pane->extras = array();
442
-    $pane->position = 0;
443
-    $display->content['new-2'] = $pane;
444
-    $display->panels['sidebar_first'][0] = 'new-2';
445
-    $pane = new stdClass;
446
-    $pane->pid = 'new-3';
447
-    $pane->panel = 'sidebar_first';
448
-    $pane->type = 'custom';
449
-    $pane->subtype = 'custom';
450
-    $pane->shown = TRUE;
451
-    $pane->access = array();
452
-    $pane->configuration = array(
453
-      'admin_title' => 'Team summary',
454
-      'title' => '',
455
-      'body' => '<?php 
376
+  ),
377
+  'logic' => 'and',
378
+),
379
+);
380
+$display = new panels_display;
381
+$display->layout = 'one_sidebar_second';
382
+$display->layout_settings = array();
383
+$display->panel_settings = array(
384
+'style_settings' => array(
385
+  'default' => NULL,
386
+  'content' => NULL,
387
+  'sidebar_first' => NULL,
388
+),
389
+);
390
+$display->cache = array();
391
+$display->title = 'Account';
392
+$display->storage_type = 'page_manager';
393
+$display->storage_id = 'page_boinc_user_panel_context_2';
394
+$display->content = array();
395
+$display->panels = array();
396
+$pane = new stdClass;
397
+$pane->pid = 'new-1';
398
+$pane->panel = 'content';
399
+$pane->type = 'panels_mini';
400
+$pane->subtype = 'user_profile';
401
+$pane->shown = TRUE;
402
+$pane->access = array();
403
+$pane->configuration = array(
404
+  'context' => array(
405
+    0 => 'argument_uid_1',
406
+  ),
407
+  'override_title' => 0,
408
+  'override_title_text' => '',
409
+);
410
+$pane->cache = array();
411
+$pane->style = array(
412
+  'settings' => NULL,
413
+);
414
+$pane->css = array(
415
+  'css_id' => '',
416
+  'css_class' => 'panel-primary container shadow',
417
+);
418
+$pane->extras = array();
419
+$pane->position = 0;
420
+$display->content['new-1'] = $pane;
421
+$display->panels['content'][0] = 'new-1';
422
+$pane = new stdClass;
423
+$pane->pid = 'new-2';
424
+$pane->panel = 'sidebar_first';
425
+$pane->type = 'views_panes';
426
+$pane->subtype = 'boinc_account_stats-panel_pane_2';
427
+$pane->shown = TRUE;
428
+$pane->access = array();
429
+$pane->configuration = array(
430
+  'override_title' => 0,
431
+  'override_title_text' => '',
432
+);
433
+$pane->cache = array();
434
+$pane->style = array(
435
+  'settings' => NULL,
436
+);
437
+$pane->css = array(
438
+  'css_id' => '',
439
+  'css_class' => 'panel-secondary container shadow',
440
+);
441
+$pane->extras = array();
442
+$pane->position = 0;
443
+$display->content['new-2'] = $pane;
444
+$display->panels['sidebar_first'][0] = 'new-2';
445
+$pane = new stdClass;
446
+$pane->pid = 'new-3';
447
+$pane->panel = 'sidebar_first';
448
+$pane->type = 'custom';
449
+$pane->subtype = 'custom';
450
+$pane->shown = TRUE;
451
+$pane->access = array();
452
+$pane->configuration = array(
453
+  'admin_title' => 'Team summary',
454
+  'title' => '',
455
+  'body' => '<?php 
456 456
 if (module_exists(\'boincteam\')) {
457 457
   echo boincteam_dashboard_panel(%user:uid);
458 458
 }
459 459
 ?>',
460
-      'format' => '3',
461
-      'substitute' => 1,
462
-    );
463
-    $pane->cache = array();
464
-    $pane->style = array(
465
-      'settings' => NULL,
466
-    );
467
-    $pane->css = array(
468
-      'css_id' => 'team-dashboard-pane',
469
-      'css_class' => 'panel-secondary container shadow',
470
-    );
471
-    $pane->extras = array();
472
-    $pane->position = 1;
473
-    $display->content['new-3'] = $pane;
474
-    $display->panels['sidebar_first'][1] = 'new-3';
475
-    $pane = new stdClass;
476
-    $pane->pid = 'new-4';
477
-    $pane->panel = 'sidebar_first';
478
-    $pane->type = 'custom';
479
-    $pane->subtype = 'custom';
480
-    $pane->shown = TRUE;
481
-    $pane->access = array();
482
-    $pane->configuration = array(
483
-      'admin_title' => 'User activity summary',
484
-      'title' => '',
485
-      'body' => '<?php
460
+  'format' => '3',
461
+  'substitute' => 1,
462
+);
463
+$pane->cache = array();
464
+$pane->style = array(
465
+  'settings' => NULL,
466
+);
467
+$pane->css = array(
468
+  'css_id' => 'team-dashboard-pane',
469
+  'css_class' => 'panel-secondary container shadow',
470
+);
471
+$pane->extras = array();
472
+$pane->position = 1;
473
+$display->content['new-3'] = $pane;
474
+$display->panels['sidebar_first'][1] = 'new-3';
475
+$pane = new stdClass;
476
+$pane->pid = 'new-4';
477
+$pane->panel = 'sidebar_first';
478
+$pane->type = 'custom';
479
+$pane->subtype = 'custom';
480
+$pane->shown = TRUE;
481
+$pane->access = array();
482
+$pane->configuration = array(
483
+  'admin_title' => 'User activity summary',
484
+  'title' => '',
485
+  'body' => '<?php
486 486
 
487 487
 $uid = arg(1);
488 488
 $account = user_load($uid);
@@ -490,243 +490,243 @@  discard block
 block discarded – undo
490 490
 echo \'<div class="item-count-wrapper"><div class="item-count">\' . $account->post_count . \'</div></div>\';
491 491
 
492 492
 ?>',
493
-      'format' => '3',
494
-      'substitute' => 0,
495
-    );
496
-    $pane->cache = array();
497
-    $pane->style = array(
498
-      'settings' => NULL,
499
-    );
500
-    $pane->css = array(
501
-      'css_id' => '',
502
-      'css_class' => 'panel-secondary container shadow',
503
-    );
504
-    $pane->extras = array();
505
-    $pane->position = 2;
506
-    $display->content['new-4'] = $pane;
507
-    $display->panels['sidebar_first'][2] = 'new-4';
508
-    $pane = new stdClass;
509
-    $pane->pid = 'new-5';
510
-    $pane->panel = 'sidebar_first';
511
-    $pane->type = 'views';
512
-    $pane->subtype = 'boinc_friends';
513
-    $pane->shown = TRUE;
514
-    $pane->access = array();
515
-    $pane->configuration = array(
516
-      'override_pager_settings' => 0,
517
-      'use_pager' => 0,
518
-      'nodes_per_page' => '6',
519
-      'pager_id' => '',
520
-      'offset' => '0',
521
-      'more_link' => 0,
522
-      'feed_icons' => 0,
523
-      'panel_args' => 0,
524
-      'link_to_view' => 0,
525
-      'args' => '',
526
-      'url' => '',
527
-      'display' => 'block_1',
528
-      'context' => array(
529
-        0 => 'argument_uid_1.uid',
530
-      ),
531
-      'override_title' => 0,
532
-      'override_title_text' => '',
533
-    );
534
-    $pane->cache = array();
535
-    $pane->style = array(
536
-      'settings' => NULL,
537
-    );
538
-    $pane->css = array(
539
-      'css_id' => '',
540
-      'css_class' => 'panel-secondary container shadow',
541
-    );
542
-    $pane->extras = array();
543
-    $pane->position = 3;
544
-    $display->content['new-5'] = $pane;
545
-    $display->panels['sidebar_first'][3] = 'new-5';
546
-    $pane = new stdClass;
547
-    $pane->pid = 'new-6';
548
-    $pane->panel = 'sidebar_first';
549
-    $pane->type = 'custom';
550
-    $pane->subtype = 'custom';
551
-    $pane->shown = TRUE;
552
-    $pane->access = array();
553
-    $pane->configuration = array(
554
-      'admin_title' => 'Project list',
555
-      'title' => 'Projects',
556
-      'body' => '<?php echo boincuser_get_projects_table(%user:uid); ?>',
557
-      'format' => '3',
558
-      'substitute' => 1,
559
-    );
560
-    $pane->cache = array();
561
-    $pane->style = array(
562
-      'settings' => NULL,
563
-    );
564
-    $pane->css = array(
565
-      'css_id' => '',
566
-      'css_class' => 'panel-secondary container shadow',
567
-    );
568
-    $pane->extras = array();
569
-    $pane->position = 4;
570
-    $display->content['new-6'] = $pane;
571
-    $display->panels['sidebar_first'][4] = 'new-6';
572
-  $display->hide_title = PANELS_TITLE_FIXED;
573
-  $display->title_pane = '0';
574
-  $handler->conf['display'] = $display;
575
-  $page->default_handlers[$handler->name] = $handler;
576
-  $pages['boinc_user'] = $page;
493
+  'format' => '3',
494
+  'substitute' => 0,
495
+);
496
+$pane->cache = array();
497
+$pane->style = array(
498
+  'settings' => NULL,
499
+);
500
+$pane->css = array(
501
+  'css_id' => '',
502
+  'css_class' => 'panel-secondary container shadow',
503
+);
504
+$pane->extras = array();
505
+$pane->position = 2;
506
+$display->content['new-4'] = $pane;
507
+$display->panels['sidebar_first'][2] = 'new-4';
508
+$pane = new stdClass;
509
+$pane->pid = 'new-5';
510
+$pane->panel = 'sidebar_first';
511
+$pane->type = 'views';
512
+$pane->subtype = 'boinc_friends';
513
+$pane->shown = TRUE;
514
+$pane->access = array();
515
+$pane->configuration = array(
516
+  'override_pager_settings' => 0,
517
+  'use_pager' => 0,
518
+  'nodes_per_page' => '6',
519
+  'pager_id' => '',
520
+  'offset' => '0',
521
+  'more_link' => 0,
522
+  'feed_icons' => 0,
523
+  'panel_args' => 0,
524
+  'link_to_view' => 0,
525
+  'args' => '',
526
+  'url' => '',
527
+  'display' => 'block_1',
528
+  'context' => array(
529
+    0 => 'argument_uid_1.uid',
530
+  ),
531
+  'override_title' => 0,
532
+  'override_title_text' => '',
533
+);
534
+$pane->cache = array();
535
+$pane->style = array(
536
+  'settings' => NULL,
537
+);
538
+$pane->css = array(
539
+  'css_id' => '',
540
+  'css_class' => 'panel-secondary container shadow',
541
+);
542
+$pane->extras = array();
543
+$pane->position = 3;
544
+$display->content['new-5'] = $pane;
545
+$display->panels['sidebar_first'][3] = 'new-5';
546
+$pane = new stdClass;
547
+$pane->pid = 'new-6';
548
+$pane->panel = 'sidebar_first';
549
+$pane->type = 'custom';
550
+$pane->subtype = 'custom';
551
+$pane->shown = TRUE;
552
+$pane->access = array();
553
+$pane->configuration = array(
554
+  'admin_title' => 'Project list',
555
+  'title' => 'Projects',
556
+  'body' => '<?php echo boincuser_get_projects_table(%user:uid); ?>',
557
+  'format' => '3',
558
+  'substitute' => 1,
559
+);
560
+$pane->cache = array();
561
+$pane->style = array(
562
+  'settings' => NULL,
563
+);
564
+$pane->css = array(
565
+  'css_id' => '',
566
+  'css_class' => 'panel-secondary container shadow',
567
+);
568
+$pane->extras = array();
569
+$pane->position = 4;
570
+$display->content['new-6'] = $pane;
571
+$display->panels['sidebar_first'][4] = 'new-6';
572
+$display->hide_title = PANELS_TITLE_FIXED;
573
+$display->title_pane = '0';
574
+$handler->conf['display'] = $display;
575
+$page->default_handlers[$handler->name] = $handler;
576
+$pages['boinc_user'] = $page;
577 577
 
578
-  $page = new stdClass;
579
-  $page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */
580
-  $page->api_version = 1;
581
-  $page->name = 'home';
582
-  $page->task = 'page';
583
-  $page->admin_title = 'Home page';
584
-  $page->admin_description = '';
585
-  $page->path = 'home';
586
-  $page->access = array(
587
-    'type' => 'none',
588
-    'settings' => NULL,
589
-  );
590
-  $page->menu = array(
591
-    'type' => 'normal',
592
-    'title' => 'Home',
593
-    'name' => 'navigation',
594
-    'weight' => '0',
595
-    'parent' => array(
596
-      'type' => 'none',
597
-      'title' => '',
598
-      'name' => 'navigation',
599
-      'weight' => '0',
600
-    ),
601
-  );
602
-  $page->arguments = array();
603
-  $page->conf = array();
604
-  $page->default_handlers = array();
605
-  $handler = new stdClass;
606
-  $handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */
607
-  $handler->api_version = 1;
608
-  $handler->name = 'page_home_panel_context';
609
-  $handler->task = 'page';
610
-  $handler->subtask = 'home';
611
-  $handler->handler = 'panel_context';
612
-  $handler->weight = 0;
613
-  $handler->conf = array(
614
-    'title' => 'Landing page',
615
-    'no_blocks' => FALSE,
616
-    'pipeline' => 'ipe',
617
-    'css_id' => '',
618
-    'css' => '',
619
-    'contexts' => array(),
620
-    'relationships' => array(),
621
-  );
622
-  $display = new panels_display;
623
-  $display->layout = 'one_sidebar_second';
624
-  $display->layout_settings = array();
625
-  $display->panel_settings = array(
626
-    'style_settings' => array(
627
-      'default' => NULL,
628
-      'content' => NULL,
629
-      'sidebar_first' => NULL,
630
-    ),
631
-  );
632
-  $display->cache = array();
633
-  $display->title = '';
634
-  $display->storage_type = 'page_manager';
635
-  $display->storage_id = 'page_home_panel_context';
636
-  $display->content = array();
637
-  $display->panels = array();
638
-    $pane = new stdClass;
639
-    $pane->pid = 'new-1';
640
-    $pane->panel = 'content';
641
-    $pane->type = 'custom';
642
-    $pane->subtype = 'custom';
643
-    $pane->shown = TRUE;
644
-    $pane->access = array(
645
-      'plugins' => array(),
646
-    );
647
-    $pane->configuration = array(
648
-      'admin_title' => 'BOINC overview',
649
-      'title' => '',
650
-      'body' => '<?php print boincuser_home_page(); ?>',
651
-      'format' => '3',
652
-      'substitute' => TRUE,
653
-    );
654
-    $pane->cache = array();
655
-    $pane->style = array(
656
-      'settings' => NULL,
657
-    );
658
-    $pane->css = array(
659
-      'css_id' => '',
660
-      'css_class' => 'panel-primary container shadow',
661
-    );
662
-    $pane->extras = array();
663
-    $pane->position = 0;
664
-    $display->content['new-1'] = $pane;
665
-    $display->panels['content'][0] = 'new-1';
666
-    $pane = new stdClass;
667
-    $pane->pid = 'new-2';
668
-    $pane->panel = 'sidebar_first';
669
-    $pane->type = 'panels_mini';
670
-    $pane->subtype = 'project_stats_overview';
671
-    $pane->shown = TRUE;
672
-    $pane->access = array();
673
-    $pane->configuration = array(
674
-      'override_title' => 0,
675
-      'override_title_text' => '',
676
-    );
677
-    $pane->cache = array();
678
-    $pane->style = array(
679
-      'settings' => NULL,
680
-    );
681
-    $pane->css = array(
682
-      'css_id' => '',
683
-      'css_class' => 'panel-secondary container shadow balance-height-front no-resize',
684
-    );
685
-    $pane->extras = array();
686
-    $pane->position = 0;
687
-    $display->content['new-2'] = $pane;
688
-    $display->panels['sidebar_first'][0] = 'new-2';
689
-    $pane = new stdClass;
690
-    $pane->pid = 'new-3';
691
-    $pane->panel = 'sidebar_first';
692
-    $pane->type = 'views';
693
-    $pane->subtype = 'news';
694
-    $pane->shown = TRUE;
695
-    $pane->access = array();
696
-    $pane->configuration = array(
697
-      'override_pager_settings' => 1,
698
-      'use_pager' => 0,
699
-      'nodes_per_page' => '2',
700
-      'pager_id' => '',
701
-      'offset' => '0',
702
-      'more_link' => 1,
703
-      'feed_icons' => 1,
704
-      'panel_args' => 0,
705
-      'link_to_view' => 0,
706
-      'args' => '',
707
-      'url' => '',
708
-      'display' => 'page_2',
709
-      'override_title' => 1,
710
-      'override_title_text' => '',
711
-    );
712
-    $pane->cache = array();
713
-    $pane->style = array(
714
-      'settings' => NULL,
715
-    );
716
-    $pane->css = array(
717
-      'css_id' => '',
718
-      'css_class' => 'panel-secondary container shadow balance-height-front',
719
-    );
720
-    $pane->extras = array();
721
-    $pane->position = 1;
722
-    $display->content['new-3'] = $pane;
723
-    $display->panels['sidebar_first'][1] = 'new-3';
724
-  $display->hide_title = PANELS_TITLE_NONE;
725
-  $display->title_pane = '0';
726
-  $handler->conf['display'] = $display;
727
-  $page->default_handlers[$handler->name] = $handler;
728
-  $pages['home'] = $page;
578
+$page = new stdClass;
579
+$page->disabled = FALSE; /* Edit this to true to make a default page disabled initially */
580
+$page->api_version = 1;
581
+$page->name = 'home';
582
+$page->task = 'page';
583
+$page->admin_title = 'Home page';
584
+$page->admin_description = '';
585
+$page->path = 'home';
586
+$page->access = array(
587
+'type' => 'none',
588
+'settings' => NULL,
589
+);
590
+$page->menu = array(
591
+'type' => 'normal',
592
+'title' => 'Home',
593
+'name' => 'navigation',
594
+'weight' => '0',
595
+'parent' => array(
596
+  'type' => 'none',
597
+  'title' => '',
598
+  'name' => 'navigation',
599
+  'weight' => '0',
600
+),
601
+);
602
+$page->arguments = array();
603
+$page->conf = array();
604
+$page->default_handlers = array();
605
+$handler = new stdClass;
606
+$handler->disabled = FALSE; /* Edit this to true to make a default handler disabled initially */
607
+$handler->api_version = 1;
608
+$handler->name = 'page_home_panel_context';
609
+$handler->task = 'page';
610
+$handler->subtask = 'home';
611
+$handler->handler = 'panel_context';
612
+$handler->weight = 0;
613
+$handler->conf = array(
614
+'title' => 'Landing page',
615
+'no_blocks' => FALSE,
616
+'pipeline' => 'ipe',
617
+'css_id' => '',
618
+'css' => '',
619
+'contexts' => array(),
620
+'relationships' => array(),
621
+);
622
+$display = new panels_display;
623
+$display->layout = 'one_sidebar_second';
624
+$display->layout_settings = array();
625
+$display->panel_settings = array(
626
+'style_settings' => array(
627
+  'default' => NULL,
628
+  'content' => NULL,
629
+  'sidebar_first' => NULL,
630
+),
631
+);
632
+$display->cache = array();
633
+$display->title = '';
634
+$display->storage_type = 'page_manager';
635
+$display->storage_id = 'page_home_panel_context';
636
+$display->content = array();
637
+$display->panels = array();
638
+$pane = new stdClass;
639
+$pane->pid = 'new-1';
640
+$pane->panel = 'content';
641
+$pane->type = 'custom';
642
+$pane->subtype = 'custom';
643
+$pane->shown = TRUE;
644
+$pane->access = array(
645
+  'plugins' => array(),
646
+);
647
+$pane->configuration = array(
648
+  'admin_title' => 'BOINC overview',
649
+  'title' => '',
650
+  'body' => '<?php print boincuser_home_page(); ?>',
651
+  'format' => '3',
652
+  'substitute' => TRUE,
653
+);
654
+$pane->cache = array();
655
+$pane->style = array(
656
+  'settings' => NULL,
657
+);
658
+$pane->css = array(
659
+  'css_id' => '',
660
+  'css_class' => 'panel-primary container shadow',
661
+);
662
+$pane->extras = array();
663
+$pane->position = 0;
664
+$display->content['new-1'] = $pane;
665
+$display->panels['content'][0] = 'new-1';
666
+$pane = new stdClass;
667
+$pane->pid = 'new-2';
668
+$pane->panel = 'sidebar_first';
669
+$pane->type = 'panels_mini';
670
+$pane->subtype = 'project_stats_overview';
671
+$pane->shown = TRUE;
672
+$pane->access = array();
673
+$pane->configuration = array(
674
+  'override_title' => 0,
675
+  'override_title_text' => '',
676
+);
677
+$pane->cache = array();
678
+$pane->style = array(
679
+  'settings' => NULL,
680
+);
681
+$pane->css = array(
682
+  'css_id' => '',
683
+  'css_class' => 'panel-secondary container shadow balance-height-front no-resize',
684
+);
685
+$pane->extras = array();
686
+$pane->position = 0;
687
+$display->content['new-2'] = $pane;
688
+$display->panels['sidebar_first'][0] = 'new-2';
689
+$pane = new stdClass;
690
+$pane->pid = 'new-3';
691
+$pane->panel = 'sidebar_first';
692
+$pane->type = 'views';
693
+$pane->subtype = 'news';
694
+$pane->shown = TRUE;
695
+$pane->access = array();
696
+$pane->configuration = array(
697
+  'override_pager_settings' => 1,
698
+  'use_pager' => 0,
699
+  'nodes_per_page' => '2',
700
+  'pager_id' => '',
701
+  'offset' => '0',
702
+  'more_link' => 1,
703
+  'feed_icons' => 1,
704
+  'panel_args' => 0,
705
+  'link_to_view' => 0,
706
+  'args' => '',
707
+  'url' => '',
708
+  'display' => 'page_2',
709
+  'override_title' => 1,
710
+  'override_title_text' => '',
711
+);
712
+$pane->cache = array();
713
+$pane->style = array(
714
+  'settings' => NULL,
715
+);
716
+$pane->css = array(
717
+  'css_id' => '',
718
+  'css_class' => 'panel-secondary container shadow balance-height-front',
719
+);
720
+$pane->extras = array();
721
+$pane->position = 1;
722
+$display->content['new-3'] = $pane;
723
+$display->panels['sidebar_first'][1] = 'new-3';
724
+$display->hide_title = PANELS_TITLE_NONE;
725
+$display->title_pane = '0';
726
+$handler->conf['display'] = $display;
727
+$page->default_handlers[$handler->name] = $handler;
728
+$pages['home'] = $page;
729 729
 
730
- return $pages;
730
+return $pages;
731 731
 
732 732
 }
Please login to merge, or discard this patch.
drupal/sites/all/features/boinc_standard/boinc_standard.strongarm.inc 1 patch
Switch Indentation   +2156 added lines, -2156 removed lines patch added patch discarded remove patch
@@ -4,1998 +4,1998 @@  discard block
 block discarded – undo
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 = 'bbcode_debug_4';
20
-  $strongarm->value = '0';
21
-  $export['bbcode_debug_4'] = $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 = 'bbcode_debug_6';
27
-  $strongarm->value = '0';
28
-  $export['bbcode_debug_6'] = $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 = 'bbcode_encode_mailto_4';
34
-  $strongarm->value = '1';
35
-  $export['bbcode_encode_mailto_4'] = $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 = 'bbcode_encode_mailto_6';
41
-  $strongarm->value = '1';
42
-  $export['bbcode_encode_mailto_6'] = $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 = 'bbcode_filter_nofollow_4';
48
-  $strongarm->value = '0';
49
-  $export['bbcode_filter_nofollow_4'] = $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 = 'bbcode_filter_nofollow_6';
55
-  $strongarm->value = '0';
56
-  $export['bbcode_filter_nofollow_6'] = $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 = 'bbcode_make_links_4';
62
-  $strongarm->value = '1';
63
-  $export['bbcode_make_links_4'] = $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 = 'bbcode_make_links_6';
69
-  $strongarm->value = '1';
70
-  $export['bbcode_make_links_6'] = $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 = 'bbcode_paragraph_breaks_4';
76
-  $strongarm->value = '2';
77
-  $export['bbcode_paragraph_breaks_4'] = $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 = 'bbcode_paragraph_breaks_6';
83
-  $strongarm->value = '2';
84
-  $export['bbcode_paragraph_breaks_6'] = $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 = 'boinctranslate_filter_debug_4';
90
-  $strongarm->value = '0';
91
-  $export['boinctranslate_filter_debug_4'] = $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 = 'boinctranslate_filter_nodetypes';
97
-  $strongarm->value = array(
98
-    'page' => 'page',
99
-    'story' => 'story',
100
-    'news' => 0,
101
-  );
102
-  $export['boinctranslate_filter_nodetypes'] = $strongarm;
103
-
104
-  $strongarm = new stdClass;
105
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
106
-  $strongarm->api_version = 1;
107
-  $strongarm->name = 'comment_anonymous_page';
108
-  $strongarm->value = 0;
109
-  $export['comment_anonymous_page'] = $strongarm;
110
-
111
-  $strongarm = new stdClass;
112
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
113
-  $strongarm->api_version = 1;
114
-  $strongarm->name = 'comment_controls_page';
115
-  $strongarm->value = '3';
116
-  $export['comment_controls_page'] = $strongarm;
117
-
118
-  $strongarm = new stdClass;
119
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
120
-  $strongarm->api_version = 1;
121
-  $strongarm->name = 'comment_default_mode_page';
122
-  $strongarm->value = '4';
123
-  $export['comment_default_mode_page'] = $strongarm;
124
-
125
-  $strongarm = new stdClass;
126
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
127
-  $strongarm->api_version = 1;
128
-  $strongarm->name = 'comment_default_order_page';
129
-  $strongarm->value = '1';
130
-  $export['comment_default_order_page'] = $strongarm;
131
-
132
-  $strongarm = new stdClass;
133
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
134
-  $strongarm->api_version = 1;
135
-  $strongarm->name = 'comment_default_per_page_page';
136
-  $strongarm->value = '50';
137
-  $export['comment_default_per_page_page'] = $strongarm;
138
-
139
-  $strongarm = new stdClass;
140
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
141
-  $strongarm->api_version = 1;
142
-  $strongarm->name = 'comment_form_location_page';
143
-  $strongarm->value = '0';
144
-  $export['comment_form_location_page'] = $strongarm;
145
-
146
-  $strongarm = new stdClass;
147
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
148
-  $strongarm->api_version = 1;
149
-  $strongarm->name = 'comment_page';
150
-  $strongarm->value = 0;
151
-  $export['comment_page'] = $strongarm;
152
-
153
-  $strongarm = new stdClass;
154
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
155
-  $strongarm->api_version = 1;
156
-  $strongarm->name = 'comment_preview_page';
157
-  $strongarm->value = '1';
158
-  $export['comment_preview_page'] = $strongarm;
159
-
160
-  $strongarm = new stdClass;
161
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
162
-  $strongarm->api_version = 1;
163
-  $strongarm->name = 'comment_subject_field_page';
164
-  $strongarm->value = '1';
165
-  $export['comment_subject_field_page'] = $strongarm;
166
-
167
-  $strongarm = new stdClass;
168
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
169
-  $strongarm->api_version = 1;
170
-  $strongarm->name = 'content_extra_weights_page';
171
-  $strongarm->value = array(
172
-    'apachesolr' => '100',
173
-    'title' => '-5',
174
-    'body_field' => '0',
175
-    'revision_information' => '20',
176
-    'author' => '20',
177
-    'options' => '25',
178
-    'comment_settings' => '30',
179
-    'language' => '0',
180
-    'translation' => '30',
181
-    'menu' => '-2',
182
-    'path' => '30',
183
-    'attachments' => '30',
184
-  );
185
-  $export['content_extra_weights_page'] = $strongarm;
186
-
187
-  $strongarm = new stdClass;
188
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
189
-  $strongarm->api_version = 1;
190
-  $strongarm->name = 'error_level';
191
-  $strongarm->value = '0';
192
-  $export['error_level'] = $strongarm;
193
-
194
-  $strongarm = new stdClass;
195
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
196
-  $strongarm->api_version = 1;
197
-  $strongarm->name = 'filter_default_format';
198
-  $strongarm->value = '4';
199
-  $export['filter_default_format'] = $strongarm;
200
-
201
-  $strongarm = new stdClass;
202
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
203
-  $strongarm->api_version = 1;
204
-  $strongarm->name = 'filter_pathologic_absolute_4';
205
-  $strongarm->value = 1;
206
-  $export['filter_pathologic_absolute_4'] = $strongarm;
207
-
208
-  $strongarm = new stdClass;
209
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
210
-  $strongarm->api_version = 1;
211
-  $strongarm->name = 'filter_pathologic_absolute_6';
212
-  $strongarm->value = 1;
213
-  $export['filter_pathologic_absolute_6'] = $strongarm;
214
-
215
-  $strongarm = new stdClass;
216
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
217
-  $strongarm->api_version = 1;
218
-  $strongarm->name = 'filter_pathologic_local_paths_4';
219
-  $strongarm->value = '/';
220
-  $export['filter_pathologic_local_paths_4'] = $strongarm;
221
-
222
-  $strongarm = new stdClass;
223
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
224
-  $strongarm->api_version = 1;
225
-  $strongarm->name = 'filter_pathologic_local_paths_6';
226
-  $strongarm->value = '/';
227
-  $export['filter_pathologic_local_paths_6'] = $strongarm;
228
-
229
-  $strongarm = new stdClass;
230
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
231
-  $strongarm->api_version = 1;
232
-  $strongarm->name = 'format';
233
-  $strongarm->value = '4';
234
-  $export['format'] = $strongarm;
235
-
236
-  $strongarm = new stdClass;
237
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
238
-  $strongarm->api_version = 1;
239
-  $strongarm->name = 'htmlpurifier_clear_cache';
240
-  $strongarm->value = 'Clear cache (Warning: Can result in performance degradation)';
241
-  $export['htmlpurifier_clear_cache'] = $strongarm;
242
-
243
-  $strongarm = new stdClass;
244
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
245
-  $strongarm->api_version = 1;
246
-  $strongarm->name = 'htmlpurifier_config_4';
247
-  $strongarm->value = array(
248
-    'Attr.EnableID' => '0',
249
-    'AutoFormat.AutoParagraph' => '1',
250
-    'AutoFormat.Linkify' => '1',
251
-    'AutoFormat.RemoveEmpty' => '0',
252
-    'Null_HTML.Allowed' => '1',
253
-    'HTML.ForbiddenAttributes' => '',
254
-    'HTML.ForbiddenElements' => '',
255
-    'HTML.SafeObject' => '0',
256
-    'Output.FlashCompat' => '0',
257
-    'URI.DisableExternalResources' => '0',
258
-    'URI.DisableResources' => '0',
259
-    'Null_URI.Munge' => '1',
260
-  );
261
-  $export['htmlpurifier_config_4'] = $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 = 'htmlpurifier_help_4';
267
-  $strongarm->value = 1;
268
-  $export['htmlpurifier_help_4'] = $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 = 'htmlpurifier_help_6';
274
-  $strongarm->value = 1;
275
-  $export['htmlpurifier_help_6'] = $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 = 'htmlpurifier_version_check_failed';
281
-  $strongarm->value = FALSE;
282
-  $export['htmlpurifier_version_check_failed'] = $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 = 'htmlpurifier_version_current';
288
-  $strongarm->value = '4.9.1';
289
-  $export['htmlpurifier_version_current'] = $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 = 'htmlpurifier_version_ours';
295
-  $strongarm->value = '4.10.0';
296
-  $export['htmlpurifier_version_ours'] = $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 = 'imce_profiles';
302
-  $strongarm->value = array(
303
-    1 => array(
304
-      'name' => 'User-1',
305
-      'usertab' => 1,
306
-      'filesize' => 0,
307
-      'quota' => 0,
308
-      'tuquota' => 0,
309
-      'extensions' => '*',
310
-      'dimensions' => '1200x1200',
311
-      'filenum' => 0,
312
-      'directories' => array(
313
-        0 => array(
314
-          'name' => '.',
315
-          'subnav' => 1,
316
-          'browse' => 1,
317
-          'upload' => 1,
318
-          'thumb' => 1,
319
-          'delete' => 1,
320
-          'resize' => 1,
321
-        ),
322
-      ),
323
-      'thumbnails' => array(
324
-        0 => array(
325
-          'name' => 'Small',
326
-          'dimensions' => '90x90',
327
-          'prefix' => 'small_',
328
-          'suffix' => '',
329
-        ),
330
-        1 => array(
331
-          'name' => 'Medium',
332
-          'dimensions' => '120x120',
333
-          'prefix' => 'medium_',
334
-          'suffix' => '',
335
-        ),
336
-        2 => array(
337
-          'name' => 'Large',
338
-          'dimensions' => '180x180',
339
-          'prefix' => 'large_',
340
-          'suffix' => '',
341
-        ),
342
-      ),
343
-    ),
344
-    2 => array(
345
-      'name' => 'Sample profile',
346
-      'usertab' => 1,
347
-      'filesize' => 1,
348
-      'quota' => 2,
349
-      'tuquota' => 0,
350
-      'extensions' => 'gif png jpg jpeg',
351
-      'dimensions' => '800x600',
352
-      'filenum' => 1,
353
-      'directories' => array(
354
-        0 => array(
355
-          'name' => 'u%uid',
356
-          'subnav' => 0,
357
-          'browse' => 1,
358
-          'upload' => 1,
359
-          'thumb' => 1,
360
-          'delete' => 0,
361
-          'resize' => 0,
362
-        ),
363
-      ),
364
-      'thumbnails' => array(
365
-        0 => array(
366
-          'name' => 'Thumb',
367
-          'dimensions' => '90x90',
368
-          'prefix' => 'thumb_',
369
-          'suffix' => '',
370
-        ),
371
-      ),
372
-    ),
373
-    3 => array(
374
-      'name' => 'Editor',
375
-      'usertab' => 1,
376
-      'filesize' => '1',
377
-      'quota' => '2',
378
-      'tuquota' => '0',
379
-      'extensions' => 'gif png jpg jpeg',
380
-      'dimensions' => '800x600',
381
-      'filenum' => '1',
382
-      'directories' => array(
383
-        0 => array(
384
-          'name' => 'u%uid',
385
-          'subnav' => 0,
386
-          'browse' => 1,
387
-          'upload' => 1,
388
-          'thumb' => 1,
389
-          'delete' => 0,
390
-          'resize' => 0,
391
-        ),
392
-      ),
393
-      'thumbnails' => array(
394
-        0 => array(
395
-          'name' => 'Small',
396
-          'dimensions' => '90x90',
397
-          'prefix' => 'small_',
398
-          'suffix' => '',
399
-        ),
400
-        1 => array(
401
-          'name' => 'Medium',
402
-          'dimensions' => '120x120',
403
-          'prefix' => 'medium_',
404
-          'suffix' => '',
405
-        ),
406
-        2 => array(
407
-          'name' => 'Large',
408
-          'dimensions' => '180x180',
409
-          'prefix' => 'large_',
410
-          'suffix' => '',
411
-        ),
412
-      ),
413
-    ),
414
-  );
415
-  $export['imce_profiles'] = $strongarm;
416
-
417
-  $strongarm = new stdClass;
418
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
419
-  $strongarm->api_version = 1;
420
-  $strongarm->name = 'imce_roles_profiles';
421
-  $strongarm->value = array(
422
-    3519698132 => array(
423
-      'weight' => '0',
424
-      'pid' => '0',
425
-    ),
426
-    1110965548 => array(
427
-      'weight' => '0',
428
-      'pid' => '0',
429
-    ),
430
-    268174006 => array(
431
-      'weight' => '0',
432
-      'pid' => '0',
433
-    ),
434
-    2938987599 => array(
435
-      'weight' => '0',
436
-      'pid' => '3',
437
-    ),
438
-    1257454314 => array(
439
-      'weight' => '0',
440
-      'pid' => '0',
441
-    ),
442
-    1271379760 => array(
443
-      'weight' => '0',
444
-      'pid' => '0',
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 = 'bbcode_debug_4';
20
+$strongarm->value = '0';
21
+$export['bbcode_debug_4'] = $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 = 'bbcode_debug_6';
27
+$strongarm->value = '0';
28
+$export['bbcode_debug_6'] = $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 = 'bbcode_encode_mailto_4';
34
+$strongarm->value = '1';
35
+$export['bbcode_encode_mailto_4'] = $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 = 'bbcode_encode_mailto_6';
41
+$strongarm->value = '1';
42
+$export['bbcode_encode_mailto_6'] = $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 = 'bbcode_filter_nofollow_4';
48
+$strongarm->value = '0';
49
+$export['bbcode_filter_nofollow_4'] = $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 = 'bbcode_filter_nofollow_6';
55
+$strongarm->value = '0';
56
+$export['bbcode_filter_nofollow_6'] = $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 = 'bbcode_make_links_4';
62
+$strongarm->value = '1';
63
+$export['bbcode_make_links_4'] = $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 = 'bbcode_make_links_6';
69
+$strongarm->value = '1';
70
+$export['bbcode_make_links_6'] = $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 = 'bbcode_paragraph_breaks_4';
76
+$strongarm->value = '2';
77
+$export['bbcode_paragraph_breaks_4'] = $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 = 'bbcode_paragraph_breaks_6';
83
+$strongarm->value = '2';
84
+$export['bbcode_paragraph_breaks_6'] = $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 = 'boinctranslate_filter_debug_4';
90
+$strongarm->value = '0';
91
+$export['boinctranslate_filter_debug_4'] = $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 = 'boinctranslate_filter_nodetypes';
97
+$strongarm->value = array(
98
+'page' => 'page',
99
+'story' => 'story',
100
+'news' => 0,
101
+);
102
+$export['boinctranslate_filter_nodetypes'] = $strongarm;
103
+
104
+$strongarm = new stdClass;
105
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
106
+$strongarm->api_version = 1;
107
+$strongarm->name = 'comment_anonymous_page';
108
+$strongarm->value = 0;
109
+$export['comment_anonymous_page'] = $strongarm;
110
+
111
+$strongarm = new stdClass;
112
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
113
+$strongarm->api_version = 1;
114
+$strongarm->name = 'comment_controls_page';
115
+$strongarm->value = '3';
116
+$export['comment_controls_page'] = $strongarm;
117
+
118
+$strongarm = new stdClass;
119
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
120
+$strongarm->api_version = 1;
121
+$strongarm->name = 'comment_default_mode_page';
122
+$strongarm->value = '4';
123
+$export['comment_default_mode_page'] = $strongarm;
124
+
125
+$strongarm = new stdClass;
126
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
127
+$strongarm->api_version = 1;
128
+$strongarm->name = 'comment_default_order_page';
129
+$strongarm->value = '1';
130
+$export['comment_default_order_page'] = $strongarm;
131
+
132
+$strongarm = new stdClass;
133
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
134
+$strongarm->api_version = 1;
135
+$strongarm->name = 'comment_default_per_page_page';
136
+$strongarm->value = '50';
137
+$export['comment_default_per_page_page'] = $strongarm;
138
+
139
+$strongarm = new stdClass;
140
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
141
+$strongarm->api_version = 1;
142
+$strongarm->name = 'comment_form_location_page';
143
+$strongarm->value = '0';
144
+$export['comment_form_location_page'] = $strongarm;
145
+
146
+$strongarm = new stdClass;
147
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
148
+$strongarm->api_version = 1;
149
+$strongarm->name = 'comment_page';
150
+$strongarm->value = 0;
151
+$export['comment_page'] = $strongarm;
152
+
153
+$strongarm = new stdClass;
154
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
155
+$strongarm->api_version = 1;
156
+$strongarm->name = 'comment_preview_page';
157
+$strongarm->value = '1';
158
+$export['comment_preview_page'] = $strongarm;
159
+
160
+$strongarm = new stdClass;
161
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
162
+$strongarm->api_version = 1;
163
+$strongarm->name = 'comment_subject_field_page';
164
+$strongarm->value = '1';
165
+$export['comment_subject_field_page'] = $strongarm;
166
+
167
+$strongarm = new stdClass;
168
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
169
+$strongarm->api_version = 1;
170
+$strongarm->name = 'content_extra_weights_page';
171
+$strongarm->value = array(
172
+'apachesolr' => '100',
173
+'title' => '-5',
174
+'body_field' => '0',
175
+'revision_information' => '20',
176
+'author' => '20',
177
+'options' => '25',
178
+'comment_settings' => '30',
179
+'language' => '0',
180
+'translation' => '30',
181
+'menu' => '-2',
182
+'path' => '30',
183
+'attachments' => '30',
184
+);
185
+$export['content_extra_weights_page'] = $strongarm;
186
+
187
+$strongarm = new stdClass;
188
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
189
+$strongarm->api_version = 1;
190
+$strongarm->name = 'error_level';
191
+$strongarm->value = '0';
192
+$export['error_level'] = $strongarm;
193
+
194
+$strongarm = new stdClass;
195
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
196
+$strongarm->api_version = 1;
197
+$strongarm->name = 'filter_default_format';
198
+$strongarm->value = '4';
199
+$export['filter_default_format'] = $strongarm;
200
+
201
+$strongarm = new stdClass;
202
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
203
+$strongarm->api_version = 1;
204
+$strongarm->name = 'filter_pathologic_absolute_4';
205
+$strongarm->value = 1;
206
+$export['filter_pathologic_absolute_4'] = $strongarm;
207
+
208
+$strongarm = new stdClass;
209
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
210
+$strongarm->api_version = 1;
211
+$strongarm->name = 'filter_pathologic_absolute_6';
212
+$strongarm->value = 1;
213
+$export['filter_pathologic_absolute_6'] = $strongarm;
214
+
215
+$strongarm = new stdClass;
216
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
217
+$strongarm->api_version = 1;
218
+$strongarm->name = 'filter_pathologic_local_paths_4';
219
+$strongarm->value = '/';
220
+$export['filter_pathologic_local_paths_4'] = $strongarm;
221
+
222
+$strongarm = new stdClass;
223
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
224
+$strongarm->api_version = 1;
225
+$strongarm->name = 'filter_pathologic_local_paths_6';
226
+$strongarm->value = '/';
227
+$export['filter_pathologic_local_paths_6'] = $strongarm;
228
+
229
+$strongarm = new stdClass;
230
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
231
+$strongarm->api_version = 1;
232
+$strongarm->name = 'format';
233
+$strongarm->value = '4';
234
+$export['format'] = $strongarm;
235
+
236
+$strongarm = new stdClass;
237
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
238
+$strongarm->api_version = 1;
239
+$strongarm->name = 'htmlpurifier_clear_cache';
240
+$strongarm->value = 'Clear cache (Warning: Can result in performance degradation)';
241
+$export['htmlpurifier_clear_cache'] = $strongarm;
242
+
243
+$strongarm = new stdClass;
244
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
245
+$strongarm->api_version = 1;
246
+$strongarm->name = 'htmlpurifier_config_4';
247
+$strongarm->value = array(
248
+'Attr.EnableID' => '0',
249
+'AutoFormat.AutoParagraph' => '1',
250
+'AutoFormat.Linkify' => '1',
251
+'AutoFormat.RemoveEmpty' => '0',
252
+'Null_HTML.Allowed' => '1',
253
+'HTML.ForbiddenAttributes' => '',
254
+'HTML.ForbiddenElements' => '',
255
+'HTML.SafeObject' => '0',
256
+'Output.FlashCompat' => '0',
257
+'URI.DisableExternalResources' => '0',
258
+'URI.DisableResources' => '0',
259
+'Null_URI.Munge' => '1',
260
+);
261
+$export['htmlpurifier_config_4'] = $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 = 'htmlpurifier_help_4';
267
+$strongarm->value = 1;
268
+$export['htmlpurifier_help_4'] = $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 = 'htmlpurifier_help_6';
274
+$strongarm->value = 1;
275
+$export['htmlpurifier_help_6'] = $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 = 'htmlpurifier_version_check_failed';
281
+$strongarm->value = FALSE;
282
+$export['htmlpurifier_version_check_failed'] = $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 = 'htmlpurifier_version_current';
288
+$strongarm->value = '4.9.1';
289
+$export['htmlpurifier_version_current'] = $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 = 'htmlpurifier_version_ours';
295
+$strongarm->value = '4.10.0';
296
+$export['htmlpurifier_version_ours'] = $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 = 'imce_profiles';
302
+$strongarm->value = array(
303
+1 => array(
304
+  'name' => 'User-1',
305
+  'usertab' => 1,
306
+  'filesize' => 0,
307
+  'quota' => 0,
308
+  'tuquota' => 0,
309
+  'extensions' => '*',
310
+  'dimensions' => '1200x1200',
311
+  'filenum' => 0,
312
+  'directories' => array(
313
+    0 => array(
314
+      'name' => '.',
315
+      'subnav' => 1,
316
+      'browse' => 1,
317
+      'upload' => 1,
318
+      'thumb' => 1,
319
+      'delete' => 1,
320
+      'resize' => 1,
321
+    ),
322
+  ),
323
+  'thumbnails' => array(
324
+    0 => array(
325
+      'name' => 'Small',
326
+      'dimensions' => '90x90',
327
+      'prefix' => 'small_',
328
+      'suffix' => '',
445 329
     ),
446
-    933038561 => array(
447
-      'weight' => '0',
448
-      'pid' => '0',
330
+    1 => array(
331
+      'name' => 'Medium',
332
+      'dimensions' => '120x120',
333
+      'prefix' => 'medium_',
334
+      'suffix' => '',
449 335
     ),
450 336
     2 => array(
451
-      'weight' => 11,
452
-      'pid' => '0',
337
+      'name' => 'Large',
338
+      'dimensions' => '180x180',
339
+      'prefix' => 'large_',
340
+      'suffix' => '',
341
+    ),
342
+  ),
343
+),
344
+2 => array(
345
+  'name' => 'Sample profile',
346
+  'usertab' => 1,
347
+  'filesize' => 1,
348
+  'quota' => 2,
349
+  'tuquota' => 0,
350
+  'extensions' => 'gif png jpg jpeg',
351
+  'dimensions' => '800x600',
352
+  'filenum' => 1,
353
+  'directories' => array(
354
+    0 => array(
355
+      'name' => 'u%uid',
356
+      'subnav' => 0,
357
+      'browse' => 1,
358
+      'upload' => 1,
359
+      'thumb' => 1,
360
+      'delete' => 0,
361
+      'resize' => 0,
362
+    ),
363
+  ),
364
+  'thumbnails' => array(
365
+    0 => array(
366
+      'name' => 'Thumb',
367
+      'dimensions' => '90x90',
368
+      'prefix' => 'thumb_',
369
+      'suffix' => '',
370
+    ),
371
+  ),
372
+),
373
+3 => array(
374
+  'name' => 'Editor',
375
+  'usertab' => 1,
376
+  'filesize' => '1',
377
+  'quota' => '2',
378
+  'tuquota' => '0',
379
+  'extensions' => 'gif png jpg jpeg',
380
+  'dimensions' => '800x600',
381
+  'filenum' => '1',
382
+  'directories' => array(
383
+    0 => array(
384
+      'name' => 'u%uid',
385
+      'subnav' => 0,
386
+      'browse' => 1,
387
+      'upload' => 1,
388
+      'thumb' => 1,
389
+      'delete' => 0,
390
+      'resize' => 0,
391
+    ),
392
+  ),
393
+  'thumbnails' => array(
394
+    0 => array(
395
+      'name' => 'Small',
396
+      'dimensions' => '90x90',
397
+      'prefix' => 'small_',
398
+      'suffix' => '',
453 399
     ),
454 400
     1 => array(
455
-      'weight' => 12,
456
-      'pid' => '0',
457
-    ),
458
-  );
459
-  $export['imce_roles_profiles'] = $strongarm;
460
-
461
-  $strongarm = new stdClass;
462
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
463
-  $strongarm->api_version = 1;
464
-  $strongarm->name = 'language_content_type_page';
465
-  $strongarm->value = '2';
466
-  $export['language_content_type_page'] = $strongarm;
467
-
468
-  $strongarm = new stdClass;
469
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
470
-  $strongarm->api_version = 1;
471
-  $strongarm->name = 'menu_block_1_admin_title';
472
-  $strongarm->value = 'Tertiary menu';
473
-  $export['menu_block_1_admin_title'] = $strongarm;
474
-
475
-  $strongarm = new stdClass;
476
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
477
-  $strongarm->api_version = 1;
478
-  $strongarm->name = 'menu_block_1_depth';
479
-  $strongarm->value = '0';
480
-  $export['menu_block_1_depth'] = $strongarm;
481
-
482
-  $strongarm = new stdClass;
483
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
484
-  $strongarm->api_version = 1;
485
-  $strongarm->name = 'menu_block_1_expanded';
486
-  $strongarm->value = 0;
487
-  $export['menu_block_1_expanded'] = $strongarm;
488
-
489
-  $strongarm = new stdClass;
490
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
491
-  $strongarm->api_version = 1;
492
-  $strongarm->name = 'menu_block_1_follow';
493
-  $strongarm->value = 0;
494
-  $export['menu_block_1_follow'] = $strongarm;
495
-
496
-  $strongarm = new stdClass;
497
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
498
-  $strongarm->api_version = 1;
499
-  $strongarm->name = 'menu_block_1_level';
500
-  $strongarm->value = '3';
501
-  $export['menu_block_1_level'] = $strongarm;
502
-
503
-  $strongarm = new stdClass;
504
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
505
-  $strongarm->api_version = 1;
506
-  $strongarm->name = 'menu_block_1_parent';
507
-  $strongarm->value = 'primary-links:0';
508
-  $export['menu_block_1_parent'] = $strongarm;
509
-
510
-  $strongarm = new stdClass;
511
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
512
-  $strongarm->api_version = 1;
513
-  $strongarm->name = 'menu_block_1_sort';
514
-  $strongarm->value = 0;
515
-  $export['menu_block_1_sort'] = $strongarm;
516
-
517
-  $strongarm = new stdClass;
518
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
519
-  $strongarm->api_version = 1;
520
-  $strongarm->name = 'menu_block_1_title_link';
521
-  $strongarm->value = 0;
522
-  $export['menu_block_1_title_link'] = $strongarm;
523
-
524
-  $strongarm = new stdClass;
525
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
526
-  $strongarm->api_version = 1;
527
-  $strongarm->name = 'menu_block_ids';
528
-  $strongarm->value = array(
529
-    0 => 1,
530
-  );
531
-  $export['menu_block_ids'] = $strongarm;
532
-
533
-  $strongarm = new stdClass;
534
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
535
-  $strongarm->api_version = 1;
536
-  $strongarm->name = 'menu_default_node_menu';
537
-  $strongarm->value = 'primary-links';
538
-  $export['menu_default_node_menu'] = $strongarm;
539
-
540
-  $strongarm = new stdClass;
541
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
542
-  $strongarm->api_version = 1;
543
-  $strongarm->name = 'menu_expanded';
544
-  $strongarm->value = array(
545
-    0 => 'primary-links',
546
-  );
547
-  $export['menu_expanded'] = $strongarm;
548
-
549
-  $strongarm = new stdClass;
550
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
551
-  $strongarm->api_version = 1;
552
-  $strongarm->name = 'menu_primary_links_source';
553
-  $strongarm->value = 'primary-links';
554
-  $export['menu_primary_links_source'] = $strongarm;
555
-
556
-  $strongarm = new stdClass;
557
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
558
-  $strongarm->api_version = 1;
559
-  $strongarm->name = 'menu_secondary_links_source';
560
-  $strongarm->value = 'primary-links';
561
-  $export['menu_secondary_links_source'] = $strongarm;
562
-
563
-  $strongarm = new stdClass;
564
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
565
-  $strongarm->api_version = 1;
566
-  $strongarm->name = 'node_admin_theme';
567
-  $strongarm->value = 0;
568
-  $export['node_admin_theme'] = $strongarm;
569
-
570
-  $strongarm = new stdClass;
571
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
572
-  $strongarm->api_version = 1;
573
-  $strongarm->name = 'node_options_page';
574
-  $strongarm->value = array(
575
-    0 => 'status',
576
-  );
577
-  $export['node_options_page'] = $strongarm;
578
-
579
-  $strongarm = new stdClass;
580
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
581
-  $strongarm->api_version = 1;
582
-  $strongarm->name = 'page_manager_user_view_disabled';
583
-  $strongarm->value = FALSE;
584
-  $export['page_manager_user_view_disabled'] = $strongarm;
585
-
586
-  $strongarm = new stdClass;
587
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
588
-  $strongarm->api_version = 1;
589
-  $strongarm->name = 'panels_legacy_rendering_mode';
590
-  $strongarm->value = FALSE;
591
-  $export['panels_legacy_rendering_mode'] = $strongarm;
592
-
593
-  $strongarm = new stdClass;
594
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
595
-  $strongarm->api_version = 1;
596
-  $strongarm->name = 'pathauto_ignore_words';
597
-  $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';
598
-  $export['pathauto_ignore_words'] = $strongarm;
599
-
600
-  $strongarm = new stdClass;
601
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
602
-  $strongarm->api_version = 1;
603
-  $strongarm->name = 'pathauto_indexaliases';
604
-  $strongarm->value = FALSE;
605
-  $export['pathauto_indexaliases'] = $strongarm;
606
-
607
-  $strongarm = new stdClass;
608
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
609
-  $strongarm->api_version = 1;
610
-  $strongarm->name = 'pathauto_indexaliases_bulkupdate';
611
-  $strongarm->value = FALSE;
612
-  $export['pathauto_indexaliases_bulkupdate'] = $strongarm;
613
-
614
-  $strongarm = new stdClass;
615
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
616
-  $strongarm->api_version = 1;
617
-  $strongarm->name = 'pathauto_max_component_length';
618
-  $strongarm->value = '100';
619
-  $export['pathauto_max_component_length'] = $strongarm;
620
-
621
-  $strongarm = new stdClass;
622
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
623
-  $strongarm->api_version = 1;
624
-  $strongarm->name = 'pathauto_max_length';
625
-  $strongarm->value = '100';
626
-  $export['pathauto_max_length'] = $strongarm;
627
-
628
-  $strongarm = new stdClass;
629
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
630
-  $strongarm->api_version = 1;
631
-  $strongarm->name = 'pathauto_modulelist';
632
-  $strongarm->value = array(
633
-    0 => 'node',
634
-    1 => 'user',
635
-    2 => 'taxonomy',
636
-  );
637
-  $export['pathauto_modulelist'] = $strongarm;
638
-
639
-  $strongarm = new stdClass;
640
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
641
-  $strongarm->api_version = 1;
642
-  $strongarm->name = 'pathauto_node_applytofeeds';
643
-  $strongarm->value = '';
644
-  $export['pathauto_node_applytofeeds'] = $strongarm;
645
-
646
-  $strongarm = new stdClass;
647
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
648
-  $strongarm->api_version = 1;
649
-  $strongarm->name = 'pathauto_node_bulkupdate';
650
-  $strongarm->value = FALSE;
651
-  $export['pathauto_node_bulkupdate'] = $strongarm;
652
-
653
-  $strongarm = new stdClass;
654
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
655
-  $strongarm->api_version = 1;
656
-  $strongarm->name = 'pathauto_node_image_pattern';
657
-  $strongarm->value = '';
658
-  $export['pathauto_node_image_pattern'] = $strongarm;
659
-
660
-  $strongarm = new stdClass;
661
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
662
-  $strongarm->api_version = 1;
663
-  $strongarm->name = 'pathauto_node_page_pattern';
664
-  $strongarm->value = '';
665
-  $export['pathauto_node_page_pattern'] = $strongarm;
666
-
667
-  $strongarm = new stdClass;
668
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
669
-  $strongarm->api_version = 1;
670
-  $strongarm->name = 'pathauto_node_pattern';
671
-  $strongarm->value = 'content/[title-raw]';
672
-  $export['pathauto_node_pattern'] = $strongarm;
673
-
674
-  $strongarm = new stdClass;
675
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
676
-  $strongarm->api_version = 1;
677
-  $strongarm->name = 'pathauto_node_story_pattern';
678
-  $strongarm->value = '';
679
-  $export['pathauto_node_story_pattern'] = $strongarm;
680
-
681
-  $strongarm = new stdClass;
682
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
683
-  $strongarm->api_version = 1;
684
-  $strongarm->name = 'pathauto_punctuation_hyphen';
685
-  $strongarm->value = 1;
686
-  $export['pathauto_punctuation_hyphen'] = $strongarm;
687
-
688
-  $strongarm = new stdClass;
689
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
690
-  $strongarm->api_version = 1;
691
-  $strongarm->name = 'pathauto_punctuation_quotes';
692
-  $strongarm->value = 0;
693
-  $export['pathauto_punctuation_quotes'] = $strongarm;
694
-
695
-  $strongarm = new stdClass;
696
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
697
-  $strongarm->api_version = 1;
698
-  $strongarm->name = 'pathauto_separator';
699
-  $strongarm->value = '-';
700
-  $export['pathauto_separator'] = $strongarm;
701
-
702
-  $strongarm = new stdClass;
703
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
704
-  $strongarm->api_version = 1;
705
-  $strongarm->name = 'pathauto_taxonomy_2_pattern';
706
-  $strongarm->value = '';
707
-  $export['pathauto_taxonomy_2_pattern'] = $strongarm;
708
-
709
-  $strongarm = new stdClass;
710
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
711
-  $strongarm->api_version = 1;
712
-  $strongarm->name = 'pathauto_taxonomy_applytofeeds';
713
-  $strongarm->value = FALSE;
714
-  $export['pathauto_taxonomy_applytofeeds'] = $strongarm;
715
-
716
-  $strongarm = new stdClass;
717
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
718
-  $strongarm->api_version = 1;
719
-  $strongarm->name = 'pathauto_taxonomy_bulkupdate';
720
-  $strongarm->value = FALSE;
721
-  $export['pathauto_taxonomy_bulkupdate'] = $strongarm;
722
-
723
-  $strongarm = new stdClass;
724
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
725
-  $strongarm->api_version = 1;
726
-  $strongarm->name = 'pathauto_taxonomy_pattern';
727
-  $strongarm->value = 'category/[vocab-raw]/[catpath-raw]';
728
-  $export['pathauto_taxonomy_pattern'] = $strongarm;
729
-
730
-  $strongarm = new stdClass;
731
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
732
-  $strongarm->api_version = 1;
733
-  $strongarm->name = 'pathauto_taxonomy_supportsfeeds';
734
-  $strongarm->value = '0/feed';
735
-  $export['pathauto_taxonomy_supportsfeeds'] = $strongarm;
736
-
737
-  $strongarm = new stdClass;
738
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
739
-  $strongarm->api_version = 1;
740
-  $strongarm->name = 'pathauto_update_action';
741
-  $strongarm->value = '2';
742
-  $export['pathauto_update_action'] = $strongarm;
743
-
744
-  $strongarm = new stdClass;
745
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
746
-  $strongarm->api_version = 1;
747
-  $strongarm->name = 'pathauto_user_bulkupdate';
748
-  $strongarm->value = FALSE;
749
-  $export['pathauto_user_bulkupdate'] = $strongarm;
750
-
751
-  $strongarm = new stdClass;
752
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
753
-  $strongarm->api_version = 1;
754
-  $strongarm->name = 'pathauto_user_pattern';
755
-  $strongarm->value = 'users/[user-raw]';
756
-  $export['pathauto_user_pattern'] = $strongarm;
757
-
758
-  $strongarm = new stdClass;
759
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
760
-  $strongarm->api_version = 1;
761
-  $strongarm->name = 'pathauto_user_supportsfeeds';
762
-  $strongarm->value = '';
763
-  $export['pathauto_user_supportsfeeds'] = $strongarm;
764
-
765
-  $strongarm = new stdClass;
766
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
767
-  $strongarm->api_version = 1;
768
-  $strongarm->name = 'pathauto_verbose';
769
-  $strongarm->value = FALSE;
770
-  $export['pathauto_verbose'] = $strongarm;
771
-
772
-  $strongarm = new stdClass;
773
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
774
-  $strongarm->api_version = 1;
775
-  $strongarm->name = 'site_frontpage';
776
-  $strongarm->value = 'home';
777
-  $export['site_frontpage'] = $strongarm;
778
-
779
-  $strongarm = new stdClass;
780
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
781
-  $strongarm->api_version = 1;
782
-  $strongarm->name = 'tableofcontents_allowed_tags_4';
783
-  $strongarm->value = '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>';
784
-  $export['tableofcontents_allowed_tags_4'] = $strongarm;
785
-
786
-  $strongarm = new stdClass;
787
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
788
-  $strongarm->api_version = 1;
789
-  $strongarm->name = 'tableofcontents_allowed_tags_6';
790
-  $strongarm->value = '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>';
791
-  $export['tableofcontents_allowed_tags_6'] = $strongarm;
792
-
793
-  $strongarm = new stdClass;
794
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
795
-  $strongarm->api_version = 1;
796
-  $strongarm->name = 'tableofcontents_allow_override_4';
797
-  $strongarm->value = 1;
798
-  $export['tableofcontents_allow_override_4'] = $strongarm;
799
-
800
-  $strongarm = new stdClass;
801
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
802
-  $strongarm->api_version = 1;
803
-  $strongarm->name = 'tableofcontents_allow_override_6';
804
-  $strongarm->value = 1;
805
-  $export['tableofcontents_allow_override_6'] = $strongarm;
806
-
807
-  $strongarm = new stdClass;
808
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
809
-  $strongarm->api_version = 1;
810
-  $strongarm->name = 'tableofcontents_attachments_4';
811
-  $strongarm->value = 0;
812
-  $export['tableofcontents_attachments_4'] = $strongarm;
813
-
814
-  $strongarm = new stdClass;
815
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
816
-  $strongarm->api_version = 1;
817
-  $strongarm->name = 'tableofcontents_automatic_4';
818
-  $strongarm->value = '0';
819
-  $export['tableofcontents_automatic_4'] = $strongarm;
820
-
821
-  $strongarm = new stdClass;
822
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
823
-  $strongarm->api_version = 1;
824
-  $strongarm->name = 'tableofcontents_automatic_6';
825
-  $strongarm->value = '0';
826
-  $export['tableofcontents_automatic_6'] = $strongarm;
827
-
828
-  $strongarm = new stdClass;
829
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
830
-  $strongarm->api_version = 1;
831
-  $strongarm->name = 'tableofcontents_back_to_top_4';
832
-  $strongarm->value = '';
833
-  $export['tableofcontents_back_to_top_4'] = $strongarm;
834
-
835
-  $strongarm = new stdClass;
836
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
837
-  $strongarm->api_version = 1;
838
-  $strongarm->name = 'tableofcontents_back_to_top_6';
839
-  $strongarm->value = '';
840
-  $export['tableofcontents_back_to_top_6'] = $strongarm;
841
-
842
-  $strongarm = new stdClass;
843
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
844
-  $strongarm->api_version = 1;
845
-  $strongarm->name = 'tableofcontents_back_to_top_anchor_4';
846
-  $strongarm->value = 'toc';
847
-  $export['tableofcontents_back_to_top_anchor_4'] = $strongarm;
848
-
849
-  $strongarm = new stdClass;
850
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
851
-  $strongarm->api_version = 1;
852
-  $strongarm->name = 'tableofcontents_back_to_top_anchor_6';
853
-  $strongarm->value = 'toc';
854
-  $export['tableofcontents_back_to_top_anchor_6'] = $strongarm;
855
-
856
-  $strongarm = new stdClass;
857
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
858
-  $strongarm->api_version = 1;
859
-  $strongarm->name = 'tableofcontents_back_to_top_location_4';
860
-  $strongarm->value = 'bottom';
861
-  $export['tableofcontents_back_to_top_location_4'] = $strongarm;
862
-
863
-  $strongarm = new stdClass;
864
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
865
-  $strongarm->api_version = 1;
866
-  $strongarm->name = 'tableofcontents_back_to_top_location_6';
867
-  $strongarm->value = 'bottom';
868
-  $export['tableofcontents_back_to_top_location_6'] = $strongarm;
869
-
870
-  $strongarm = new stdClass;
871
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
872
-  $strongarm->api_version = 1;
873
-  $strongarm->name = 'tableofcontents_back_to_top_maxlevel_4';
874
-  $strongarm->value = '4';
875
-  $export['tableofcontents_back_to_top_maxlevel_4'] = $strongarm;
876
-
877
-  $strongarm = new stdClass;
878
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
879
-  $strongarm->api_version = 1;
880
-  $strongarm->name = 'tableofcontents_back_to_top_maxlevel_6';
881
-  $strongarm->value = '4';
882
-  $export['tableofcontents_back_to_top_maxlevel_6'] = $strongarm;
883
-
884
-  $strongarm = new stdClass;
885
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
886
-  $strongarm->api_version = 1;
887
-  $strongarm->name = 'tableofcontents_back_to_top_minlevel_4';
888
-  $strongarm->value = '2';
889
-  $export['tableofcontents_back_to_top_minlevel_4'] = $strongarm;
890
-
891
-  $strongarm = new stdClass;
892
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
893
-  $strongarm->api_version = 1;
894
-  $strongarm->name = 'tableofcontents_back_to_top_minlevel_6';
895
-  $strongarm->value = '2';
896
-  $export['tableofcontents_back_to_top_minlevel_6'] = $strongarm;
897
-
898
-  $strongarm = new stdClass;
899
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
900
-  $strongarm->api_version = 1;
901
-  $strongarm->name = 'tableofcontents_collapsed_4';
902
-  $strongarm->value = 0;
903
-  $export['tableofcontents_collapsed_4'] = $strongarm;
904
-
905
-  $strongarm = new stdClass;
906
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
907
-  $strongarm->api_version = 1;
908
-  $strongarm->name = 'tableofcontents_collapsed_6';
909
-  $strongarm->value = 0;
910
-  $export['tableofcontents_collapsed_6'] = $strongarm;
911
-
912
-  $strongarm = new stdClass;
913
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
914
-  $strongarm->api_version = 1;
915
-  $strongarm->name = 'tableofcontents_comments_4';
916
-  $strongarm->value = 0;
917
-  $export['tableofcontents_comments_4'] = $strongarm;
918
-
919
-  $strongarm = new stdClass;
920
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
921
-  $strongarm->api_version = 1;
922
-  $strongarm->name = 'tableofcontents_comments_6';
923
-  $strongarm->value = 0;
924
-  $export['tableofcontents_comments_6'] = $strongarm;
925
-
926
-  $strongarm = new stdClass;
927
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
928
-  $strongarm->api_version = 1;
929
-  $strongarm->name = 'tableofcontents_comments_level_4';
930
-  $strongarm->value = '3';
931
-  $export['tableofcontents_comments_level_4'] = $strongarm;
932
-
933
-  $strongarm = new stdClass;
934
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
935
-  $strongarm->api_version = 1;
936
-  $strongarm->name = 'tableofcontents_comments_level_6';
937
-  $strongarm->value = '3';
938
-  $export['tableofcontents_comments_level_6'] = $strongarm;
939
-
940
-  $strongarm = new stdClass;
941
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
942
-  $strongarm->api_version = 1;
943
-  $strongarm->name = 'tableofcontents_hide_show_4';
944
-  $strongarm->value = 1;
945
-  $export['tableofcontents_hide_show_4'] = $strongarm;
946
-
947
-  $strongarm = new stdClass;
948
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
949
-  $strongarm->api_version = 1;
950
-  $strongarm->name = 'tableofcontents_hide_show_6';
951
-  $strongarm->value = 1;
952
-  $export['tableofcontents_hide_show_6'] = $strongarm;
953
-
954
-  $strongarm = new stdClass;
955
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
956
-  $strongarm->api_version = 1;
957
-  $strongarm->name = 'tableofcontents_hide_table_4';
958
-  $strongarm->value = 0;
959
-  $export['tableofcontents_hide_table_4'] = $strongarm;
960
-
961
-  $strongarm = new stdClass;
962
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
963
-  $strongarm->api_version = 1;
964
-  $strongarm->name = 'tableofcontents_hide_table_6';
965
-  $strongarm->value = 0;
966
-  $export['tableofcontents_hide_table_6'] = $strongarm;
967
-
968
-  $strongarm = new stdClass;
969
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
970
-  $strongarm->api_version = 1;
971
-  $strongarm->name = 'tableofcontents_identifier_introducer_4';
972
-  $strongarm->value = 'header';
973
-  $export['tableofcontents_identifier_introducer_4'] = $strongarm;
974
-
975
-  $strongarm = new stdClass;
976
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
977
-  $strongarm->api_version = 1;
978
-  $strongarm->name = 'tableofcontents_identifier_introducer_6';
979
-  $strongarm->value = 'header';
980
-  $export['tableofcontents_identifier_introducer_6'] = $strongarm;
981
-
982
-  $strongarm = new stdClass;
983
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
984
-  $strongarm->api_version = 1;
985
-  $strongarm->name = 'tableofcontents_id_generator_4';
986
-  $strongarm->value = 'title';
987
-  $export['tableofcontents_id_generator_4'] = $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 = 'tableofcontents_id_generator_6';
993
-  $strongarm->value = 'title';
994
-  $export['tableofcontents_id_generator_6'] = $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 = 'tableofcontents_id_separator_4';
1000
-  $strongarm->value = '-';
1001
-  $export['tableofcontents_id_separator_4'] = $strongarm;
1002
-
1003
-  $strongarm = new stdClass;
1004
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1005
-  $strongarm->api_version = 1;
1006
-  $strongarm->name = 'tableofcontents_id_separator_6';
1007
-  $strongarm->value = '-';
1008
-  $export['tableofcontents_id_separator_6'] = $strongarm;
1009
-
1010
-  $strongarm = new stdClass;
1011
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1012
-  $strongarm->api_version = 1;
1013
-  $strongarm->name = 'tableofcontents_id_stripping_4';
1014
-  $strongarm->value = array(
1015
-    'digits' => 0,
1016
-    'dashes' => 0,
1017
-    'periods' => 0,
1018
-    'underscores' => 0,
1019
-    'colons' => 0,
1020
-  );
1021
-  $export['tableofcontents_id_stripping_4'] = $strongarm;
1022
-
1023
-  $strongarm = new stdClass;
1024
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1025
-  $strongarm->api_version = 1;
1026
-  $strongarm->name = 'tableofcontents_id_stripping_6';
1027
-  $strongarm->value = array(
1028
-    'digits' => 0,
1029
-    'dashes' => 0,
1030
-    'periods' => 0,
1031
-    'underscores' => 0,
1032
-    'colons' => 0,
1033
-  );
1034
-  $export['tableofcontents_id_stripping_6'] = $strongarm;
1035
-
1036
-  $strongarm = new stdClass;
1037
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1038
-  $strongarm->api_version = 1;
1039
-  $strongarm->name = 'tableofcontents_maxlevel_4';
1040
-  $strongarm->value = '3';
1041
-  $export['tableofcontents_maxlevel_4'] = $strongarm;
1042
-
1043
-  $strongarm = new stdClass;
1044
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1045
-  $strongarm->api_version = 1;
1046
-  $strongarm->name = 'tableofcontents_maxlevel_6';
1047
-  $strongarm->value = '3';
1048
-  $export['tableofcontents_maxlevel_6'] = $strongarm;
1049
-
1050
-  $strongarm = new stdClass;
1051
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1052
-  $strongarm->api_version = 1;
1053
-  $strongarm->name = 'tableofcontents_minlevel_4';
1054
-  $strongarm->value = '2';
1055
-  $export['tableofcontents_minlevel_4'] = $strongarm;
1056
-
1057
-  $strongarm = new stdClass;
1058
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1059
-  $strongarm->api_version = 1;
1060
-  $strongarm->name = 'tableofcontents_minlevel_6';
1061
-  $strongarm->value = '2';
1062
-  $export['tableofcontents_minlevel_6'] = $strongarm;
1063
-
1064
-  $strongarm = new stdClass;
1065
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1066
-  $strongarm->api_version = 1;
1067
-  $strongarm->name = 'tableofcontents_min_limit_4';
1068
-  $strongarm->value = '5';
1069
-  $export['tableofcontents_min_limit_4'] = $strongarm;
1070
-
1071
-  $strongarm = new stdClass;
1072
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1073
-  $strongarm->api_version = 1;
1074
-  $strongarm->name = 'tableofcontents_min_limit_6';
1075
-  $strongarm->value = '5';
1076
-  $export['tableofcontents_min_limit_6'] = $strongarm;
1077
-
1078
-  $strongarm = new stdClass;
1079
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1080
-  $strongarm->api_version = 1;
1081
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_';
1082
-  $strongarm->value = '0';
1083
-  $export['tableofcontents_nodetype_toc_automatic_'] = $strongarm;
1084
-
1085
-  $strongarm = new stdClass;
1086
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1087
-  $strongarm->api_version = 1;
1088
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_forum';
1089
-  $strongarm->value = '0';
1090
-  $export['tableofcontents_nodetype_toc_automatic_forum'] = $strongarm;
1091
-
1092
-  $strongarm = new stdClass;
1093
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1094
-  $strongarm->api_version = 1;
1095
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_profile';
1096
-  $strongarm->value = '0';
1097
-  $export['tableofcontents_nodetype_toc_automatic_profile'] = $strongarm;
1098
-
1099
-  $strongarm = new stdClass;
1100
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1101
-  $strongarm->api_version = 1;
1102
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_team';
1103
-  $strongarm->value = '0';
1104
-  $export['tableofcontents_nodetype_toc_automatic_team'] = $strongarm;
1105
-
1106
-  $strongarm = new stdClass;
1107
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1108
-  $strongarm->api_version = 1;
1109
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_team_forum';
1110
-  $strongarm->value = '0';
1111
-  $export['tableofcontents_nodetype_toc_automatic_team_forum'] = $strongarm;
1112
-
1113
-  $strongarm = new stdClass;
1114
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1115
-  $strongarm->api_version = 1;
1116
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_';
1117
-  $strongarm->value = 1;
1118
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_'] = $strongarm;
1119
-
1120
-  $strongarm = new stdClass;
1121
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1122
-  $strongarm->api_version = 1;
1123
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_forum';
1124
-  $strongarm->value = 1;
1125
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_forum'] = $strongarm;
1126
-
1127
-  $strongarm = new stdClass;
1128
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1129
-  $strongarm->api_version = 1;
1130
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_profile';
1131
-  $strongarm->value = 1;
1132
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_profile'] = $strongarm;
1133
-
1134
-  $strongarm = new stdClass;
1135
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1136
-  $strongarm->api_version = 1;
1137
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_team';
1138
-  $strongarm->value = 1;
1139
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_team'] = $strongarm;
1140
-
1141
-  $strongarm = new stdClass;
1142
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1143
-  $strongarm->api_version = 1;
1144
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_team_forum';
1145
-  $strongarm->value = 1;
1146
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_team_forum'] = $strongarm;
1147
-
1148
-  $strongarm = new stdClass;
1149
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1150
-  $strongarm->api_version = 1;
1151
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_';
1152
-  $strongarm->value = 0;
1153
-  $export['tableofcontents_nodetype_toc_vtoc_'] = $strongarm;
1154
-
1155
-  $strongarm = new stdClass;
1156
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1157
-  $strongarm->api_version = 1;
1158
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_forum';
1159
-  $strongarm->value = 0;
1160
-  $export['tableofcontents_nodetype_toc_vtoc_forum'] = $strongarm;
1161
-
1162
-  $strongarm = new stdClass;
1163
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1164
-  $strongarm->api_version = 1;
1165
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_profile';
1166
-  $strongarm->value = 0;
1167
-  $export['tableofcontents_nodetype_toc_vtoc_profile'] = $strongarm;
1168
-
1169
-  $strongarm = new stdClass;
1170
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1171
-  $strongarm->api_version = 1;
1172
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_team';
1173
-  $strongarm->value = 0;
1174
-  $export['tableofcontents_nodetype_toc_vtoc_team'] = $strongarm;
1175
-
1176
-  $strongarm = new stdClass;
1177
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1178
-  $strongarm->api_version = 1;
1179
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_team_forum';
1180
-  $strongarm->value = 0;
1181
-  $export['tableofcontents_nodetype_toc_vtoc_team_forum'] = $strongarm;
1182
-
1183
-  $strongarm = new stdClass;
1184
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1185
-  $strongarm->api_version = 1;
1186
-  $strongarm->name = 'tableofcontents_numbering_4';
1187
-  $strongarm->value = '0';
1188
-  $export['tableofcontents_numbering_4'] = $strongarm;
1189
-
1190
-  $strongarm = new stdClass;
1191
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1192
-  $strongarm->api_version = 1;
1193
-  $strongarm->name = 'tableofcontents_numbering_6';
1194
-  $strongarm->value = '0';
1195
-  $export['tableofcontents_numbering_6'] = $strongarm;
1196
-
1197
-  $strongarm = new stdClass;
1198
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1199
-  $strongarm->api_version = 1;
1200
-  $strongarm->name = 'tableofcontents_number_end_letter_4';
1201
-  $strongarm->value = '.';
1202
-  $export['tableofcontents_number_end_letter_4'] = $strongarm;
1203
-
1204
-  $strongarm = new stdClass;
1205
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1206
-  $strongarm->api_version = 1;
1207
-  $strongarm->name = 'tableofcontents_number_end_letter_6';
1208
-  $strongarm->value = '.';
1209
-  $export['tableofcontents_number_end_letter_6'] = $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 = 'tableofcontents_number_headers_4';
1215
-  $strongarm->value = 0;
1216
-  $export['tableofcontents_number_headers_4'] = $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 = 'tableofcontents_number_headers_6';
1222
-  $strongarm->value = 0;
1223
-  $export['tableofcontents_number_headers_6'] = $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 = 'tableofcontents_number_mode_4';
1229
-  $strongarm->value = '0';
1230
-  $export['tableofcontents_number_mode_4'] = $strongarm;
1231
-
1232
-  $strongarm = new stdClass;
1233
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1234
-  $strongarm->api_version = 1;
1235
-  $strongarm->name = 'tableofcontents_number_mode_6';
1236
-  $strongarm->value = '0';
1237
-  $export['tableofcontents_number_mode_6'] = $strongarm;
1238
-
1239
-  $strongarm = new stdClass;
1240
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1241
-  $strongarm->api_version = 1;
1242
-  $strongarm->name = 'tableofcontents_number_separator_4';
1243
-  $strongarm->value = '.';
1244
-  $export['tableofcontents_number_separator_4'] = $strongarm;
1245
-
1246
-  $strongarm = new stdClass;
1247
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1248
-  $strongarm->api_version = 1;
1249
-  $strongarm->name = 'tableofcontents_number_separator_6';
1250
-  $strongarm->value = '.';
1251
-  $export['tableofcontents_number_separator_6'] = $strongarm;
1252
-
1253
-  $strongarm = new stdClass;
1254
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1255
-  $strongarm->api_version = 1;
1256
-  $strongarm->name = 'tableofcontents_number_start_letter_4';
1257
-  $strongarm->value = '';
1258
-  $export['tableofcontents_number_start_letter_4'] = $strongarm;
1259
-
1260
-  $strongarm = new stdClass;
1261
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1262
-  $strongarm->api_version = 1;
1263
-  $strongarm->name = 'tableofcontents_number_start_letter_6';
1264
-  $strongarm->value = '';
1265
-  $export['tableofcontents_number_start_letter_6'] = $strongarm;
1266
-
1267
-  $strongarm = new stdClass;
1268
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1269
-  $strongarm->api_version = 1;
1270
-  $strongarm->name = 'tableofcontents_remove_from_teaser_admin_forum';
1271
-  $strongarm->value = 1;
1272
-  $export['tableofcontents_remove_from_teaser_admin_forum'] = $strongarm;
1273
-
1274
-  $strongarm = new stdClass;
1275
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1276
-  $strongarm->api_version = 1;
1277
-  $strongarm->name = 'tableofcontents_remove_from_teaser_forum';
1278
-  $strongarm->value = 1;
1279
-  $export['tableofcontents_remove_from_teaser_forum'] = $strongarm;
1280
-
1281
-  $strongarm = new stdClass;
1282
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1283
-  $strongarm->api_version = 1;
1284
-  $strongarm->name = 'tableofcontents_remove_from_teaser_profile';
1285
-  $strongarm->value = 1;
1286
-  $export['tableofcontents_remove_from_teaser_profile'] = $strongarm;
1287
-
1288
-  $strongarm = new stdClass;
1289
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1290
-  $strongarm->api_version = 1;
1291
-  $strongarm->name = 'tableofcontents_remove_from_teaser_team';
1292
-  $strongarm->value = 1;
1293
-  $export['tableofcontents_remove_from_teaser_team'] = $strongarm;
1294
-
1295
-  $strongarm = new stdClass;
1296
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1297
-  $strongarm->api_version = 1;
1298
-  $strongarm->name = 'tableofcontents_remove_from_teaser_team_forum';
1299
-  $strongarm->value = 1;
1300
-  $export['tableofcontents_remove_from_teaser_team_forum'] = $strongarm;
1301
-
1302
-  $strongarm = new stdClass;
1303
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1304
-  $strongarm->api_version = 1;
1305
-  $strongarm->name = 'tableofcontents_remove_teaser_4';
1306
-  $strongarm->value = 1;
1307
-  $export['tableofcontents_remove_teaser_4'] = $strongarm;
1308
-
1309
-  $strongarm = new stdClass;
1310
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1311
-  $strongarm->api_version = 1;
1312
-  $strongarm->name = 'tableofcontents_remove_teaser_6';
1313
-  $strongarm->value = 1;
1314
-  $export['tableofcontents_remove_teaser_6'] = $strongarm;
1315
-
1316
-  $strongarm = new stdClass;
1317
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1318
-  $strongarm->api_version = 1;
1319
-  $strongarm->name = 'tableofcontents_safe_title_4';
1320
-  $strongarm->value = 1;
1321
-  $export['tableofcontents_safe_title_4'] = $strongarm;
1322
-
1323
-  $strongarm = new stdClass;
1324
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1325
-  $strongarm->api_version = 1;
1326
-  $strongarm->name = 'tableofcontents_safe_title_6';
1327
-  $strongarm->value = 1;
1328
-  $export['tableofcontents_safe_title_6'] = $strongarm;
1329
-
1330
-  $strongarm = new stdClass;
1331
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1332
-  $strongarm->api_version = 1;
1333
-  $strongarm->name = 'tableofcontents_scroll_back_to_top_4';
1334
-  $strongarm->value = 0;
1335
-  $export['tableofcontents_scroll_back_to_top_4'] = $strongarm;
1336
-
1337
-  $strongarm = new stdClass;
1338
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1339
-  $strongarm->api_version = 1;
1340
-  $strongarm->name = 'tableofcontents_scroll_back_to_top_6';
1341
-  $strongarm->value = 0;
1342
-  $export['tableofcontents_scroll_back_to_top_6'] = $strongarm;
1343
-
1344
-  $strongarm = new stdClass;
1345
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1346
-  $strongarm->api_version = 1;
1347
-  $strongarm->name = 'tableofcontents_title_4';
1348
-  $strongarm->value = 'Table of Contents';
1349
-  $export['tableofcontents_title_4'] = $strongarm;
1350
-
1351
-  $strongarm = new stdClass;
1352
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1353
-  $strongarm->api_version = 1;
1354
-  $strongarm->name = 'tableofcontents_title_6';
1355
-  $strongarm->value = 'Table of Contents';
1356
-  $export['tableofcontents_title_6'] = $strongarm;
1357
-
1358
-  $strongarm = new stdClass;
1359
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1360
-  $strongarm->api_version = 1;
1361
-  $strongarm->name = 'tableofcontents_toc_automatic_admin_forum';
1362
-  $strongarm->value = '0';
1363
-  $export['tableofcontents_toc_automatic_admin_forum'] = $strongarm;
1364
-
1365
-  $strongarm = new stdClass;
1366
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1367
-  $strongarm->api_version = 1;
1368
-  $strongarm->name = 'tableofcontents_toc_automatic_forum';
1369
-  $strongarm->value = '0';
1370
-  $export['tableofcontents_toc_automatic_forum'] = $strongarm;
1371
-
1372
-  $strongarm = new stdClass;
1373
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1374
-  $strongarm->api_version = 1;
1375
-  $strongarm->name = 'tableofcontents_toc_automatic_profile';
1376
-  $strongarm->value = '0';
1377
-  $export['tableofcontents_toc_automatic_profile'] = $strongarm;
1378
-
1379
-  $strongarm = new stdClass;
1380
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1381
-  $strongarm->api_version = 1;
1382
-  $strongarm->name = 'tableofcontents_toc_automatic_team';
1383
-  $strongarm->value = '0';
1384
-  $export['tableofcontents_toc_automatic_team'] = $strongarm;
1385
-
1386
-  $strongarm = new stdClass;
1387
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1388
-  $strongarm->api_version = 1;
1389
-  $strongarm->name = 'tableofcontents_toc_automatic_team_forum';
1390
-  $strongarm->value = '0';
1391
-  $export['tableofcontents_toc_automatic_team_forum'] = $strongarm;
1392
-
1393
-  $strongarm = new stdClass;
1394
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1395
-  $strongarm->api_version = 1;
1396
-  $strongarm->name = 'tableofcontents_vtoc_admin_forum';
1397
-  $strongarm->value = 0;
1398
-  $export['tableofcontents_vtoc_admin_forum'] = $strongarm;
1399
-
1400
-  $strongarm = new stdClass;
1401
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1402
-  $strongarm->api_version = 1;
1403
-  $strongarm->name = 'tableofcontents_vtoc_forum';
1404
-  $strongarm->value = 0;
1405
-  $export['tableofcontents_vtoc_forum'] = $strongarm;
1406
-
1407
-  $strongarm = new stdClass;
1408
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1409
-  $strongarm->api_version = 1;
1410
-  $strongarm->name = 'tableofcontents_vtoc_profile';
1411
-  $strongarm->value = 0;
1412
-  $export['tableofcontents_vtoc_profile'] = $strongarm;
1413
-
1414
-  $strongarm = new stdClass;
1415
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1416
-  $strongarm->api_version = 1;
1417
-  $strongarm->name = 'tableofcontents_vtoc_team';
1418
-  $strongarm->value = 0;
1419
-  $export['tableofcontents_vtoc_team'] = $strongarm;
1420
-
1421
-  $strongarm = new stdClass;
1422
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1423
-  $strongarm->api_version = 1;
1424
-  $strongarm->name = 'tableofcontents_vtoc_team_forum';
1425
-  $strongarm->value = 0;
1426
-  $export['tableofcontents_vtoc_team_forum'] = $strongarm;
1427
-
1428
-  $strongarm = new stdClass;
1429
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1430
-  $strongarm->api_version = 1;
1431
-  $strongarm->name = 'tabtamer_tab_settings';
1432
-  $strongarm->value = array(
1433
-    'node/%/view' => array(
1434
-      'weight' => '-10',
1435
-      'action' => 'enabled',
1436
-      'tabtamer_original_path' => 'node/%node/view',
1437
-      'tabtamer_title' => '',
1438
-    ),
1439
-    'node/%/edit' => array(
1440
-      'weight' => '1',
1441
-      'action' => 'enabled',
1442
-      'tabtamer_original_path' => 'node/%node/edit',
1443
-      'tabtamer_title' => '',
1444
-    ),
1445
-    'node/%/revisions' => array(
1446
-      'weight' => '2',
1447
-      'action' => 'enabled',
1448
-      'tabtamer_original_path' => 'node/%node/revisions',
1449
-      'tabtamer_title' => '',
1450
-    ),
1451
-    'node/%/panel_layout' => array(
1452
-      'weight' => '2',
1453
-      'action' => 'enabled',
1454
-      'tabtamer_original_path' => 'node/%node/panel_layout',
1455
-      'tabtamer_title' => '',
1456
-    ),
1457
-    'node/%/panel_content' => array(
1458
-      'weight' => '3',
1459
-      'action' => 'enabled',
1460
-      'tabtamer_original_path' => 'node/%node/panel_content',
1461
-      'tabtamer_title' => '',
1462
-    ),
1463
-    'node/%/revisions/list' => array(
1464
-      'weight' => '0',
1465
-      'action' => 'enabled',
1466
-      'tabtamer_original_path' => 'node/%node/revisions/list',
1467
-      'tabtamer_title' => '',
1468
-    ),
1469
-    'node/%/revisions/view/%/%' => array(
1470
-      'weight' => '0',
1471
-      'action' => 'enabled',
1472
-      'tabtamer_original_path' => 'node/%node/revisions/view/%/%',
1473
-      'tabtamer_title' => '',
1474
-    ),
1475
-    'node/%/revisions/view/latest' => array(
1476
-      'weight' => '0',
1477
-      'action' => 'enabled',
1478
-      'tabtamer_original_path' => 'node/%node/revisions/view/latest',
1479
-      'tabtamer_title' => '',
1480
-    ),
1481
-    'search/node/%' => array(
1482
-      'weight' => '0',
1483
-      'action' => 'enabled',
1484
-      'tabtamer_original_path' => 'search/node/%menu_tail',
1485
-      'tabtamer_title' => '',
1486
-    ),
1487
-    'search/user/%' => array(
1488
-      'weight' => '0',
1489
-      'action' => 'enabled',
1490
-      'tabtamer_original_path' => 'search/user/%menu_tail',
1491
-      'tabtamer_title' => '',
1492
-    ),
1493
-    'user/login' => array(
1494
-      'weight' => '0',
1495
-      'action' => 'enabled',
1496
-      'tabtamer_original_path' => 'user/login',
1497
-      'tabtamer_title' => '',
1498
-    ),
1499
-    'user/register' => array(
1500
-      'weight' => '0',
1501
-      'action' => 'enabled',
1502
-      'tabtamer_original_path' => 'user/register',
1503
-      'tabtamer_title' => '',
1504
-    ),
1505
-    'user/password' => array(
1506
-      'weight' => '0',
1507
-      'action' => 'enabled',
1508
-      'tabtamer_original_path' => 'user/password',
1509
-      'tabtamer_title' => '',
1510
-    ),
1511
-    'user/%/view' => array(
1512
-      'weight' => '-10',
1513
-      'action' => 'hidden',
1514
-      'tabtamer_original_path' => 'user/%user/view',
1515
-      'tabtamer_title' => '',
1516
-    ),
1517
-    'user/%/edit' => array(
1518
-      'weight' => '0',
1519
-      'action' => 'hidden',
1520
-      'tabtamer_original_path' => 'user/%user_category/edit',
1521
-      'tabtamer_title' => '',
1522
-    ),
1523
-    'user/%/imce' => array(
1524
-      'weight' => '10',
1525
-      'action' => 'hidden',
1526
-      'tabtamer_original_path' => 'user/%user/imce',
1527
-      'tabtamer_title' => '',
1528
-    ),
1529
-    'user/%/roles' => array(
1530
-      'weight' => '0',
1531
-      'action' => 'enabled',
1532
-      'tabtamer_original_path' => 'user/%user/roles',
1533
-      'tabtamer_title' => '',
1534
-    ),
1535
-    'user/%/messages' => array(
1536
-      'weight' => '0',
1537
-      'action' => 'hidden',
1538
-      'tabtamer_original_path' => 'user/%/messages',
1539
-      'tabtamer_title' => '',
1540
-    ),
1541
-    'user/%/friends' => array(
1542
-      'weight' => '0',
1543
-      'action' => 'hidden',
1544
-      'tabtamer_original_path' => 'user/%/friends',
1545
-      'tabtamer_title' => '',
1546
-    ),
1547
-    'user/%/edit/account' => array(
1548
-      'weight' => '0',
1549
-      'action' => 'enabled',
1550
-      'tabtamer_original_path' => 'user/%user_category/edit/account',
1551
-      'tabtamer_title' => '',
1552
-    ),
1553
-    'user/%/edit/profile' => array(
1554
-      'weight' => '1',
1555
-      'action' => 'hidden',
1556
-      'tabtamer_original_path' => 'user/%user_category/edit/profile',
1557
-      'tabtamer_title' => '',
1558
-    ),
1559
-    'user/%/friends/pending' => array(
1560
-      'weight' => '0',
1561
-      'action' => 'enabled',
1562
-      'tabtamer_original_path' => 'user/%views_arg/friends/pending',
1563
-      'tabtamer_title' => '',
1564
-    ),
1565
-    'user/%/friends/flagged' => array(
1566
-      'weight' => '0',
1567
-      'action' => 'enabled',
1568
-      'tabtamer_original_path' => 'user/%views_arg/friends/flagged',
1569
-      'tabtamer_title' => '',
1570
-    ),
1571
-    'account/profile/view' => array(
1572
-      'weight' => '0',
1573
-      'action' => 'enabled',
1574
-      'tabtamer_original_path' => 'account/profile/view',
1575
-      'tabtamer_title' => '',
1576
-    ),
1577
-    'account/profile/edit' => array(
1578
-      'weight' => '5',
1579
-      'action' => 'enabled',
1580
-      'tabtamer_original_path' => 'account/profile/edit',
1581
-      'tabtamer_title' => '',
1582
-    ),
1583
-    'account/prefs/computing' => array(
1584
-      'weight' => '0',
1585
-      'action' => 'enabled',
1586
-      'tabtamer_original_path' => 'account/prefs/computing',
1587
-      'tabtamer_title' => '',
401
+      'name' => 'Medium',
402
+      'dimensions' => '120x120',
403
+      'prefix' => 'medium_',
404
+      'suffix' => '',
1588 405
     ),
1589
-    'account/prefs/project' => array(
1590
-      'weight' => '5',
1591
-      'action' => 'enabled',
1592
-      'tabtamer_original_path' => 'account/prefs/project',
1593
-      'tabtamer_title' => '',
1594
-    ),
1595
-    'account/prefs/community' => array(
1596
-      'weight' => '10',
1597
-      'action' => 'enabled',
1598
-      'tabtamer_original_path' => 'account/prefs/community',
1599
-      'tabtamer_title' => '',
1600
-    ),
1601
-    'account/prefs/privacy' => array(
1602
-      'weight' => '15',
1603
-      'action' => 'enabled',
1604
-      'tabtamer_original_path' => 'account/prefs/privacy',
1605
-      'tabtamer_title' => '',
1606
-    ),
1607
-    'account/obsolete' => array(
1608
-      'weight' => '0',
1609
-      'action' => 'enabled',
1610
-      'tabtamer_original_path' => 'account/obsolete',
1611
-      'tabtamer_title' => '',
1612
-    ),
1613
-    'account/tasks/all' => array(
1614
-      'weight' => '0',
1615
-      'action' => 'enabled',
1616
-      'tabtamer_original_path' => 'account/tasks/all',
1617
-      'tabtamer_title' => '',
1618
-    ),
1619
-    'account/tasks/error' => array(
1620
-      'weight' => '5',
1621
-      'action' => 'enabled',
1622
-      'tabtamer_original_path' => 'account/tasks/error',
1623
-      'tabtamer_title' => '',
1624
-    ),
1625
-    'account/tasks/active' => array(
1626
-      'weight' => '1',
1627
-      'action' => 'enabled',
1628
-      'tabtamer_original_path' => 'account/tasks/active',
1629
-      'tabtamer_title' => '',
1630
-    ),
1631
-    'account/tasks/invalid' => array(
1632
-      'weight' => '4',
1633
-      'action' => 'enabled',
1634
-      'tabtamer_original_path' => 'account/tasks/invalid',
1635
-      'tabtamer_title' => '',
1636
-    ),
1637
-    'account/tasks/pending' => array(
1638
-      'weight' => '2',
1639
-      'action' => 'enabled',
1640
-      'tabtamer_original_path' => 'account/tasks/pending',
1641
-      'tabtamer_title' => '',
1642
-    ),
1643
-    'account/tasks/valid' => array(
1644
-      'weight' => '3',
1645
-      'action' => 'enabled',
1646
-      'tabtamer_original_path' => 'account/tasks/valid',
1647
-      'tabtamer_title' => '',
1648
-    ),
1649
-    'account/computers/all' => array(
1650
-      'weight' => '1',
1651
-      'action' => 'enabled',
1652
-      'tabtamer_original_path' => 'account/computers/all',
1653
-      'tabtamer_title' => '',
1654
-    ),
1655
-    'account/computers/active' => array(
1656
-      'weight' => '0',
1657
-      'action' => 'enabled',
1658
-      'tabtamer_original_path' => 'account/computers/active',
1659
-      'tabtamer_title' => '',
1660
-    ),
1661
-    'account/%/computers' => array(
1662
-      'weight' => '0',
1663
-      'action' => 'hidden',
1664
-      'tabtamer_original_path' => 'account/%views_arg/computers',
1665
-      'tabtamer_title' => '',
1666
-    ),
1667
-    'account/%/computers/all' => array(
1668
-      'weight' => '1',
1669
-      'action' => 'enabled',
1670
-      'tabtamer_original_path' => 'account/%views_arg/computers/all',
1671
-      'tabtamer_title' => '',
1672
-    ),
1673
-    'account/%/friends/all' => array(
1674
-      'weight' => '-10',
1675
-      'action' => 'enabled',
1676
-      'tabtamer_original_path' => 'account/%/friends/all',
1677
-      'tabtamer_title' => '',
1678
-    ),
1679
-    'account/%/friends/pending' => array(
1680
-      'weight' => '0',
1681
-      'action' => 'enabled',
1682
-      'tabtamer_original_path' => 'account/%views_arg/friends/pending',
1683
-      'tabtamer_title' => '',
1684
-    ),
1685
-    'account/%/friends/flagged' => array(
1686
-      'weight' => '0',
1687
-      'action' => 'enabled',
1688
-      'tabtamer_original_path' => 'account/%views_arg/friends/flagged',
1689
-      'tabtamer_title' => '',
1690
-    ),
1691
-    'join/new' => array(
1692
-      'weight' => '0',
1693
-      'action' => 'enabled',
1694
-      'tabtamer_original_path' => 'join/new',
1695
-      'tabtamer_title' => '',
1696
-    ),
1697
-    'join/boinc' => array(
1698
-      'weight' => '5',
1699
-      'action' => 'enabled',
1700
-      'tabtamer_original_path' => 'join/boinc',
1701
-      'tabtamer_title' => '',
1702
-    ),
1703
-    'messages/list' => array(
1704
-      'weight' => '-10',
1705
-      'action' => 'enabled',
1706
-      'tabtamer_original_path' => 'messages/list',
1707
-      'tabtamer_title' => '',
1708
-    ),
1709
-    'messages/view/%' => array(
1710
-      'weight' => '-5',
1711
-      'action' => 'enabled',
1712
-      'tabtamer_original_path' => 'messages/view/%privatemsg_thread',
1713
-      'tabtamer_title' => '',
1714
-    ),
1715
-    'messages/new' => array(
1716
-      'weight' => '-3',
1717
-      'action' => 'enabled',
1718
-      'tabtamer_original_path' => 'messages/new',
1719
-      'tabtamer_title' => '',
1720
-    ),
1721
-    'news' => array(
1722
-      'weight' => 0,
1723
-      'action' => 'enabled',
1724
-      'tabtamer_original_path' => 'news',
1725
-      'tabtamer_title' => '',
1726
-    ),
1727
-    'workunit/%/tasks' => array(
1728
-      'weight' => '0',
1729
-      'action' => 'enabled',
1730
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks',
1731
-      'tabtamer_title' => '',
1732
-    ),
1733
-    'workunit/%/tasks/error' => array(
1734
-      'weight' => '5',
1735
-      'action' => 'enabled',
1736
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/error',
1737
-      'tabtamer_title' => '',
1738
-    ),
1739
-    'workunit/%/tasks/active' => array(
1740
-      'weight' => '1',
1741
-      'action' => 'enabled',
1742
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/active',
1743
-      'tabtamer_title' => '',
1744
-    ),
1745
-    'workunit/%/tasks/invalid' => array(
1746
-      'weight' => '4',
1747
-      'action' => 'enabled',
1748
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/invalid',
1749
-      'tabtamer_title' => '',
1750
-    ),
1751
-    'workunit/%/tasks/pending' => array(
1752
-      'weight' => '2',
1753
-      'action' => 'enabled',
1754
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/pending',
1755
-      'tabtamer_title' => '',
1756
-    ),
1757
-    'workunit/%/tasks/valid' => array(
1758
-      'weight' => '3',
1759
-      'action' => 'enabled',
1760
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/valid',
1761
-      'tabtamer_title' => '',
1762
-    ),
1763
-    'host/%/tasks' => array(
1764
-      'weight' => '0',
1765
-      'action' => 'enabled',
1766
-      'tabtamer_original_path' => 'host/%views_arg/tasks',
1767
-      'tabtamer_title' => '',
1768
-    ),
1769
-    'host/%/tasks/error' => array(
1770
-      'weight' => '5',
1771
-      'action' => 'enabled',
1772
-      'tabtamer_original_path' => 'host/%views_arg/tasks/error',
1773
-      'tabtamer_title' => '',
1774
-    ),
1775
-    'host/%/tasks/active' => array(
1776
-      'weight' => '1',
1777
-      'action' => 'enabled',
1778
-      'tabtamer_original_path' => 'host/%views_arg/tasks/active',
1779
-      'tabtamer_title' => '',
1780
-    ),
1781
-    'host/%/tasks/invalid' => array(
1782
-      'weight' => '4',
1783
-      'action' => 'enabled',
1784
-      'tabtamer_original_path' => 'host/%views_arg/tasks/invalid',
1785
-      'tabtamer_title' => '',
1786
-    ),
1787
-    'host/%/tasks/pending' => array(
1788
-      'weight' => '2',
1789
-      'action' => 'enabled',
1790
-      'tabtamer_original_path' => 'host/%views_arg/tasks/pending',
1791
-      'tabtamer_title' => '',
1792
-    ),
1793
-    'host/%/tasks/valid' => array(
1794
-      'weight' => '3',
1795
-      'action' => 'enabled',
1796
-      'tabtamer_original_path' => 'host/%views_arg/tasks/valid',
1797
-      'tabtamer_title' => '',
1798
-    ),
1799
-  );
1800
-  $export['tabtamer_tab_settings'] = $strongarm;
1801
-
1802
-  $strongarm = new stdClass;
1803
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1804
-  $strongarm->api_version = 1;
1805
-  $strongarm->name = 'theme_boinc_settings';
1806
-  $strongarm->value = array(
1807
-    'zen_block_editing' => 1,
1808
-    'zen_breadcrumb' => 'yes',
1809
-    'zen_breadcrumb_separator' => ' › ',
1810
-    'zen_breadcrumb_home' => 1,
1811
-    'zen_breadcrumb_trailing' => 1,
1812
-    'zen_breadcrumb_title' => 0,
1813
-    'zen_rebuild_registry' => 1,
1814
-    'zen_wireframes' => 0,
1815
-    'boinc_stats_chart_color' => '#FAA341',
1816
-    'boinc_stats_chart_bcolor' => '#FFFFFF',
1817
-    'toggle_logo' => 1,
1818
-    'toggle_name' => 1,
1819
-    'toggle_slogan' => 0,
1820
-    'toggle_mission' => 1,
1821
-    'toggle_node_user_picture' => 0,
1822
-    'toggle_comment_user_picture' => 1,
1823
-    'toggle_search' => 0,
1824
-    'toggle_favicon' => 1,
1825
-    'toggle_primary_links' => 1,
1826
-    'toggle_secondary_links' => 1,
1827
-    'default_logo' => 1,
1828
-    'logo_path' => '',
1829
-    'logo_upload' => '',
1830
-    'default_favicon' => 1,
1831
-    'favicon_path' => '',
1832
-    'favicon_upload' => '',
1833
-  );
1834
-  $export['theme_boinc_settings'] = $strongarm;
1835
-
1836
-  $strongarm = new stdClass;
1837
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1838
-  $strongarm->api_version = 1;
1839
-  $strongarm->name = 'theme_default';
1840
-  $strongarm->value = 'einstein';
1841
-  $export['theme_default'] = $strongarm;
1842
-
1843
-  $strongarm = new stdClass;
1844
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1845
-  $strongarm->api_version = 1;
1846
-  $strongarm->name = 'theme_einstein_settings';
1847
-  $strongarm->value = array(
1848
-    'zen_block_editing' => 1,
1849
-    'zen_breadcrumb' => 'yes',
1850
-    'zen_breadcrumb_separator' => ' › ',
1851
-    'zen_breadcrumb_home' => 1,
1852
-    'zen_breadcrumb_trailing' => 1,
1853
-    'zen_breadcrumb_title' => 0,
1854
-    'zen_rebuild_registry' => 0,
1855
-    'zen_wireframes' => 0,
1856
-    'toggle_logo' => 1,
1857
-    'toggle_name' => 0,
1858
-    'toggle_slogan' => 0,
1859
-    'toggle_mission' => 1,
1860
-    'toggle_node_user_picture' => 0,
1861
-    'toggle_comment_user_picture' => 1,
1862
-    'toggle_search' => 0,
1863
-    'toggle_favicon' => 1,
1864
-    'toggle_primary_links' => 1,
1865
-    'toggle_secondary_links' => 1,
1866
-    'default_logo' => 1,
1867
-    'logo_path' => '',
1868
-    'logo_upload' => '',
1869
-    'default_favicon' => 1,
1870
-    'favicon_path' => '',
1871
-    'favicon_upload' => '',
1872
-    'boinc_stats_chart_color' => '#009CDB',
1873
-    'boinc_stats_chart_bcolor' => '#EEEEEE',
1874
-  );
1875
-  $export['theme_einstein_settings'] = $strongarm;
1876
-
1877
-  $strongarm = new stdClass;
1878
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1879
-  $strongarm->api_version = 1;
1880
-  $strongarm->name = 'theme_settings';
1881
-  $strongarm->value = array(
1882
-    'toggle_node_info_page' => FALSE,
1883
-  );
1884
-  $export['theme_settings'] = $strongarm;
1885
-
1886
-  $strongarm = new stdClass;
1887
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1888
-  $strongarm->api_version = 1;
1889
-  $strongarm->name = 'theme_zen_settings';
1890
-  $strongarm->value = array(
1891
-    'zen_block_editing' => '1',
1892
-    'zen_breadcrumb' => 'yes',
1893
-    'zen_breadcrumb_separator' => ' › ',
1894
-    'zen_breadcrumb_home' => '1',
1895
-    'zen_breadcrumb_trailing' => '1',
1896
-    'zen_breadcrumb_title' => '0',
1897
-    'zen_layout' => 'zen-columns-liquid',
1898
-    'zen_rebuild_registry' => '0',
1899
-    'zen_wireframes' => '0',
1900
-  );
1901
-  $export['theme_zen_settings'] = $strongarm;
1902
-
1903
-  $strongarm = new stdClass;
1904
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1905
-  $strongarm->api_version = 1;
1906
-  $strongarm->name = 'upload_extensions_2938987599';
1907
-  $strongarm->value = 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp';
1908
-  $export['upload_extensions_2938987599'] = $strongarm;
1909
-
1910
-  $strongarm = new stdClass;
1911
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1912
-  $strongarm->api_version = 1;
1913
-  $strongarm->name = 'upload_extensions_3519698132';
1914
-  $strongarm->value = 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp';
1915
-  $export['upload_extensions_3519698132'] = $strongarm;
1916
-
1917
-  $strongarm = new stdClass;
1918
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1919
-  $strongarm->api_version = 1;
1920
-  $strongarm->name = 'upload_extensions_default';
1921
-  $strongarm->value = 'jpg jpeg gif png txt pdf';
1922
-  $export['upload_extensions_default'] = $strongarm;
1923
-
1924
-  $strongarm = new stdClass;
1925
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1926
-  $strongarm->api_version = 1;
1927
-  $strongarm->name = 'upload_forum';
1928
-  $strongarm->value = '0';
1929
-  $export['upload_forum'] = $strongarm;
1930
-
1931
-  $strongarm = new stdClass;
1932
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1933
-  $strongarm->api_version = 1;
1934
-  $strongarm->name = 'upload_list_default';
1935
-  $strongarm->value = '0';
1936
-  $export['upload_list_default'] = $strongarm;
1937
-
1938
-  $strongarm = new stdClass;
1939
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1940
-  $strongarm->api_version = 1;
1941
-  $strongarm->name = 'upload_max_resolution';
1942
-  $strongarm->value = '0';
1943
-  $export['upload_max_resolution'] = $strongarm;
1944
-
1945
-  $strongarm = new stdClass;
1946
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1947
-  $strongarm->api_version = 1;
1948
-  $strongarm->name = 'upload_uploadsize_2938987599';
1949
-  $strongarm->value = '2';
1950
-  $export['upload_uploadsize_2938987599'] = $strongarm;
1951
-
1952
-  $strongarm = new stdClass;
1953
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1954
-  $strongarm->api_version = 1;
1955
-  $strongarm->name = 'upload_uploadsize_3519698132';
1956
-  $strongarm->value = '2';
1957
-  $export['upload_uploadsize_3519698132'] = $strongarm;
1958
-
1959
-  $strongarm = new stdClass;
1960
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1961
-  $strongarm->api_version = 1;
1962
-  $strongarm->name = 'upload_uploadsize_default';
1963
-  $strongarm->value = '2';
1964
-  $export['upload_uploadsize_default'] = $strongarm;
1965
-
1966
-  $strongarm = new stdClass;
1967
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1968
-  $strongarm->api_version = 1;
1969
-  $strongarm->name = 'upload_usersize_2938987599';
1970
-  $strongarm->value = '1000';
1971
-  $export['upload_usersize_2938987599'] = $strongarm;
1972
-
1973
-  $strongarm = new stdClass;
1974
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1975
-  $strongarm->api_version = 1;
1976
-  $strongarm->name = 'upload_usersize_3519698132';
1977
-  $strongarm->value = '1000';
1978
-  $export['upload_usersize_3519698132'] = $strongarm;
1979
-
1980
-  $strongarm = new stdClass;
1981
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1982
-  $strongarm->api_version = 1;
1983
-  $strongarm->name = 'upload_usersize_default';
1984
-  $strongarm->value = '10';
1985
-  $export['upload_usersize_default'] = $strongarm;
1986
-
1987
-  $strongarm = new stdClass;
1988
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1989
-  $strongarm->api_version = 1;
1990
-  $strongarm->name = 'user_email_verification';
1991
-  $strongarm->value = 0;
1992
-  $export['user_email_verification'] = $strongarm;
1993
-
1994
-  $strongarm = new stdClass;
1995
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1996
-  $strongarm->api_version = 1;
1997
-  $strongarm->name = 'user_mail_password_reset_body';
1998
-  $strongarm->value = 'Hello,
406
+    2 => array(
407
+      'name' => 'Large',
408
+      'dimensions' => '180x180',
409
+      'prefix' => 'large_',
410
+      'suffix' => '',
411
+    ),
412
+  ),
413
+),
414
+);
415
+$export['imce_profiles'] = $strongarm;
416
+
417
+$strongarm = new stdClass;
418
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
419
+$strongarm->api_version = 1;
420
+$strongarm->name = 'imce_roles_profiles';
421
+$strongarm->value = array(
422
+3519698132 => array(
423
+  'weight' => '0',
424
+  'pid' => '0',
425
+),
426
+1110965548 => array(
427
+  'weight' => '0',
428
+  'pid' => '0',
429
+),
430
+268174006 => array(
431
+  'weight' => '0',
432
+  'pid' => '0',
433
+),
434
+2938987599 => array(
435
+  'weight' => '0',
436
+  'pid' => '3',
437
+),
438
+1257454314 => array(
439
+  'weight' => '0',
440
+  'pid' => '0',
441
+),
442
+1271379760 => array(
443
+  'weight' => '0',
444
+  'pid' => '0',
445
+),
446
+933038561 => array(
447
+  'weight' => '0',
448
+  'pid' => '0',
449
+),
450
+2 => array(
451
+  'weight' => 11,
452
+  'pid' => '0',
453
+),
454
+1 => array(
455
+  'weight' => 12,
456
+  'pid' => '0',
457
+),
458
+);
459
+$export['imce_roles_profiles'] = $strongarm;
460
+
461
+$strongarm = new stdClass;
462
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
463
+$strongarm->api_version = 1;
464
+$strongarm->name = 'language_content_type_page';
465
+$strongarm->value = '2';
466
+$export['language_content_type_page'] = $strongarm;
467
+
468
+$strongarm = new stdClass;
469
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
470
+$strongarm->api_version = 1;
471
+$strongarm->name = 'menu_block_1_admin_title';
472
+$strongarm->value = 'Tertiary menu';
473
+$export['menu_block_1_admin_title'] = $strongarm;
474
+
475
+$strongarm = new stdClass;
476
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
477
+$strongarm->api_version = 1;
478
+$strongarm->name = 'menu_block_1_depth';
479
+$strongarm->value = '0';
480
+$export['menu_block_1_depth'] = $strongarm;
481
+
482
+$strongarm = new stdClass;
483
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
484
+$strongarm->api_version = 1;
485
+$strongarm->name = 'menu_block_1_expanded';
486
+$strongarm->value = 0;
487
+$export['menu_block_1_expanded'] = $strongarm;
488
+
489
+$strongarm = new stdClass;
490
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
491
+$strongarm->api_version = 1;
492
+$strongarm->name = 'menu_block_1_follow';
493
+$strongarm->value = 0;
494
+$export['menu_block_1_follow'] = $strongarm;
495
+
496
+$strongarm = new stdClass;
497
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
498
+$strongarm->api_version = 1;
499
+$strongarm->name = 'menu_block_1_level';
500
+$strongarm->value = '3';
501
+$export['menu_block_1_level'] = $strongarm;
502
+
503
+$strongarm = new stdClass;
504
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
505
+$strongarm->api_version = 1;
506
+$strongarm->name = 'menu_block_1_parent';
507
+$strongarm->value = 'primary-links:0';
508
+$export['menu_block_1_parent'] = $strongarm;
509
+
510
+$strongarm = new stdClass;
511
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
512
+$strongarm->api_version = 1;
513
+$strongarm->name = 'menu_block_1_sort';
514
+$strongarm->value = 0;
515
+$export['menu_block_1_sort'] = $strongarm;
516
+
517
+$strongarm = new stdClass;
518
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
519
+$strongarm->api_version = 1;
520
+$strongarm->name = 'menu_block_1_title_link';
521
+$strongarm->value = 0;
522
+$export['menu_block_1_title_link'] = $strongarm;
523
+
524
+$strongarm = new stdClass;
525
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
526
+$strongarm->api_version = 1;
527
+$strongarm->name = 'menu_block_ids';
528
+$strongarm->value = array(
529
+0 => 1,
530
+);
531
+$export['menu_block_ids'] = $strongarm;
532
+
533
+$strongarm = new stdClass;
534
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
535
+$strongarm->api_version = 1;
536
+$strongarm->name = 'menu_default_node_menu';
537
+$strongarm->value = 'primary-links';
538
+$export['menu_default_node_menu'] = $strongarm;
539
+
540
+$strongarm = new stdClass;
541
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
542
+$strongarm->api_version = 1;
543
+$strongarm->name = 'menu_expanded';
544
+$strongarm->value = array(
545
+0 => 'primary-links',
546
+);
547
+$export['menu_expanded'] = $strongarm;
548
+
549
+$strongarm = new stdClass;
550
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
551
+$strongarm->api_version = 1;
552
+$strongarm->name = 'menu_primary_links_source';
553
+$strongarm->value = 'primary-links';
554
+$export['menu_primary_links_source'] = $strongarm;
555
+
556
+$strongarm = new stdClass;
557
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
558
+$strongarm->api_version = 1;
559
+$strongarm->name = 'menu_secondary_links_source';
560
+$strongarm->value = 'primary-links';
561
+$export['menu_secondary_links_source'] = $strongarm;
562
+
563
+$strongarm = new stdClass;
564
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
565
+$strongarm->api_version = 1;
566
+$strongarm->name = 'node_admin_theme';
567
+$strongarm->value = 0;
568
+$export['node_admin_theme'] = $strongarm;
569
+
570
+$strongarm = new stdClass;
571
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
572
+$strongarm->api_version = 1;
573
+$strongarm->name = 'node_options_page';
574
+$strongarm->value = array(
575
+0 => 'status',
576
+);
577
+$export['node_options_page'] = $strongarm;
578
+
579
+$strongarm = new stdClass;
580
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
581
+$strongarm->api_version = 1;
582
+$strongarm->name = 'page_manager_user_view_disabled';
583
+$strongarm->value = FALSE;
584
+$export['page_manager_user_view_disabled'] = $strongarm;
585
+
586
+$strongarm = new stdClass;
587
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
588
+$strongarm->api_version = 1;
589
+$strongarm->name = 'panels_legacy_rendering_mode';
590
+$strongarm->value = FALSE;
591
+$export['panels_legacy_rendering_mode'] = $strongarm;
592
+
593
+$strongarm = new stdClass;
594
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
595
+$strongarm->api_version = 1;
596
+$strongarm->name = 'pathauto_ignore_words';
597
+$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';
598
+$export['pathauto_ignore_words'] = $strongarm;
599
+
600
+$strongarm = new stdClass;
601
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
602
+$strongarm->api_version = 1;
603
+$strongarm->name = 'pathauto_indexaliases';
604
+$strongarm->value = FALSE;
605
+$export['pathauto_indexaliases'] = $strongarm;
606
+
607
+$strongarm = new stdClass;
608
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
609
+$strongarm->api_version = 1;
610
+$strongarm->name = 'pathauto_indexaliases_bulkupdate';
611
+$strongarm->value = FALSE;
612
+$export['pathauto_indexaliases_bulkupdate'] = $strongarm;
613
+
614
+$strongarm = new stdClass;
615
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
616
+$strongarm->api_version = 1;
617
+$strongarm->name = 'pathauto_max_component_length';
618
+$strongarm->value = '100';
619
+$export['pathauto_max_component_length'] = $strongarm;
620
+
621
+$strongarm = new stdClass;
622
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
623
+$strongarm->api_version = 1;
624
+$strongarm->name = 'pathauto_max_length';
625
+$strongarm->value = '100';
626
+$export['pathauto_max_length'] = $strongarm;
627
+
628
+$strongarm = new stdClass;
629
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
630
+$strongarm->api_version = 1;
631
+$strongarm->name = 'pathauto_modulelist';
632
+$strongarm->value = array(
633
+0 => 'node',
634
+1 => 'user',
635
+2 => 'taxonomy',
636
+);
637
+$export['pathauto_modulelist'] = $strongarm;
638
+
639
+$strongarm = new stdClass;
640
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
641
+$strongarm->api_version = 1;
642
+$strongarm->name = 'pathauto_node_applytofeeds';
643
+$strongarm->value = '';
644
+$export['pathauto_node_applytofeeds'] = $strongarm;
645
+
646
+$strongarm = new stdClass;
647
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
648
+$strongarm->api_version = 1;
649
+$strongarm->name = 'pathauto_node_bulkupdate';
650
+$strongarm->value = FALSE;
651
+$export['pathauto_node_bulkupdate'] = $strongarm;
652
+
653
+$strongarm = new stdClass;
654
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
655
+$strongarm->api_version = 1;
656
+$strongarm->name = 'pathauto_node_image_pattern';
657
+$strongarm->value = '';
658
+$export['pathauto_node_image_pattern'] = $strongarm;
659
+
660
+$strongarm = new stdClass;
661
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
662
+$strongarm->api_version = 1;
663
+$strongarm->name = 'pathauto_node_page_pattern';
664
+$strongarm->value = '';
665
+$export['pathauto_node_page_pattern'] = $strongarm;
666
+
667
+$strongarm = new stdClass;
668
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
669
+$strongarm->api_version = 1;
670
+$strongarm->name = 'pathauto_node_pattern';
671
+$strongarm->value = 'content/[title-raw]';
672
+$export['pathauto_node_pattern'] = $strongarm;
673
+
674
+$strongarm = new stdClass;
675
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
676
+$strongarm->api_version = 1;
677
+$strongarm->name = 'pathauto_node_story_pattern';
678
+$strongarm->value = '';
679
+$export['pathauto_node_story_pattern'] = $strongarm;
680
+
681
+$strongarm = new stdClass;
682
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
683
+$strongarm->api_version = 1;
684
+$strongarm->name = 'pathauto_punctuation_hyphen';
685
+$strongarm->value = 1;
686
+$export['pathauto_punctuation_hyphen'] = $strongarm;
687
+
688
+$strongarm = new stdClass;
689
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
690
+$strongarm->api_version = 1;
691
+$strongarm->name = 'pathauto_punctuation_quotes';
692
+$strongarm->value = 0;
693
+$export['pathauto_punctuation_quotes'] = $strongarm;
694
+
695
+$strongarm = new stdClass;
696
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
697
+$strongarm->api_version = 1;
698
+$strongarm->name = 'pathauto_separator';
699
+$strongarm->value = '-';
700
+$export['pathauto_separator'] = $strongarm;
701
+
702
+$strongarm = new stdClass;
703
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
704
+$strongarm->api_version = 1;
705
+$strongarm->name = 'pathauto_taxonomy_2_pattern';
706
+$strongarm->value = '';
707
+$export['pathauto_taxonomy_2_pattern'] = $strongarm;
708
+
709
+$strongarm = new stdClass;
710
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
711
+$strongarm->api_version = 1;
712
+$strongarm->name = 'pathauto_taxonomy_applytofeeds';
713
+$strongarm->value = FALSE;
714
+$export['pathauto_taxonomy_applytofeeds'] = $strongarm;
715
+
716
+$strongarm = new stdClass;
717
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
718
+$strongarm->api_version = 1;
719
+$strongarm->name = 'pathauto_taxonomy_bulkupdate';
720
+$strongarm->value = FALSE;
721
+$export['pathauto_taxonomy_bulkupdate'] = $strongarm;
722
+
723
+$strongarm = new stdClass;
724
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
725
+$strongarm->api_version = 1;
726
+$strongarm->name = 'pathauto_taxonomy_pattern';
727
+$strongarm->value = 'category/[vocab-raw]/[catpath-raw]';
728
+$export['pathauto_taxonomy_pattern'] = $strongarm;
729
+
730
+$strongarm = new stdClass;
731
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
732
+$strongarm->api_version = 1;
733
+$strongarm->name = 'pathauto_taxonomy_supportsfeeds';
734
+$strongarm->value = '0/feed';
735
+$export['pathauto_taxonomy_supportsfeeds'] = $strongarm;
736
+
737
+$strongarm = new stdClass;
738
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
739
+$strongarm->api_version = 1;
740
+$strongarm->name = 'pathauto_update_action';
741
+$strongarm->value = '2';
742
+$export['pathauto_update_action'] = $strongarm;
743
+
744
+$strongarm = new stdClass;
745
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
746
+$strongarm->api_version = 1;
747
+$strongarm->name = 'pathauto_user_bulkupdate';
748
+$strongarm->value = FALSE;
749
+$export['pathauto_user_bulkupdate'] = $strongarm;
750
+
751
+$strongarm = new stdClass;
752
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
753
+$strongarm->api_version = 1;
754
+$strongarm->name = 'pathauto_user_pattern';
755
+$strongarm->value = 'users/[user-raw]';
756
+$export['pathauto_user_pattern'] = $strongarm;
757
+
758
+$strongarm = new stdClass;
759
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
760
+$strongarm->api_version = 1;
761
+$strongarm->name = 'pathauto_user_supportsfeeds';
762
+$strongarm->value = '';
763
+$export['pathauto_user_supportsfeeds'] = $strongarm;
764
+
765
+$strongarm = new stdClass;
766
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
767
+$strongarm->api_version = 1;
768
+$strongarm->name = 'pathauto_verbose';
769
+$strongarm->value = FALSE;
770
+$export['pathauto_verbose'] = $strongarm;
771
+
772
+$strongarm = new stdClass;
773
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
774
+$strongarm->api_version = 1;
775
+$strongarm->name = 'site_frontpage';
776
+$strongarm->value = 'home';
777
+$export['site_frontpage'] = $strongarm;
778
+
779
+$strongarm = new stdClass;
780
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
781
+$strongarm->api_version = 1;
782
+$strongarm->name = 'tableofcontents_allowed_tags_4';
783
+$strongarm->value = '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>';
784
+$export['tableofcontents_allowed_tags_4'] = $strongarm;
785
+
786
+$strongarm = new stdClass;
787
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
788
+$strongarm->api_version = 1;
789
+$strongarm->name = 'tableofcontents_allowed_tags_6';
790
+$strongarm->value = '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>';
791
+$export['tableofcontents_allowed_tags_6'] = $strongarm;
792
+
793
+$strongarm = new stdClass;
794
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
795
+$strongarm->api_version = 1;
796
+$strongarm->name = 'tableofcontents_allow_override_4';
797
+$strongarm->value = 1;
798
+$export['tableofcontents_allow_override_4'] = $strongarm;
799
+
800
+$strongarm = new stdClass;
801
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
802
+$strongarm->api_version = 1;
803
+$strongarm->name = 'tableofcontents_allow_override_6';
804
+$strongarm->value = 1;
805
+$export['tableofcontents_allow_override_6'] = $strongarm;
806
+
807
+$strongarm = new stdClass;
808
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
809
+$strongarm->api_version = 1;
810
+$strongarm->name = 'tableofcontents_attachments_4';
811
+$strongarm->value = 0;
812
+$export['tableofcontents_attachments_4'] = $strongarm;
813
+
814
+$strongarm = new stdClass;
815
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
816
+$strongarm->api_version = 1;
817
+$strongarm->name = 'tableofcontents_automatic_4';
818
+$strongarm->value = '0';
819
+$export['tableofcontents_automatic_4'] = $strongarm;
820
+
821
+$strongarm = new stdClass;
822
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
823
+$strongarm->api_version = 1;
824
+$strongarm->name = 'tableofcontents_automatic_6';
825
+$strongarm->value = '0';
826
+$export['tableofcontents_automatic_6'] = $strongarm;
827
+
828
+$strongarm = new stdClass;
829
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
830
+$strongarm->api_version = 1;
831
+$strongarm->name = 'tableofcontents_back_to_top_4';
832
+$strongarm->value = '';
833
+$export['tableofcontents_back_to_top_4'] = $strongarm;
834
+
835
+$strongarm = new stdClass;
836
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
837
+$strongarm->api_version = 1;
838
+$strongarm->name = 'tableofcontents_back_to_top_6';
839
+$strongarm->value = '';
840
+$export['tableofcontents_back_to_top_6'] = $strongarm;
841
+
842
+$strongarm = new stdClass;
843
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
844
+$strongarm->api_version = 1;
845
+$strongarm->name = 'tableofcontents_back_to_top_anchor_4';
846
+$strongarm->value = 'toc';
847
+$export['tableofcontents_back_to_top_anchor_4'] = $strongarm;
848
+
849
+$strongarm = new stdClass;
850
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
851
+$strongarm->api_version = 1;
852
+$strongarm->name = 'tableofcontents_back_to_top_anchor_6';
853
+$strongarm->value = 'toc';
854
+$export['tableofcontents_back_to_top_anchor_6'] = $strongarm;
855
+
856
+$strongarm = new stdClass;
857
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
858
+$strongarm->api_version = 1;
859
+$strongarm->name = 'tableofcontents_back_to_top_location_4';
860
+$strongarm->value = 'bottom';
861
+$export['tableofcontents_back_to_top_location_4'] = $strongarm;
862
+
863
+$strongarm = new stdClass;
864
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
865
+$strongarm->api_version = 1;
866
+$strongarm->name = 'tableofcontents_back_to_top_location_6';
867
+$strongarm->value = 'bottom';
868
+$export['tableofcontents_back_to_top_location_6'] = $strongarm;
869
+
870
+$strongarm = new stdClass;
871
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
872
+$strongarm->api_version = 1;
873
+$strongarm->name = 'tableofcontents_back_to_top_maxlevel_4';
874
+$strongarm->value = '4';
875
+$export['tableofcontents_back_to_top_maxlevel_4'] = $strongarm;
876
+
877
+$strongarm = new stdClass;
878
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
879
+$strongarm->api_version = 1;
880
+$strongarm->name = 'tableofcontents_back_to_top_maxlevel_6';
881
+$strongarm->value = '4';
882
+$export['tableofcontents_back_to_top_maxlevel_6'] = $strongarm;
883
+
884
+$strongarm = new stdClass;
885
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
886
+$strongarm->api_version = 1;
887
+$strongarm->name = 'tableofcontents_back_to_top_minlevel_4';
888
+$strongarm->value = '2';
889
+$export['tableofcontents_back_to_top_minlevel_4'] = $strongarm;
890
+
891
+$strongarm = new stdClass;
892
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
893
+$strongarm->api_version = 1;
894
+$strongarm->name = 'tableofcontents_back_to_top_minlevel_6';
895
+$strongarm->value = '2';
896
+$export['tableofcontents_back_to_top_minlevel_6'] = $strongarm;
897
+
898
+$strongarm = new stdClass;
899
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
900
+$strongarm->api_version = 1;
901
+$strongarm->name = 'tableofcontents_collapsed_4';
902
+$strongarm->value = 0;
903
+$export['tableofcontents_collapsed_4'] = $strongarm;
904
+
905
+$strongarm = new stdClass;
906
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
907
+$strongarm->api_version = 1;
908
+$strongarm->name = 'tableofcontents_collapsed_6';
909
+$strongarm->value = 0;
910
+$export['tableofcontents_collapsed_6'] = $strongarm;
911
+
912
+$strongarm = new stdClass;
913
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
914
+$strongarm->api_version = 1;
915
+$strongarm->name = 'tableofcontents_comments_4';
916
+$strongarm->value = 0;
917
+$export['tableofcontents_comments_4'] = $strongarm;
918
+
919
+$strongarm = new stdClass;
920
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
921
+$strongarm->api_version = 1;
922
+$strongarm->name = 'tableofcontents_comments_6';
923
+$strongarm->value = 0;
924
+$export['tableofcontents_comments_6'] = $strongarm;
925
+
926
+$strongarm = new stdClass;
927
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
928
+$strongarm->api_version = 1;
929
+$strongarm->name = 'tableofcontents_comments_level_4';
930
+$strongarm->value = '3';
931
+$export['tableofcontents_comments_level_4'] = $strongarm;
932
+
933
+$strongarm = new stdClass;
934
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
935
+$strongarm->api_version = 1;
936
+$strongarm->name = 'tableofcontents_comments_level_6';
937
+$strongarm->value = '3';
938
+$export['tableofcontents_comments_level_6'] = $strongarm;
939
+
940
+$strongarm = new stdClass;
941
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
942
+$strongarm->api_version = 1;
943
+$strongarm->name = 'tableofcontents_hide_show_4';
944
+$strongarm->value = 1;
945
+$export['tableofcontents_hide_show_4'] = $strongarm;
946
+
947
+$strongarm = new stdClass;
948
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
949
+$strongarm->api_version = 1;
950
+$strongarm->name = 'tableofcontents_hide_show_6';
951
+$strongarm->value = 1;
952
+$export['tableofcontents_hide_show_6'] = $strongarm;
953
+
954
+$strongarm = new stdClass;
955
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
956
+$strongarm->api_version = 1;
957
+$strongarm->name = 'tableofcontents_hide_table_4';
958
+$strongarm->value = 0;
959
+$export['tableofcontents_hide_table_4'] = $strongarm;
960
+
961
+$strongarm = new stdClass;
962
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
963
+$strongarm->api_version = 1;
964
+$strongarm->name = 'tableofcontents_hide_table_6';
965
+$strongarm->value = 0;
966
+$export['tableofcontents_hide_table_6'] = $strongarm;
967
+
968
+$strongarm = new stdClass;
969
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
970
+$strongarm->api_version = 1;
971
+$strongarm->name = 'tableofcontents_identifier_introducer_4';
972
+$strongarm->value = 'header';
973
+$export['tableofcontents_identifier_introducer_4'] = $strongarm;
974
+
975
+$strongarm = new stdClass;
976
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
977
+$strongarm->api_version = 1;
978
+$strongarm->name = 'tableofcontents_identifier_introducer_6';
979
+$strongarm->value = 'header';
980
+$export['tableofcontents_identifier_introducer_6'] = $strongarm;
981
+
982
+$strongarm = new stdClass;
983
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
984
+$strongarm->api_version = 1;
985
+$strongarm->name = 'tableofcontents_id_generator_4';
986
+$strongarm->value = 'title';
987
+$export['tableofcontents_id_generator_4'] = $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 = 'tableofcontents_id_generator_6';
993
+$strongarm->value = 'title';
994
+$export['tableofcontents_id_generator_6'] = $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 = 'tableofcontents_id_separator_4';
1000
+$strongarm->value = '-';
1001
+$export['tableofcontents_id_separator_4'] = $strongarm;
1002
+
1003
+$strongarm = new stdClass;
1004
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1005
+$strongarm->api_version = 1;
1006
+$strongarm->name = 'tableofcontents_id_separator_6';
1007
+$strongarm->value = '-';
1008
+$export['tableofcontents_id_separator_6'] = $strongarm;
1009
+
1010
+$strongarm = new stdClass;
1011
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1012
+$strongarm->api_version = 1;
1013
+$strongarm->name = 'tableofcontents_id_stripping_4';
1014
+$strongarm->value = array(
1015
+'digits' => 0,
1016
+'dashes' => 0,
1017
+'periods' => 0,
1018
+'underscores' => 0,
1019
+'colons' => 0,
1020
+);
1021
+$export['tableofcontents_id_stripping_4'] = $strongarm;
1022
+
1023
+$strongarm = new stdClass;
1024
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1025
+$strongarm->api_version = 1;
1026
+$strongarm->name = 'tableofcontents_id_stripping_6';
1027
+$strongarm->value = array(
1028
+'digits' => 0,
1029
+'dashes' => 0,
1030
+'periods' => 0,
1031
+'underscores' => 0,
1032
+'colons' => 0,
1033
+);
1034
+$export['tableofcontents_id_stripping_6'] = $strongarm;
1035
+
1036
+$strongarm = new stdClass;
1037
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1038
+$strongarm->api_version = 1;
1039
+$strongarm->name = 'tableofcontents_maxlevel_4';
1040
+$strongarm->value = '3';
1041
+$export['tableofcontents_maxlevel_4'] = $strongarm;
1042
+
1043
+$strongarm = new stdClass;
1044
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1045
+$strongarm->api_version = 1;
1046
+$strongarm->name = 'tableofcontents_maxlevel_6';
1047
+$strongarm->value = '3';
1048
+$export['tableofcontents_maxlevel_6'] = $strongarm;
1049
+
1050
+$strongarm = new stdClass;
1051
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1052
+$strongarm->api_version = 1;
1053
+$strongarm->name = 'tableofcontents_minlevel_4';
1054
+$strongarm->value = '2';
1055
+$export['tableofcontents_minlevel_4'] = $strongarm;
1056
+
1057
+$strongarm = new stdClass;
1058
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1059
+$strongarm->api_version = 1;
1060
+$strongarm->name = 'tableofcontents_minlevel_6';
1061
+$strongarm->value = '2';
1062
+$export['tableofcontents_minlevel_6'] = $strongarm;
1063
+
1064
+$strongarm = new stdClass;
1065
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1066
+$strongarm->api_version = 1;
1067
+$strongarm->name = 'tableofcontents_min_limit_4';
1068
+$strongarm->value = '5';
1069
+$export['tableofcontents_min_limit_4'] = $strongarm;
1070
+
1071
+$strongarm = new stdClass;
1072
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1073
+$strongarm->api_version = 1;
1074
+$strongarm->name = 'tableofcontents_min_limit_6';
1075
+$strongarm->value = '5';
1076
+$export['tableofcontents_min_limit_6'] = $strongarm;
1077
+
1078
+$strongarm = new stdClass;
1079
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1080
+$strongarm->api_version = 1;
1081
+$strongarm->name = 'tableofcontents_nodetype_toc_automatic_';
1082
+$strongarm->value = '0';
1083
+$export['tableofcontents_nodetype_toc_automatic_'] = $strongarm;
1084
+
1085
+$strongarm = new stdClass;
1086
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1087
+$strongarm->api_version = 1;
1088
+$strongarm->name = 'tableofcontents_nodetype_toc_automatic_forum';
1089
+$strongarm->value = '0';
1090
+$export['tableofcontents_nodetype_toc_automatic_forum'] = $strongarm;
1091
+
1092
+$strongarm = new stdClass;
1093
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1094
+$strongarm->api_version = 1;
1095
+$strongarm->name = 'tableofcontents_nodetype_toc_automatic_profile';
1096
+$strongarm->value = '0';
1097
+$export['tableofcontents_nodetype_toc_automatic_profile'] = $strongarm;
1098
+
1099
+$strongarm = new stdClass;
1100
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1101
+$strongarm->api_version = 1;
1102
+$strongarm->name = 'tableofcontents_nodetype_toc_automatic_team';
1103
+$strongarm->value = '0';
1104
+$export['tableofcontents_nodetype_toc_automatic_team'] = $strongarm;
1105
+
1106
+$strongarm = new stdClass;
1107
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1108
+$strongarm->api_version = 1;
1109
+$strongarm->name = 'tableofcontents_nodetype_toc_automatic_team_forum';
1110
+$strongarm->value = '0';
1111
+$export['tableofcontents_nodetype_toc_automatic_team_forum'] = $strongarm;
1112
+
1113
+$strongarm = new stdClass;
1114
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1115
+$strongarm->api_version = 1;
1116
+$strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_';
1117
+$strongarm->value = 1;
1118
+$export['tableofcontents_nodetype_toc_remove_from_teaser_'] = $strongarm;
1119
+
1120
+$strongarm = new stdClass;
1121
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1122
+$strongarm->api_version = 1;
1123
+$strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_forum';
1124
+$strongarm->value = 1;
1125
+$export['tableofcontents_nodetype_toc_remove_from_teaser_forum'] = $strongarm;
1126
+
1127
+$strongarm = new stdClass;
1128
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1129
+$strongarm->api_version = 1;
1130
+$strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_profile';
1131
+$strongarm->value = 1;
1132
+$export['tableofcontents_nodetype_toc_remove_from_teaser_profile'] = $strongarm;
1133
+
1134
+$strongarm = new stdClass;
1135
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1136
+$strongarm->api_version = 1;
1137
+$strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_team';
1138
+$strongarm->value = 1;
1139
+$export['tableofcontents_nodetype_toc_remove_from_teaser_team'] = $strongarm;
1140
+
1141
+$strongarm = new stdClass;
1142
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1143
+$strongarm->api_version = 1;
1144
+$strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_team_forum';
1145
+$strongarm->value = 1;
1146
+$export['tableofcontents_nodetype_toc_remove_from_teaser_team_forum'] = $strongarm;
1147
+
1148
+$strongarm = new stdClass;
1149
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1150
+$strongarm->api_version = 1;
1151
+$strongarm->name = 'tableofcontents_nodetype_toc_vtoc_';
1152
+$strongarm->value = 0;
1153
+$export['tableofcontents_nodetype_toc_vtoc_'] = $strongarm;
1154
+
1155
+$strongarm = new stdClass;
1156
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1157
+$strongarm->api_version = 1;
1158
+$strongarm->name = 'tableofcontents_nodetype_toc_vtoc_forum';
1159
+$strongarm->value = 0;
1160
+$export['tableofcontents_nodetype_toc_vtoc_forum'] = $strongarm;
1161
+
1162
+$strongarm = new stdClass;
1163
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1164
+$strongarm->api_version = 1;
1165
+$strongarm->name = 'tableofcontents_nodetype_toc_vtoc_profile';
1166
+$strongarm->value = 0;
1167
+$export['tableofcontents_nodetype_toc_vtoc_profile'] = $strongarm;
1168
+
1169
+$strongarm = new stdClass;
1170
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1171
+$strongarm->api_version = 1;
1172
+$strongarm->name = 'tableofcontents_nodetype_toc_vtoc_team';
1173
+$strongarm->value = 0;
1174
+$export['tableofcontents_nodetype_toc_vtoc_team'] = $strongarm;
1175
+
1176
+$strongarm = new stdClass;
1177
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1178
+$strongarm->api_version = 1;
1179
+$strongarm->name = 'tableofcontents_nodetype_toc_vtoc_team_forum';
1180
+$strongarm->value = 0;
1181
+$export['tableofcontents_nodetype_toc_vtoc_team_forum'] = $strongarm;
1182
+
1183
+$strongarm = new stdClass;
1184
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1185
+$strongarm->api_version = 1;
1186
+$strongarm->name = 'tableofcontents_numbering_4';
1187
+$strongarm->value = '0';
1188
+$export['tableofcontents_numbering_4'] = $strongarm;
1189
+
1190
+$strongarm = new stdClass;
1191
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1192
+$strongarm->api_version = 1;
1193
+$strongarm->name = 'tableofcontents_numbering_6';
1194
+$strongarm->value = '0';
1195
+$export['tableofcontents_numbering_6'] = $strongarm;
1196
+
1197
+$strongarm = new stdClass;
1198
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1199
+$strongarm->api_version = 1;
1200
+$strongarm->name = 'tableofcontents_number_end_letter_4';
1201
+$strongarm->value = '.';
1202
+$export['tableofcontents_number_end_letter_4'] = $strongarm;
1203
+
1204
+$strongarm = new stdClass;
1205
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1206
+$strongarm->api_version = 1;
1207
+$strongarm->name = 'tableofcontents_number_end_letter_6';
1208
+$strongarm->value = '.';
1209
+$export['tableofcontents_number_end_letter_6'] = $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 = 'tableofcontents_number_headers_4';
1215
+$strongarm->value = 0;
1216
+$export['tableofcontents_number_headers_4'] = $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 = 'tableofcontents_number_headers_6';
1222
+$strongarm->value = 0;
1223
+$export['tableofcontents_number_headers_6'] = $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 = 'tableofcontents_number_mode_4';
1229
+$strongarm->value = '0';
1230
+$export['tableofcontents_number_mode_4'] = $strongarm;
1231
+
1232
+$strongarm = new stdClass;
1233
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1234
+$strongarm->api_version = 1;
1235
+$strongarm->name = 'tableofcontents_number_mode_6';
1236
+$strongarm->value = '0';
1237
+$export['tableofcontents_number_mode_6'] = $strongarm;
1238
+
1239
+$strongarm = new stdClass;
1240
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1241
+$strongarm->api_version = 1;
1242
+$strongarm->name = 'tableofcontents_number_separator_4';
1243
+$strongarm->value = '.';
1244
+$export['tableofcontents_number_separator_4'] = $strongarm;
1245
+
1246
+$strongarm = new stdClass;
1247
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1248
+$strongarm->api_version = 1;
1249
+$strongarm->name = 'tableofcontents_number_separator_6';
1250
+$strongarm->value = '.';
1251
+$export['tableofcontents_number_separator_6'] = $strongarm;
1252
+
1253
+$strongarm = new stdClass;
1254
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1255
+$strongarm->api_version = 1;
1256
+$strongarm->name = 'tableofcontents_number_start_letter_4';
1257
+$strongarm->value = '';
1258
+$export['tableofcontents_number_start_letter_4'] = $strongarm;
1259
+
1260
+$strongarm = new stdClass;
1261
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1262
+$strongarm->api_version = 1;
1263
+$strongarm->name = 'tableofcontents_number_start_letter_6';
1264
+$strongarm->value = '';
1265
+$export['tableofcontents_number_start_letter_6'] = $strongarm;
1266
+
1267
+$strongarm = new stdClass;
1268
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1269
+$strongarm->api_version = 1;
1270
+$strongarm->name = 'tableofcontents_remove_from_teaser_admin_forum';
1271
+$strongarm->value = 1;
1272
+$export['tableofcontents_remove_from_teaser_admin_forum'] = $strongarm;
1273
+
1274
+$strongarm = new stdClass;
1275
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1276
+$strongarm->api_version = 1;
1277
+$strongarm->name = 'tableofcontents_remove_from_teaser_forum';
1278
+$strongarm->value = 1;
1279
+$export['tableofcontents_remove_from_teaser_forum'] = $strongarm;
1280
+
1281
+$strongarm = new stdClass;
1282
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1283
+$strongarm->api_version = 1;
1284
+$strongarm->name = 'tableofcontents_remove_from_teaser_profile';
1285
+$strongarm->value = 1;
1286
+$export['tableofcontents_remove_from_teaser_profile'] = $strongarm;
1287
+
1288
+$strongarm = new stdClass;
1289
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1290
+$strongarm->api_version = 1;
1291
+$strongarm->name = 'tableofcontents_remove_from_teaser_team';
1292
+$strongarm->value = 1;
1293
+$export['tableofcontents_remove_from_teaser_team'] = $strongarm;
1294
+
1295
+$strongarm = new stdClass;
1296
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1297
+$strongarm->api_version = 1;
1298
+$strongarm->name = 'tableofcontents_remove_from_teaser_team_forum';
1299
+$strongarm->value = 1;
1300
+$export['tableofcontents_remove_from_teaser_team_forum'] = $strongarm;
1301
+
1302
+$strongarm = new stdClass;
1303
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1304
+$strongarm->api_version = 1;
1305
+$strongarm->name = 'tableofcontents_remove_teaser_4';
1306
+$strongarm->value = 1;
1307
+$export['tableofcontents_remove_teaser_4'] = $strongarm;
1308
+
1309
+$strongarm = new stdClass;
1310
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1311
+$strongarm->api_version = 1;
1312
+$strongarm->name = 'tableofcontents_remove_teaser_6';
1313
+$strongarm->value = 1;
1314
+$export['tableofcontents_remove_teaser_6'] = $strongarm;
1315
+
1316
+$strongarm = new stdClass;
1317
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1318
+$strongarm->api_version = 1;
1319
+$strongarm->name = 'tableofcontents_safe_title_4';
1320
+$strongarm->value = 1;
1321
+$export['tableofcontents_safe_title_4'] = $strongarm;
1322
+
1323
+$strongarm = new stdClass;
1324
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1325
+$strongarm->api_version = 1;
1326
+$strongarm->name = 'tableofcontents_safe_title_6';
1327
+$strongarm->value = 1;
1328
+$export['tableofcontents_safe_title_6'] = $strongarm;
1329
+
1330
+$strongarm = new stdClass;
1331
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1332
+$strongarm->api_version = 1;
1333
+$strongarm->name = 'tableofcontents_scroll_back_to_top_4';
1334
+$strongarm->value = 0;
1335
+$export['tableofcontents_scroll_back_to_top_4'] = $strongarm;
1336
+
1337
+$strongarm = new stdClass;
1338
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1339
+$strongarm->api_version = 1;
1340
+$strongarm->name = 'tableofcontents_scroll_back_to_top_6';
1341
+$strongarm->value = 0;
1342
+$export['tableofcontents_scroll_back_to_top_6'] = $strongarm;
1343
+
1344
+$strongarm = new stdClass;
1345
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1346
+$strongarm->api_version = 1;
1347
+$strongarm->name = 'tableofcontents_title_4';
1348
+$strongarm->value = 'Table of Contents';
1349
+$export['tableofcontents_title_4'] = $strongarm;
1350
+
1351
+$strongarm = new stdClass;
1352
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1353
+$strongarm->api_version = 1;
1354
+$strongarm->name = 'tableofcontents_title_6';
1355
+$strongarm->value = 'Table of Contents';
1356
+$export['tableofcontents_title_6'] = $strongarm;
1357
+
1358
+$strongarm = new stdClass;
1359
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1360
+$strongarm->api_version = 1;
1361
+$strongarm->name = 'tableofcontents_toc_automatic_admin_forum';
1362
+$strongarm->value = '0';
1363
+$export['tableofcontents_toc_automatic_admin_forum'] = $strongarm;
1364
+
1365
+$strongarm = new stdClass;
1366
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1367
+$strongarm->api_version = 1;
1368
+$strongarm->name = 'tableofcontents_toc_automatic_forum';
1369
+$strongarm->value = '0';
1370
+$export['tableofcontents_toc_automatic_forum'] = $strongarm;
1371
+
1372
+$strongarm = new stdClass;
1373
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1374
+$strongarm->api_version = 1;
1375
+$strongarm->name = 'tableofcontents_toc_automatic_profile';
1376
+$strongarm->value = '0';
1377
+$export['tableofcontents_toc_automatic_profile'] = $strongarm;
1378
+
1379
+$strongarm = new stdClass;
1380
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1381
+$strongarm->api_version = 1;
1382
+$strongarm->name = 'tableofcontents_toc_automatic_team';
1383
+$strongarm->value = '0';
1384
+$export['tableofcontents_toc_automatic_team'] = $strongarm;
1385
+
1386
+$strongarm = new stdClass;
1387
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1388
+$strongarm->api_version = 1;
1389
+$strongarm->name = 'tableofcontents_toc_automatic_team_forum';
1390
+$strongarm->value = '0';
1391
+$export['tableofcontents_toc_automatic_team_forum'] = $strongarm;
1392
+
1393
+$strongarm = new stdClass;
1394
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1395
+$strongarm->api_version = 1;
1396
+$strongarm->name = 'tableofcontents_vtoc_admin_forum';
1397
+$strongarm->value = 0;
1398
+$export['tableofcontents_vtoc_admin_forum'] = $strongarm;
1399
+
1400
+$strongarm = new stdClass;
1401
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1402
+$strongarm->api_version = 1;
1403
+$strongarm->name = 'tableofcontents_vtoc_forum';
1404
+$strongarm->value = 0;
1405
+$export['tableofcontents_vtoc_forum'] = $strongarm;
1406
+
1407
+$strongarm = new stdClass;
1408
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1409
+$strongarm->api_version = 1;
1410
+$strongarm->name = 'tableofcontents_vtoc_profile';
1411
+$strongarm->value = 0;
1412
+$export['tableofcontents_vtoc_profile'] = $strongarm;
1413
+
1414
+$strongarm = new stdClass;
1415
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1416
+$strongarm->api_version = 1;
1417
+$strongarm->name = 'tableofcontents_vtoc_team';
1418
+$strongarm->value = 0;
1419
+$export['tableofcontents_vtoc_team'] = $strongarm;
1420
+
1421
+$strongarm = new stdClass;
1422
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1423
+$strongarm->api_version = 1;
1424
+$strongarm->name = 'tableofcontents_vtoc_team_forum';
1425
+$strongarm->value = 0;
1426
+$export['tableofcontents_vtoc_team_forum'] = $strongarm;
1427
+
1428
+$strongarm = new stdClass;
1429
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1430
+$strongarm->api_version = 1;
1431
+$strongarm->name = 'tabtamer_tab_settings';
1432
+$strongarm->value = array(
1433
+'node/%/view' => array(
1434
+  'weight' => '-10',
1435
+  'action' => 'enabled',
1436
+  'tabtamer_original_path' => 'node/%node/view',
1437
+  'tabtamer_title' => '',
1438
+),
1439
+'node/%/edit' => array(
1440
+  'weight' => '1',
1441
+  'action' => 'enabled',
1442
+  'tabtamer_original_path' => 'node/%node/edit',
1443
+  'tabtamer_title' => '',
1444
+),
1445
+'node/%/revisions' => array(
1446
+  'weight' => '2',
1447
+  'action' => 'enabled',
1448
+  'tabtamer_original_path' => 'node/%node/revisions',
1449
+  'tabtamer_title' => '',
1450
+),
1451
+'node/%/panel_layout' => array(
1452
+  'weight' => '2',
1453
+  'action' => 'enabled',
1454
+  'tabtamer_original_path' => 'node/%node/panel_layout',
1455
+  'tabtamer_title' => '',
1456
+),
1457
+'node/%/panel_content' => array(
1458
+  'weight' => '3',
1459
+  'action' => 'enabled',
1460
+  'tabtamer_original_path' => 'node/%node/panel_content',
1461
+  'tabtamer_title' => '',
1462
+),
1463
+'node/%/revisions/list' => array(
1464
+  'weight' => '0',
1465
+  'action' => 'enabled',
1466
+  'tabtamer_original_path' => 'node/%node/revisions/list',
1467
+  'tabtamer_title' => '',
1468
+),
1469
+'node/%/revisions/view/%/%' => array(
1470
+  'weight' => '0',
1471
+  'action' => 'enabled',
1472
+  'tabtamer_original_path' => 'node/%node/revisions/view/%/%',
1473
+  'tabtamer_title' => '',
1474
+),
1475
+'node/%/revisions/view/latest' => array(
1476
+  'weight' => '0',
1477
+  'action' => 'enabled',
1478
+  'tabtamer_original_path' => 'node/%node/revisions/view/latest',
1479
+  'tabtamer_title' => '',
1480
+),
1481
+'search/node/%' => array(
1482
+  'weight' => '0',
1483
+  'action' => 'enabled',
1484
+  'tabtamer_original_path' => 'search/node/%menu_tail',
1485
+  'tabtamer_title' => '',
1486
+),
1487
+'search/user/%' => array(
1488
+  'weight' => '0',
1489
+  'action' => 'enabled',
1490
+  'tabtamer_original_path' => 'search/user/%menu_tail',
1491
+  'tabtamer_title' => '',
1492
+),
1493
+'user/login' => array(
1494
+  'weight' => '0',
1495
+  'action' => 'enabled',
1496
+  'tabtamer_original_path' => 'user/login',
1497
+  'tabtamer_title' => '',
1498
+),
1499
+'user/register' => array(
1500
+  'weight' => '0',
1501
+  'action' => 'enabled',
1502
+  'tabtamer_original_path' => 'user/register',
1503
+  'tabtamer_title' => '',
1504
+),
1505
+'user/password' => array(
1506
+  'weight' => '0',
1507
+  'action' => 'enabled',
1508
+  'tabtamer_original_path' => 'user/password',
1509
+  'tabtamer_title' => '',
1510
+),
1511
+'user/%/view' => array(
1512
+  'weight' => '-10',
1513
+  'action' => 'hidden',
1514
+  'tabtamer_original_path' => 'user/%user/view',
1515
+  'tabtamer_title' => '',
1516
+),
1517
+'user/%/edit' => array(
1518
+  'weight' => '0',
1519
+  'action' => 'hidden',
1520
+  'tabtamer_original_path' => 'user/%user_category/edit',
1521
+  'tabtamer_title' => '',
1522
+),
1523
+'user/%/imce' => array(
1524
+  'weight' => '10',
1525
+  'action' => 'hidden',
1526
+  'tabtamer_original_path' => 'user/%user/imce',
1527
+  'tabtamer_title' => '',
1528
+),
1529
+'user/%/roles' => array(
1530
+  'weight' => '0',
1531
+  'action' => 'enabled',
1532
+  'tabtamer_original_path' => 'user/%user/roles',
1533
+  'tabtamer_title' => '',
1534
+),
1535
+'user/%/messages' => array(
1536
+  'weight' => '0',
1537
+  'action' => 'hidden',
1538
+  'tabtamer_original_path' => 'user/%/messages',
1539
+  'tabtamer_title' => '',
1540
+),
1541
+'user/%/friends' => array(
1542
+  'weight' => '0',
1543
+  'action' => 'hidden',
1544
+  'tabtamer_original_path' => 'user/%/friends',
1545
+  'tabtamer_title' => '',
1546
+),
1547
+'user/%/edit/account' => array(
1548
+  'weight' => '0',
1549
+  'action' => 'enabled',
1550
+  'tabtamer_original_path' => 'user/%user_category/edit/account',
1551
+  'tabtamer_title' => '',
1552
+),
1553
+'user/%/edit/profile' => array(
1554
+  'weight' => '1',
1555
+  'action' => 'hidden',
1556
+  'tabtamer_original_path' => 'user/%user_category/edit/profile',
1557
+  'tabtamer_title' => '',
1558
+),
1559
+'user/%/friends/pending' => array(
1560
+  'weight' => '0',
1561
+  'action' => 'enabled',
1562
+  'tabtamer_original_path' => 'user/%views_arg/friends/pending',
1563
+  'tabtamer_title' => '',
1564
+),
1565
+'user/%/friends/flagged' => array(
1566
+  'weight' => '0',
1567
+  'action' => 'enabled',
1568
+  'tabtamer_original_path' => 'user/%views_arg/friends/flagged',
1569
+  'tabtamer_title' => '',
1570
+),
1571
+'account/profile/view' => array(
1572
+  'weight' => '0',
1573
+  'action' => 'enabled',
1574
+  'tabtamer_original_path' => 'account/profile/view',
1575
+  'tabtamer_title' => '',
1576
+),
1577
+'account/profile/edit' => array(
1578
+  'weight' => '5',
1579
+  'action' => 'enabled',
1580
+  'tabtamer_original_path' => 'account/profile/edit',
1581
+  'tabtamer_title' => '',
1582
+),
1583
+'account/prefs/computing' => array(
1584
+  'weight' => '0',
1585
+  'action' => 'enabled',
1586
+  'tabtamer_original_path' => 'account/prefs/computing',
1587
+  'tabtamer_title' => '',
1588
+),
1589
+'account/prefs/project' => array(
1590
+  'weight' => '5',
1591
+  'action' => 'enabled',
1592
+  'tabtamer_original_path' => 'account/prefs/project',
1593
+  'tabtamer_title' => '',
1594
+),
1595
+'account/prefs/community' => array(
1596
+  'weight' => '10',
1597
+  'action' => 'enabled',
1598
+  'tabtamer_original_path' => 'account/prefs/community',
1599
+  'tabtamer_title' => '',
1600
+),
1601
+'account/prefs/privacy' => array(
1602
+  'weight' => '15',
1603
+  'action' => 'enabled',
1604
+  'tabtamer_original_path' => 'account/prefs/privacy',
1605
+  'tabtamer_title' => '',
1606
+),
1607
+'account/obsolete' => array(
1608
+  'weight' => '0',
1609
+  'action' => 'enabled',
1610
+  'tabtamer_original_path' => 'account/obsolete',
1611
+  'tabtamer_title' => '',
1612
+),
1613
+'account/tasks/all' => array(
1614
+  'weight' => '0',
1615
+  'action' => 'enabled',
1616
+  'tabtamer_original_path' => 'account/tasks/all',
1617
+  'tabtamer_title' => '',
1618
+),
1619
+'account/tasks/error' => array(
1620
+  'weight' => '5',
1621
+  'action' => 'enabled',
1622
+  'tabtamer_original_path' => 'account/tasks/error',
1623
+  'tabtamer_title' => '',
1624
+),
1625
+'account/tasks/active' => array(
1626
+  'weight' => '1',
1627
+  'action' => 'enabled',
1628
+  'tabtamer_original_path' => 'account/tasks/active',
1629
+  'tabtamer_title' => '',
1630
+),
1631
+'account/tasks/invalid' => array(
1632
+  'weight' => '4',
1633
+  'action' => 'enabled',
1634
+  'tabtamer_original_path' => 'account/tasks/invalid',
1635
+  'tabtamer_title' => '',
1636
+),
1637
+'account/tasks/pending' => array(
1638
+  'weight' => '2',
1639
+  'action' => 'enabled',
1640
+  'tabtamer_original_path' => 'account/tasks/pending',
1641
+  'tabtamer_title' => '',
1642
+),
1643
+'account/tasks/valid' => array(
1644
+  'weight' => '3',
1645
+  'action' => 'enabled',
1646
+  'tabtamer_original_path' => 'account/tasks/valid',
1647
+  'tabtamer_title' => '',
1648
+),
1649
+'account/computers/all' => array(
1650
+  'weight' => '1',
1651
+  'action' => 'enabled',
1652
+  'tabtamer_original_path' => 'account/computers/all',
1653
+  'tabtamer_title' => '',
1654
+),
1655
+'account/computers/active' => array(
1656
+  'weight' => '0',
1657
+  'action' => 'enabled',
1658
+  'tabtamer_original_path' => 'account/computers/active',
1659
+  'tabtamer_title' => '',
1660
+),
1661
+'account/%/computers' => array(
1662
+  'weight' => '0',
1663
+  'action' => 'hidden',
1664
+  'tabtamer_original_path' => 'account/%views_arg/computers',
1665
+  'tabtamer_title' => '',
1666
+),
1667
+'account/%/computers/all' => array(
1668
+  'weight' => '1',
1669
+  'action' => 'enabled',
1670
+  'tabtamer_original_path' => 'account/%views_arg/computers/all',
1671
+  'tabtamer_title' => '',
1672
+),
1673
+'account/%/friends/all' => array(
1674
+  'weight' => '-10',
1675
+  'action' => 'enabled',
1676
+  'tabtamer_original_path' => 'account/%/friends/all',
1677
+  'tabtamer_title' => '',
1678
+),
1679
+'account/%/friends/pending' => array(
1680
+  'weight' => '0',
1681
+  'action' => 'enabled',
1682
+  'tabtamer_original_path' => 'account/%views_arg/friends/pending',
1683
+  'tabtamer_title' => '',
1684
+),
1685
+'account/%/friends/flagged' => array(
1686
+  'weight' => '0',
1687
+  'action' => 'enabled',
1688
+  'tabtamer_original_path' => 'account/%views_arg/friends/flagged',
1689
+  'tabtamer_title' => '',
1690
+),
1691
+'join/new' => array(
1692
+  'weight' => '0',
1693
+  'action' => 'enabled',
1694
+  'tabtamer_original_path' => 'join/new',
1695
+  'tabtamer_title' => '',
1696
+),
1697
+'join/boinc' => array(
1698
+  'weight' => '5',
1699
+  'action' => 'enabled',
1700
+  'tabtamer_original_path' => 'join/boinc',
1701
+  'tabtamer_title' => '',
1702
+),
1703
+'messages/list' => array(
1704
+  'weight' => '-10',
1705
+  'action' => 'enabled',
1706
+  'tabtamer_original_path' => 'messages/list',
1707
+  'tabtamer_title' => '',
1708
+),
1709
+'messages/view/%' => array(
1710
+  'weight' => '-5',
1711
+  'action' => 'enabled',
1712
+  'tabtamer_original_path' => 'messages/view/%privatemsg_thread',
1713
+  'tabtamer_title' => '',
1714
+),
1715
+'messages/new' => array(
1716
+  'weight' => '-3',
1717
+  'action' => 'enabled',
1718
+  'tabtamer_original_path' => 'messages/new',
1719
+  'tabtamer_title' => '',
1720
+),
1721
+'news' => array(
1722
+  'weight' => 0,
1723
+  'action' => 'enabled',
1724
+  'tabtamer_original_path' => 'news',
1725
+  'tabtamer_title' => '',
1726
+),
1727
+'workunit/%/tasks' => array(
1728
+  'weight' => '0',
1729
+  'action' => 'enabled',
1730
+  'tabtamer_original_path' => 'workunit/%views_arg/tasks',
1731
+  'tabtamer_title' => '',
1732
+),
1733
+'workunit/%/tasks/error' => array(
1734
+  'weight' => '5',
1735
+  'action' => 'enabled',
1736
+  'tabtamer_original_path' => 'workunit/%views_arg/tasks/error',
1737
+  'tabtamer_title' => '',
1738
+),
1739
+'workunit/%/tasks/active' => array(
1740
+  'weight' => '1',
1741
+  'action' => 'enabled',
1742
+  'tabtamer_original_path' => 'workunit/%views_arg/tasks/active',
1743
+  'tabtamer_title' => '',
1744
+),
1745
+'workunit/%/tasks/invalid' => array(
1746
+  'weight' => '4',
1747
+  'action' => 'enabled',
1748
+  'tabtamer_original_path' => 'workunit/%views_arg/tasks/invalid',
1749
+  'tabtamer_title' => '',
1750
+),
1751
+'workunit/%/tasks/pending' => array(
1752
+  'weight' => '2',
1753
+  'action' => 'enabled',
1754
+  'tabtamer_original_path' => 'workunit/%views_arg/tasks/pending',
1755
+  'tabtamer_title' => '',
1756
+),
1757
+'workunit/%/tasks/valid' => array(
1758
+  'weight' => '3',
1759
+  'action' => 'enabled',
1760
+  'tabtamer_original_path' => 'workunit/%views_arg/tasks/valid',
1761
+  'tabtamer_title' => '',
1762
+),
1763
+'host/%/tasks' => array(
1764
+  'weight' => '0',
1765
+  'action' => 'enabled',
1766
+  'tabtamer_original_path' => 'host/%views_arg/tasks',
1767
+  'tabtamer_title' => '',
1768
+),
1769
+'host/%/tasks/error' => array(
1770
+  'weight' => '5',
1771
+  'action' => 'enabled',
1772
+  'tabtamer_original_path' => 'host/%views_arg/tasks/error',
1773
+  'tabtamer_title' => '',
1774
+),
1775
+'host/%/tasks/active' => array(
1776
+  'weight' => '1',
1777
+  'action' => 'enabled',
1778
+  'tabtamer_original_path' => 'host/%views_arg/tasks/active',
1779
+  'tabtamer_title' => '',
1780
+),
1781
+'host/%/tasks/invalid' => array(
1782
+  'weight' => '4',
1783
+  'action' => 'enabled',
1784
+  'tabtamer_original_path' => 'host/%views_arg/tasks/invalid',
1785
+  'tabtamer_title' => '',
1786
+),
1787
+'host/%/tasks/pending' => array(
1788
+  'weight' => '2',
1789
+  'action' => 'enabled',
1790
+  'tabtamer_original_path' => 'host/%views_arg/tasks/pending',
1791
+  'tabtamer_title' => '',
1792
+),
1793
+'host/%/tasks/valid' => array(
1794
+  'weight' => '3',
1795
+  'action' => 'enabled',
1796
+  'tabtamer_original_path' => 'host/%views_arg/tasks/valid',
1797
+  'tabtamer_title' => '',
1798
+),
1799
+);
1800
+$export['tabtamer_tab_settings'] = $strongarm;
1801
+
1802
+$strongarm = new stdClass;
1803
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1804
+$strongarm->api_version = 1;
1805
+$strongarm->name = 'theme_boinc_settings';
1806
+$strongarm->value = array(
1807
+'zen_block_editing' => 1,
1808
+'zen_breadcrumb' => 'yes',
1809
+'zen_breadcrumb_separator' => ' › ',
1810
+'zen_breadcrumb_home' => 1,
1811
+'zen_breadcrumb_trailing' => 1,
1812
+'zen_breadcrumb_title' => 0,
1813
+'zen_rebuild_registry' => 1,
1814
+'zen_wireframes' => 0,
1815
+'boinc_stats_chart_color' => '#FAA341',
1816
+'boinc_stats_chart_bcolor' => '#FFFFFF',
1817
+'toggle_logo' => 1,
1818
+'toggle_name' => 1,
1819
+'toggle_slogan' => 0,
1820
+'toggle_mission' => 1,
1821
+'toggle_node_user_picture' => 0,
1822
+'toggle_comment_user_picture' => 1,
1823
+'toggle_search' => 0,
1824
+'toggle_favicon' => 1,
1825
+'toggle_primary_links' => 1,
1826
+'toggle_secondary_links' => 1,
1827
+'default_logo' => 1,
1828
+'logo_path' => '',
1829
+'logo_upload' => '',
1830
+'default_favicon' => 1,
1831
+'favicon_path' => '',
1832
+'favicon_upload' => '',
1833
+);
1834
+$export['theme_boinc_settings'] = $strongarm;
1835
+
1836
+$strongarm = new stdClass;
1837
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1838
+$strongarm->api_version = 1;
1839
+$strongarm->name = 'theme_default';
1840
+$strongarm->value = 'einstein';
1841
+$export['theme_default'] = $strongarm;
1842
+
1843
+$strongarm = new stdClass;
1844
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1845
+$strongarm->api_version = 1;
1846
+$strongarm->name = 'theme_einstein_settings';
1847
+$strongarm->value = array(
1848
+'zen_block_editing' => 1,
1849
+'zen_breadcrumb' => 'yes',
1850
+'zen_breadcrumb_separator' => ' › ',
1851
+'zen_breadcrumb_home' => 1,
1852
+'zen_breadcrumb_trailing' => 1,
1853
+'zen_breadcrumb_title' => 0,
1854
+'zen_rebuild_registry' => 0,
1855
+'zen_wireframes' => 0,
1856
+'toggle_logo' => 1,
1857
+'toggle_name' => 0,
1858
+'toggle_slogan' => 0,
1859
+'toggle_mission' => 1,
1860
+'toggle_node_user_picture' => 0,
1861
+'toggle_comment_user_picture' => 1,
1862
+'toggle_search' => 0,
1863
+'toggle_favicon' => 1,
1864
+'toggle_primary_links' => 1,
1865
+'toggle_secondary_links' => 1,
1866
+'default_logo' => 1,
1867
+'logo_path' => '',
1868
+'logo_upload' => '',
1869
+'default_favicon' => 1,
1870
+'favicon_path' => '',
1871
+'favicon_upload' => '',
1872
+'boinc_stats_chart_color' => '#009CDB',
1873
+'boinc_stats_chart_bcolor' => '#EEEEEE',
1874
+);
1875
+$export['theme_einstein_settings'] = $strongarm;
1876
+
1877
+$strongarm = new stdClass;
1878
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1879
+$strongarm->api_version = 1;
1880
+$strongarm->name = 'theme_settings';
1881
+$strongarm->value = array(
1882
+'toggle_node_info_page' => FALSE,
1883
+);
1884
+$export['theme_settings'] = $strongarm;
1885
+
1886
+$strongarm = new stdClass;
1887
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1888
+$strongarm->api_version = 1;
1889
+$strongarm->name = 'theme_zen_settings';
1890
+$strongarm->value = array(
1891
+'zen_block_editing' => '1',
1892
+'zen_breadcrumb' => 'yes',
1893
+'zen_breadcrumb_separator' => ' › ',
1894
+'zen_breadcrumb_home' => '1',
1895
+'zen_breadcrumb_trailing' => '1',
1896
+'zen_breadcrumb_title' => '0',
1897
+'zen_layout' => 'zen-columns-liquid',
1898
+'zen_rebuild_registry' => '0',
1899
+'zen_wireframes' => '0',
1900
+);
1901
+$export['theme_zen_settings'] = $strongarm;
1902
+
1903
+$strongarm = new stdClass;
1904
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1905
+$strongarm->api_version = 1;
1906
+$strongarm->name = 'upload_extensions_2938987599';
1907
+$strongarm->value = 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp';
1908
+$export['upload_extensions_2938987599'] = $strongarm;
1909
+
1910
+$strongarm = new stdClass;
1911
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1912
+$strongarm->api_version = 1;
1913
+$strongarm->name = 'upload_extensions_3519698132';
1914
+$strongarm->value = 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp';
1915
+$export['upload_extensions_3519698132'] = $strongarm;
1916
+
1917
+$strongarm = new stdClass;
1918
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1919
+$strongarm->api_version = 1;
1920
+$strongarm->name = 'upload_extensions_default';
1921
+$strongarm->value = 'jpg jpeg gif png txt pdf';
1922
+$export['upload_extensions_default'] = $strongarm;
1923
+
1924
+$strongarm = new stdClass;
1925
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1926
+$strongarm->api_version = 1;
1927
+$strongarm->name = 'upload_forum';
1928
+$strongarm->value = '0';
1929
+$export['upload_forum'] = $strongarm;
1930
+
1931
+$strongarm = new stdClass;
1932
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1933
+$strongarm->api_version = 1;
1934
+$strongarm->name = 'upload_list_default';
1935
+$strongarm->value = '0';
1936
+$export['upload_list_default'] = $strongarm;
1937
+
1938
+$strongarm = new stdClass;
1939
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1940
+$strongarm->api_version = 1;
1941
+$strongarm->name = 'upload_max_resolution';
1942
+$strongarm->value = '0';
1943
+$export['upload_max_resolution'] = $strongarm;
1944
+
1945
+$strongarm = new stdClass;
1946
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1947
+$strongarm->api_version = 1;
1948
+$strongarm->name = 'upload_uploadsize_2938987599';
1949
+$strongarm->value = '2';
1950
+$export['upload_uploadsize_2938987599'] = $strongarm;
1951
+
1952
+$strongarm = new stdClass;
1953
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1954
+$strongarm->api_version = 1;
1955
+$strongarm->name = 'upload_uploadsize_3519698132';
1956
+$strongarm->value = '2';
1957
+$export['upload_uploadsize_3519698132'] = $strongarm;
1958
+
1959
+$strongarm = new stdClass;
1960
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1961
+$strongarm->api_version = 1;
1962
+$strongarm->name = 'upload_uploadsize_default';
1963
+$strongarm->value = '2';
1964
+$export['upload_uploadsize_default'] = $strongarm;
1965
+
1966
+$strongarm = new stdClass;
1967
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1968
+$strongarm->api_version = 1;
1969
+$strongarm->name = 'upload_usersize_2938987599';
1970
+$strongarm->value = '1000';
1971
+$export['upload_usersize_2938987599'] = $strongarm;
1972
+
1973
+$strongarm = new stdClass;
1974
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1975
+$strongarm->api_version = 1;
1976
+$strongarm->name = 'upload_usersize_3519698132';
1977
+$strongarm->value = '1000';
1978
+$export['upload_usersize_3519698132'] = $strongarm;
1979
+
1980
+$strongarm = new stdClass;
1981
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1982
+$strongarm->api_version = 1;
1983
+$strongarm->name = 'upload_usersize_default';
1984
+$strongarm->value = '10';
1985
+$export['upload_usersize_default'] = $strongarm;
1986
+
1987
+$strongarm = new stdClass;
1988
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1989
+$strongarm->api_version = 1;
1990
+$strongarm->name = 'user_email_verification';
1991
+$strongarm->value = 0;
1992
+$export['user_email_verification'] = $strongarm;
1993
+
1994
+$strongarm = new stdClass;
1995
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1996
+$strongarm->api_version = 1;
1997
+$strongarm->name = 'user_mail_password_reset_body';
1998
+$strongarm->value = 'Hello,
1999 1999
 
2000 2000
 A request to reset the password for your account has been made at !site.
2001 2001
 
@@ -2008,20 +2008,20 @@  discard block
 block discarded – undo
2008 2008
 After logging in, you will be redirected to !edit_uri so you can change your password.
2009 2009
 
2010 2010
 --  !site team';
2011
-  $export['user_mail_password_reset_body'] = $strongarm;
2011
+$export['user_mail_password_reset_body'] = $strongarm;
2012 2012
 
2013
-  $strongarm = new stdClass;
2014
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2015
-  $strongarm->api_version = 1;
2016
-  $strongarm->name = 'user_mail_password_reset_subject';
2017
-  $strongarm->value = 'Replacement login information for !mailto at !site';
2018
-  $export['user_mail_password_reset_subject'] = $strongarm;
2013
+$strongarm = new stdClass;
2014
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2015
+$strongarm->api_version = 1;
2016
+$strongarm->name = 'user_mail_password_reset_subject';
2017
+$strongarm->value = 'Replacement login information for !mailto at !site';
2018
+$export['user_mail_password_reset_subject'] = $strongarm;
2019 2019
 
2020
-  $strongarm = new stdClass;
2021
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2022
-  $strongarm->api_version = 1;
2023
-  $strongarm->name = 'user_mail_register_admin_created_body';
2024
-  $strongarm->value = 'Hello,
2020
+$strongarm = new stdClass;
2021
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2022
+$strongarm->api_version = 1;
2023
+$strongarm->name = 'user_mail_register_admin_created_body';
2024
+$strongarm->value = 'Hello,
2025 2025
 
2026 2026
 A site administrator at !site has created an account for you. You may now log in to !login_uri using your email and your passphrase.
2027 2027
 
@@ -2034,56 +2034,56 @@  discard block
 block discarded – undo
2034 2034
 After logging in, you will be redirected to !edit_uri so you can change your password.
2035 2035
 
2036 2036
 --  !site team';
2037
-  $export['user_mail_register_admin_created_body'] = $strongarm;
2037
+$export['user_mail_register_admin_created_body'] = $strongarm;
2038 2038
 
2039
-  $strongarm = new stdClass;
2040
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2041
-  $strongarm->api_version = 1;
2042
-  $strongarm->name = 'user_mail_register_admin_created_subject';
2043
-  $strongarm->value = 'An administrator created an account for you at !site';
2044
-  $export['user_mail_register_admin_created_subject'] = $strongarm;
2039
+$strongarm = new stdClass;
2040
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2041
+$strongarm->api_version = 1;
2042
+$strongarm->name = 'user_mail_register_admin_created_subject';
2043
+$strongarm->value = 'An administrator created an account for you at !site';
2044
+$export['user_mail_register_admin_created_subject'] = $strongarm;
2045 2045
 
2046
-  $strongarm = new stdClass;
2047
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2048
-  $strongarm->api_version = 1;
2049
-  $strongarm->name = 'user_mail_register_no_approval_required_body';
2050
-  $strongarm->value = 'Hello,
2046
+$strongarm = new stdClass;
2047
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2048
+$strongarm->api_version = 1;
2049
+$strongarm->name = 'user_mail_register_no_approval_required_body';
2050
+$strongarm->value = 'Hello,
2051 2051
 
2052 2052
 Thank you for registering at !site. You may now log in to !login_uri using your email address and your passphrase.
2053 2053
 
2054 2054
 --  !site team';
2055
-  $export['user_mail_register_no_approval_required_body'] = $strongarm;
2055
+$export['user_mail_register_no_approval_required_body'] = $strongarm;
2056 2056
 
2057
-  $strongarm = new stdClass;
2058
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2059
-  $strongarm->api_version = 1;
2060
-  $strongarm->name = 'user_mail_register_no_approval_required_subject';
2061
-  $strongarm->value = 'Account details for !mailto at !site';
2062
-  $export['user_mail_register_no_approval_required_subject'] = $strongarm;
2057
+$strongarm = new stdClass;
2058
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2059
+$strongarm->api_version = 1;
2060
+$strongarm->name = 'user_mail_register_no_approval_required_subject';
2061
+$strongarm->value = 'Account details for !mailto at !site';
2062
+$export['user_mail_register_no_approval_required_subject'] = $strongarm;
2063 2063
 
2064
-  $strongarm = new stdClass;
2065
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2066
-  $strongarm->api_version = 1;
2067
-  $strongarm->name = 'user_mail_register_pending_approval_body';
2068
-  $strongarm->value = 'Hello,
2064
+$strongarm = new stdClass;
2065
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2066
+$strongarm->api_version = 1;
2067
+$strongarm->name = 'user_mail_register_pending_approval_body';
2068
+$strongarm->value = 'Hello,
2069 2069
 
2070 2070
 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.
2071 2071
 
2072 2072
 --  !site team';
2073
-  $export['user_mail_register_pending_approval_body'] = $strongarm;
2073
+$export['user_mail_register_pending_approval_body'] = $strongarm;
2074 2074
 
2075
-  $strongarm = new stdClass;
2076
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2077
-  $strongarm->api_version = 1;
2078
-  $strongarm->name = 'user_mail_register_pending_approval_subject';
2079
-  $strongarm->value = 'Account details for !mailto at !site (pending admin approval)';
2080
-  $export['user_mail_register_pending_approval_subject'] = $strongarm;
2075
+$strongarm = new stdClass;
2076
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2077
+$strongarm->api_version = 1;
2078
+$strongarm->name = 'user_mail_register_pending_approval_subject';
2079
+$strongarm->value = 'Account details for !mailto at !site (pending admin approval)';
2080
+$export['user_mail_register_pending_approval_subject'] = $strongarm;
2081 2081
 
2082
-  $strongarm = new stdClass;
2083
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2084
-  $strongarm->api_version = 1;
2085
-  $strongarm->name = 'user_mail_status_activated_body';
2086
-  $strongarm->value = 'Hello,
2082
+$strongarm = new stdClass;
2083
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2084
+$strongarm->api_version = 1;
2085
+$strongarm->name = 'user_mail_status_activated_body';
2086
+$strongarm->value = 'Hello,
2087 2087
 
2088 2088
 Your account at !site has been activated.
2089 2089
 
@@ -2097,134 +2097,134 @@  discard block
 block discarded – undo
2097 2097
 
2098 2098
 --  !site team
2099 2099
 ';
2100
-  $export['user_mail_status_activated_body'] = $strongarm;
2101
-
2102
-  $strongarm = new stdClass;
2103
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2104
-  $strongarm->api_version = 1;
2105
-  $strongarm->name = 'user_mail_status_activated_notify';
2106
-  $strongarm->value = 1;
2107
-  $export['user_mail_status_activated_notify'] = $strongarm;
2108
-
2109
-  $strongarm = new stdClass;
2110
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2111
-  $strongarm->api_version = 1;
2112
-  $strongarm->name = 'user_mail_status_activated_subject';
2113
-  $strongarm->value = 'Account details for !mailto at !site (approved)';
2114
-  $export['user_mail_status_activated_subject'] = $strongarm;
2115
-
2116
-  $strongarm = new stdClass;
2117
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2118
-  $strongarm->api_version = 1;
2119
-  $strongarm->name = 'user_mail_status_blocked_body';
2120
-  $strongarm->value = 'Hello,
2100
+$export['user_mail_status_activated_body'] = $strongarm;
2101
+
2102
+$strongarm = new stdClass;
2103
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2104
+$strongarm->api_version = 1;
2105
+$strongarm->name = 'user_mail_status_activated_notify';
2106
+$strongarm->value = 1;
2107
+$export['user_mail_status_activated_notify'] = $strongarm;
2108
+
2109
+$strongarm = new stdClass;
2110
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2111
+$strongarm->api_version = 1;
2112
+$strongarm->name = 'user_mail_status_activated_subject';
2113
+$strongarm->value = 'Account details for !mailto at !site (approved)';
2114
+$export['user_mail_status_activated_subject'] = $strongarm;
2115
+
2116
+$strongarm = new stdClass;
2117
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2118
+$strongarm->api_version = 1;
2119
+$strongarm->name = 'user_mail_status_blocked_body';
2120
+$strongarm->value = 'Hello,
2121 2121
 
2122 2122
 Your account on !site has been blocked.
2123 2123
 
2124 2124
 --  !site team';
2125
-  $export['user_mail_status_blocked_body'] = $strongarm;
2126
-
2127
-  $strongarm = new stdClass;
2128
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2129
-  $strongarm->api_version = 1;
2130
-  $strongarm->name = 'user_mail_status_blocked_notify';
2131
-  $strongarm->value = 0;
2132
-  $export['user_mail_status_blocked_notify'] = $strongarm;
2133
-
2134
-  $strongarm = new stdClass;
2135
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2136
-  $strongarm->api_version = 1;
2137
-  $strongarm->name = 'user_mail_status_blocked_subject';
2138
-  $strongarm->value = 'Account details for !mailto at !site (blocked)';
2139
-  $export['user_mail_status_blocked_subject'] = $strongarm;
2140
-
2141
-  $strongarm = new stdClass;
2142
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2143
-  $strongarm->api_version = 1;
2144
-  $strongarm->name = 'user_mail_status_deleted_body';
2145
-  $strongarm->value = 'Hello,
2125
+$export['user_mail_status_blocked_body'] = $strongarm;
2126
+
2127
+$strongarm = new stdClass;
2128
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2129
+$strongarm->api_version = 1;
2130
+$strongarm->name = 'user_mail_status_blocked_notify';
2131
+$strongarm->value = 0;
2132
+$export['user_mail_status_blocked_notify'] = $strongarm;
2133
+
2134
+$strongarm = new stdClass;
2135
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2136
+$strongarm->api_version = 1;
2137
+$strongarm->name = 'user_mail_status_blocked_subject';
2138
+$strongarm->value = 'Account details for !mailto at !site (blocked)';
2139
+$export['user_mail_status_blocked_subject'] = $strongarm;
2140
+
2141
+$strongarm = new stdClass;
2142
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2143
+$strongarm->api_version = 1;
2144
+$strongarm->name = 'user_mail_status_deleted_body';
2145
+$strongarm->value = 'Hello,
2146 2146
 
2147 2147
 Your account on !site has been deleted.
2148 2148
 
2149 2149
 --  !site team';
2150
-  $export['user_mail_status_deleted_body'] = $strongarm;
2151
-
2152
-  $strongarm = new stdClass;
2153
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2154
-  $strongarm->api_version = 1;
2155
-  $strongarm->name = 'user_mail_status_deleted_notify';
2156
-  $strongarm->value = 0;
2157
-  $export['user_mail_status_deleted_notify'] = $strongarm;
2158
-
2159
-  $strongarm = new stdClass;
2160
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2161
-  $strongarm->api_version = 1;
2162
-  $strongarm->name = 'user_mail_status_deleted_subject';
2163
-  $strongarm->value = 'Account details for !mailto at !site (deleted)';
2164
-  $export['user_mail_status_deleted_subject'] = $strongarm;
2165
-
2166
-  $strongarm = new stdClass;
2167
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2168
-  $strongarm->api_version = 1;
2169
-  $strongarm->name = 'user_pictures';
2170
-  $strongarm->value = '1';
2171
-  $export['user_pictures'] = $strongarm;
2172
-
2173
-  $strongarm = new stdClass;
2174
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2175
-  $strongarm->api_version = 1;
2176
-  $strongarm->name = 'user_picture_default';
2177
-  $strongarm->value = '';
2178
-  $export['user_picture_default'] = $strongarm;
2179
-
2180
-  $strongarm = new stdClass;
2181
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2182
-  $strongarm->api_version = 1;
2183
-  $strongarm->name = 'user_picture_dimensions';
2184
-  $strongarm->value = '85x85';
2185
-  $export['user_picture_dimensions'] = $strongarm;
2186
-
2187
-  $strongarm = new stdClass;
2188
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2189
-  $strongarm->api_version = 1;
2190
-  $strongarm->name = 'user_picture_file_size';
2191
-  $strongarm->value = '30';
2192
-  $export['user_picture_file_size'] = $strongarm;
2193
-
2194
-  $strongarm = new stdClass;
2195
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2196
-  $strongarm->api_version = 1;
2197
-  $strongarm->name = 'user_picture_guidelines';
2198
-  $strongarm->value = '';
2199
-  $export['user_picture_guidelines'] = $strongarm;
2200
-
2201
-  $strongarm = new stdClass;
2202
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2203
-  $strongarm->api_version = 1;
2204
-  $strongarm->name = 'user_picture_path';
2205
-  $strongarm->value = 'pictures';
2206
-  $export['user_picture_path'] = $strongarm;
2207
-
2208
-  $strongarm = new stdClass;
2209
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2210
-  $strongarm->api_version = 1;
2211
-  $strongarm->name = 'user_register';
2212
-  $strongarm->value = '0';
2213
-  $export['user_register'] = $strongarm;
2214
-
2215
-  $strongarm = new stdClass;
2216
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2217
-  $strongarm->api_version = 1;
2218
-  $strongarm->name = 'user_registration_help';
2219
-  $strongarm->value = '';
2220
-  $export['user_registration_help'] = $strongarm;
2221
-
2222
-  $strongarm = new stdClass;
2223
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2224
-  $strongarm->api_version = 1;
2225
-  $strongarm->name = 'user_signatures';
2226
-  $strongarm->value = '1';
2227
-  $export['user_signatures'] = $strongarm;
2228
-
2229
-  return $export;
2150
+$export['user_mail_status_deleted_body'] = $strongarm;
2151
+
2152
+$strongarm = new stdClass;
2153
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2154
+$strongarm->api_version = 1;
2155
+$strongarm->name = 'user_mail_status_deleted_notify';
2156
+$strongarm->value = 0;
2157
+$export['user_mail_status_deleted_notify'] = $strongarm;
2158
+
2159
+$strongarm = new stdClass;
2160
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2161
+$strongarm->api_version = 1;
2162
+$strongarm->name = 'user_mail_status_deleted_subject';
2163
+$strongarm->value = 'Account details for !mailto at !site (deleted)';
2164
+$export['user_mail_status_deleted_subject'] = $strongarm;
2165
+
2166
+$strongarm = new stdClass;
2167
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2168
+$strongarm->api_version = 1;
2169
+$strongarm->name = 'user_pictures';
2170
+$strongarm->value = '1';
2171
+$export['user_pictures'] = $strongarm;
2172
+
2173
+$strongarm = new stdClass;
2174
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2175
+$strongarm->api_version = 1;
2176
+$strongarm->name = 'user_picture_default';
2177
+$strongarm->value = '';
2178
+$export['user_picture_default'] = $strongarm;
2179
+
2180
+$strongarm = new stdClass;
2181
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2182
+$strongarm->api_version = 1;
2183
+$strongarm->name = 'user_picture_dimensions';
2184
+$strongarm->value = '85x85';
2185
+$export['user_picture_dimensions'] = $strongarm;
2186
+
2187
+$strongarm = new stdClass;
2188
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2189
+$strongarm->api_version = 1;
2190
+$strongarm->name = 'user_picture_file_size';
2191
+$strongarm->value = '30';
2192
+$export['user_picture_file_size'] = $strongarm;
2193
+
2194
+$strongarm = new stdClass;
2195
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2196
+$strongarm->api_version = 1;
2197
+$strongarm->name = 'user_picture_guidelines';
2198
+$strongarm->value = '';
2199
+$export['user_picture_guidelines'] = $strongarm;
2200
+
2201
+$strongarm = new stdClass;
2202
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2203
+$strongarm->api_version = 1;
2204
+$strongarm->name = 'user_picture_path';
2205
+$strongarm->value = 'pictures';
2206
+$export['user_picture_path'] = $strongarm;
2207
+
2208
+$strongarm = new stdClass;
2209
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2210
+$strongarm->api_version = 1;
2211
+$strongarm->name = 'user_register';
2212
+$strongarm->value = '0';
2213
+$export['user_register'] = $strongarm;
2214
+
2215
+$strongarm = new stdClass;
2216
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2217
+$strongarm->api_version = 1;
2218
+$strongarm->name = 'user_registration_help';
2219
+$strongarm->value = '';
2220
+$export['user_registration_help'] = $strongarm;
2221
+
2222
+$strongarm = new stdClass;
2223
+$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2224
+$strongarm->api_version = 1;
2225
+$strongarm->name = 'user_signatures';
2226
+$strongarm->value = '1';
2227
+$export['user_signatures'] = $strongarm;
2228
+
2229
+return $export;
2230 2230
 }
Please login to merge, or discard this patch.
all/features/boinc_standard/boinc_standard.features.user_permission.inc 1 patch
Switch Indentation   +595 added lines, -595 removed lines patch added patch discarded remove patch
@@ -4,599 +4,599 @@
 block discarded – undo
4 4
  * Implementation of hook_user_default_permissions().
5 5
  */
6 6
 function boinc_standard_user_default_permissions() {
7
-  $permissions = array();
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(
11
-    'name' => 'Use PHP input for field settings (dangerous - grant with care)',
12
-    'roles' => array(
13
-      '0' => 'administrator',
14
-    ),
15
-  );
16
-
17
-  // Exported permission: access administration pages
18
-  $permissions['access administration pages'] = array(
19
-    'name' => 'access administration pages',
20
-    'roles' => array(
21
-      '0' => 'administrator',
22
-    ),
23
-  );
24
-
25
-  // Exported permission: access all views
26
-  $permissions['access all views'] = array(
27
-    'name' => 'access all views',
28
-    'roles' => array(
29
-      '0' => 'administrator',
30
-    ),
31
-  );
32
-
33
-  // Exported permission: access content
34
-  $permissions['access content'] = array(
35
-    'name' => 'access content',
36
-    'roles' => array(
37
-      '0' => 'administrator',
38
-      '1' => 'anonymous user',
39
-      '2' => 'authenticated user',
40
-    ),
41
-  );
42
-
43
-  // Exported permission: access site reports
44
-  $permissions['access site reports'] = array(
45
-    'name' => 'access site reports',
46
-    'roles' => array(
47
-      '0' => 'administrator',
48
-    ),
49
-  );
50
-
51
-  // Exported permission: administer actions
52
-  $permissions['administer actions'] = array(
53
-    'name' => 'administer actions',
54
-    'roles' => array(
55
-      '0' => 'administrator',
56
-    ),
57
-  );
58
-
59
-  // Exported permission: administer advanced pane settings
60
-  $permissions['administer advanced pane settings'] = array(
61
-    'name' => 'administer advanced pane settings',
62
-    'roles' => array(
63
-      '0' => 'administrator',
64
-    ),
65
-  );
66
-
67
-  // Exported permission: administer blocks
68
-  $permissions['administer blocks'] = array(
69
-    'name' => 'administer blocks',
70
-    'roles' => array(
71
-      '0' => 'administrator',
72
-    ),
73
-  );
74
-
75
-  // Exported permission: administer content types
76
-  $permissions['administer content types'] = array(
77
-    'name' => 'administer content types',
78
-    'roles' => array(
79
-      '0' => 'administrator',
80
-    ),
81
-  );
82
-
83
-  // Exported permission: administer elysia_cron
84
-  $permissions['administer elysia_cron'] = array(
85
-    'name' => 'administer elysia_cron',
86
-    'roles' => array(
87
-      '0' => 'administrator',
88
-    ),
89
-  );
90
-
91
-  // Exported permission: administer features
92
-  $permissions['administer features'] = array(
93
-    'name' => 'administer features',
94
-    'roles' => array(
95
-      '0' => 'administrator',
96
-    ),
97
-  );
98
-
99
-  // Exported permission: administer files
100
-  $permissions['administer files'] = array(
101
-    'name' => 'administer files',
102
-    'roles' => array(
103
-      '0' => 'administrator',
104
-    ),
105
-  );
106
-
107
-  // Exported permission: administer filters
108
-  $permissions['administer filters'] = array(
109
-    'name' => 'administer filters',
110
-    'roles' => array(
111
-      '0' => 'administrator',
112
-    ),
113
-  );
114
-
115
-  // Exported permission: administer flags
116
-  $permissions['administer flags'] = array(
117
-    'name' => 'administer flags',
118
-    'roles' => array(
119
-      '0' => 'administrator',
120
-    ),
121
-  );
122
-
123
-  // Exported permission: administer imce(execute PHP)
124
-  $permissions['administer imce(execute PHP)'] = array(
125
-    'name' => 'administer imce(execute PHP)',
126
-    'roles' => array(
127
-      '0' => 'administrator',
128
-    ),
129
-  );
130
-
131
-  // Exported permission: administer menu
132
-  $permissions['administer menu'] = array(
133
-    'name' => 'administer menu',
134
-    'roles' => array(
135
-      '0' => 'administrator',
136
-      '1' => 'content editor',
137
-    ),
138
-  );
139
-
140
-  // Exported permission: administer mini panels
141
-  $permissions['administer mini panels'] = array(
142
-    'name' => 'administer mini panels',
143
-    'roles' => array(
144
-      '0' => 'administrator',
145
-    ),
146
-  );
147
-
148
-  // Exported permission: administer nodes
149
-  $permissions['administer nodes'] = array(
150
-    'name' => 'administer nodes',
151
-    'roles' => array(
152
-      '0' => 'administrator',
153
-    ),
154
-  );
155
-
156
-  // Exported permission: administer page manager
157
-  $permissions['administer page manager'] = array(
158
-    'name' => 'administer page manager',
159
-    'roles' => array(
160
-      '0' => 'administrator',
161
-    ),
162
-  );
163
-
164
-  // Exported permission: administer pane access
165
-  $permissions['administer pane access'] = array(
166
-    'name' => 'administer pane access',
167
-    'roles' => array(
168
-      '0' => 'administrator',
169
-    ),
170
-  );
171
-
172
-  // Exported permission: administer pane visibility
173
-  $permissions['administer pane visibility'] = array(
174
-    'name' => 'administer pane visibility',
175
-    'roles' => array(
176
-      '0' => 'administrator',
177
-    ),
178
-  );
179
-
180
-  // Exported permission: administer panel-nodes
181
-  $permissions['administer panel-nodes'] = array(
182
-    'name' => 'administer panel-nodes',
183
-    'roles' => array(
184
-      '0' => 'administrator',
185
-    ),
186
-  );
187
-
188
-  // Exported permission: administer panels layouts
189
-  $permissions['administer panels layouts'] = array(
190
-    'name' => 'administer panels layouts',
191
-    'roles' => array(
192
-      '0' => 'administrator',
193
-    ),
194
-  );
195
-
196
-  // Exported permission: administer pathauto
197
-  $permissions['administer pathauto'] = array(
198
-    'name' => 'administer pathauto',
199
-    'roles' => array(
200
-      '0' => 'administrator',
201
-    ),
202
-  );
203
-
204
-  // Exported permission: administer permissions
205
-  $permissions['administer permissions'] = array(
206
-    'name' => 'administer permissions',
207
-    'roles' => array(
208
-      '0' => 'administrator',
209
-    ),
210
-  );
211
-
212
-  // Exported permission: administer rules
213
-  $permissions['administer rules'] = array(
214
-    'name' => 'administer rules',
215
-    'roles' => array(
216
-      '0' => 'administrator',
217
-    ),
218
-  );
219
-
220
-  // Exported permission: administer site configuration
221
-  $permissions['administer site configuration'] = array(
222
-    'name' => 'administer site configuration',
223
-    'roles' => array(
224
-      '0' => 'administrator',
225
-    ),
226
-  );
227
-
228
-  // Exported permission: administer smtp module
229
-  $permissions['administer smtp module'] = array(
230
-    'name' => 'administer smtp module',
231
-    'roles' => array(
232
-      '0' => 'administrator',
233
-    ),
234
-  );
235
-
236
-  // Exported permission: administer tabtamer
237
-  $permissions['administer tabtamer'] = array(
238
-    'name' => 'administer tabtamer',
239
-    'roles' => array(
240
-      '0' => 'administrator',
241
-    ),
242
-  );
243
-
244
-  // Exported permission: administer taxonomy
245
-  $permissions['administer taxonomy'] = array(
246
-    'name' => 'administer taxonomy',
247
-    'roles' => array(
248
-      '0' => 'administrator',
249
-    ),
250
-  );
251
-
252
-  // Exported permission: administer url aliases
253
-  $permissions['administer url aliases'] = array(
254
-    'name' => 'administer url aliases',
255
-    'roles' => array(
256
-      '0' => 'administrator',
257
-    ),
258
-  );
259
-
260
-  // Exported permission: administer users
261
-  $permissions['administer users'] = array(
262
-    'name' => 'administer users',
263
-    'roles' => array(
264
-      '0' => 'administrator',
265
-    ),
266
-  );
267
-
268
-  // Exported permission: administer views
269
-  $permissions['administer views'] = array(
270
-    'name' => 'administer views',
271
-    'roles' => array(
272
-      '0' => 'administrator',
273
-    ),
274
-  );
275
-
276
-  // Exported permission: assign all roles
277
-  $permissions['assign all roles'] = array(
278
-    'name' => 'assign all roles',
279
-    'roles' => array(
280
-      '0' => 'administrator',
281
-    ),
282
-  );
283
-
284
-  // Exported permission: change own username
285
-  $permissions['change own username'] = array(
286
-    'name' => 'change own username',
287
-    'roles' => array(
288
-      '0' => 'administrator',
289
-    ),
290
-  );
291
-
292
-  // Exported permission: create mini panels
293
-  $permissions['create mini panels'] = array(
294
-    'name' => 'create mini panels',
295
-    'roles' => array(
296
-      '0' => 'administrator',
297
-    ),
298
-  );
299
-
300
-  // Exported permission: create page content
301
-  $permissions['create page content'] = array(
302
-    'name' => 'create page content',
303
-    'roles' => array(
304
-      '0' => 'administrator',
305
-      '1' => 'content editor',
306
-    ),
307
-  );
308
-
309
-  // Exported permission: create panel-nodes
310
-  $permissions['create panel-nodes'] = array(
311
-    'name' => 'create panel-nodes',
312
-    'roles' => array(
313
-      '0' => 'administrator',
314
-    ),
315
-  );
316
-
317
-  // Exported permission: create story content
318
-  $permissions['create story content'] = array(
319
-    'name' => 'create story content',
320
-    'roles' => array(
321
-      '0' => 'administrator',
322
-    ),
323
-  );
324
-
325
-  // Exported permission: create url aliases
326
-  $permissions['create url aliases'] = array(
327
-    'name' => 'create url aliases',
328
-    'roles' => array(
329
-      '0' => 'administrator',
330
-    ),
331
-  );
332
-
333
-  // Exported permission: delete any page content
334
-  $permissions['delete any page content'] = array(
335
-    'name' => 'delete any page content',
336
-    'roles' => array(
337
-      '0' => 'administrator',
338
-      '1' => 'content editor',
339
-    ),
340
-  );
341
-
342
-  // Exported permission: delete any panel-nodes
343
-  $permissions['delete any panel-nodes'] = array(
344
-    'name' => 'delete any panel-nodes',
345
-    'roles' => array(
346
-      '0' => 'administrator',
347
-    ),
348
-  );
349
-
350
-  // Exported permission: delete any story content
351
-  $permissions['delete any story content'] = array(
352
-    'name' => 'delete any story content',
353
-    'roles' => array(
354
-      '0' => 'administrator',
355
-    ),
356
-  );
357
-
358
-  // Exported permission: delete own account
359
-  $permissions['delete own account'] = array(
360
-    'name' => 'delete own account',
361
-    'roles' => array(
362
-      '0' => 'administrator',
363
-      '1' => 'authenticated user',
364
-    ),
365
-  );
366
-
367
-  // Exported permission: delete own page content
368
-  $permissions['delete own page content'] = array(
369
-    'name' => 'delete own page content',
370
-    'roles' => array(
371
-      '0' => 'administrator',
372
-    ),
373
-  );
374
-
375
-  // Exported permission: delete own panel-nodes
376
-  $permissions['delete own panel-nodes'] = array(
377
-    'name' => 'delete own panel-nodes',
378
-    'roles' => array(
379
-      '0' => 'administrator',
380
-    ),
381
-  );
382
-
383
-  // Exported permission: delete own story content
384
-  $permissions['delete own story content'] = array(
385
-    'name' => 'delete own story content',
386
-    'roles' => array(
387
-      '0' => 'administrator',
388
-    ),
389
-  );
390
-
391
-  // Exported permission: delete revisions
392
-  $permissions['delete revisions'] = array(
393
-    'name' => 'delete revisions',
394
-    'roles' => array(
395
-      '0' => 'administrator',
396
-      '1' => 'content editor',
397
-    ),
398
-  );
399
-
400
-  // Exported permission: edit any page content
401
-  $permissions['edit any page content'] = array(
402
-    'name' => 'edit any page content',
403
-    'roles' => array(
404
-      '0' => 'administrator',
405
-      '1' => 'content editor',
406
-    ),
407
-  );
408
-
409
-  // Exported permission: edit any panel-nodes
410
-  $permissions['edit any panel-nodes'] = array(
411
-    'name' => 'edit any panel-nodes',
412
-    'roles' => array(
413
-      '0' => 'administrator',
414
-    ),
415
-  );
416
-
417
-  // Exported permission: edit any story content
418
-  $permissions['edit any story content'] = array(
419
-    'name' => 'edit any story content',
420
-    'roles' => array(
421
-      '0' => 'administrator',
422
-    ),
423
-  );
424
-
425
-  // Exported permission: edit own page content
426
-  $permissions['edit own page content'] = array(
427
-    'name' => 'edit own page content',
428
-    'roles' => array(
429
-      '0' => 'administrator',
430
-    ),
431
-  );
432
-
433
-  // Exported permission: edit own panel-nodes
434
-  $permissions['edit own panel-nodes'] = array(
435
-    'name' => 'edit own panel-nodes',
436
-    'roles' => array(
437
-      '0' => 'administrator',
438
-    ),
439
-  );
440
-
441
-  // Exported permission: edit own story content
442
-  $permissions['edit own story content'] = array(
443
-    'name' => 'edit own story content',
444
-    'roles' => array(
445
-      '0' => 'administrator',
446
-    ),
447
-  );
448
-
449
-  // Exported permission: ignore user
450
-  $permissions['ignore user'] = array(
451
-    'name' => 'ignore user',
452
-    'roles' => array(
453
-      '0' => 'authenticated user',
454
-    ),
455
-  );
456
-
457
-  // Exported permission: import input formats
458
-  $permissions['import input formats'] = array(
459
-    'name' => 'import input formats',
460
-    'roles' => array(),
461
-  );
462
-
463
-  // Exported permission: manage features
464
-  $permissions['manage features'] = array(
465
-    'name' => 'manage features',
466
-    'roles' => array(
467
-      '0' => 'administrator',
468
-    ),
469
-  );
470
-
471
-  // Exported permission: notify of path changes
472
-  $permissions['notify of path changes'] = array(
473
-    'name' => 'notify of path changes',
474
-    'roles' => array(
475
-      '0' => 'administrator',
476
-    ),
477
-  );
478
-
479
-  // Exported permission: reset abuse flags
480
-  $permissions['reset abuse flags'] = array(
481
-    'name' => 'reset abuse flags',
482
-    'roles' => array(
483
-      '0' => 'administrator',
484
-      '1' => 'moderator',
485
-    ),
486
-  );
487
-
488
-  // Exported permission: revert revisions
489
-  $permissions['revert revisions'] = array(
490
-    'name' => 'revert revisions',
491
-    'roles' => array(
492
-      '0' => 'administrator',
493
-      '1' => 'content editor',
494
-    ),
495
-  );
496
-
497
-  // Exported permission: select different theme
498
-  $permissions['select different theme'] = array(
499
-    'name' => 'select different theme',
500
-    'roles' => array(
501
-      '0' => 'administrator',
502
-    ),
503
-  );
504
-
505
-  // Exported permission: upload files
506
-  $permissions['upload files'] = array(
507
-    'name' => 'upload files',
508
-    'roles' => array(
509
-      '0' => 'administrator',
510
-      '1' => 'content editor',
511
-    ),
512
-  );
513
-
514
-  // Exported permission: view uploaded files
515
-  $permissions['view uploaded files'] = array(
516
-    'name' => 'view uploaded files',
517
-    'roles' => array(),
518
-  );
519
-
520
-  // Exported permission: use PHP for block visibility
521
-  $permissions['use PHP for block visibility'] = array(
522
-    'name' => 'use PHP for block visibility',
523
-    'roles' => array(
524
-      '0' => 'administrator',
525
-    ),
526
-  );
527
-
528
-  // Exported permission: use PHP for me alias paths
529
-  $permissions['use PHP for me alias paths'] = array(
530
-    'name' => 'use PHP for me alias paths',
531
-    'roles' => array(
532
-      '0' => 'administrator',
533
-    ),
534
-  );
535
-
536
-  // Exported permission: use flag import
537
-  $permissions['use flag import'] = array(
538
-    'name' => 'use flag import',
539
-    'roles' => array(
540
-      '0' => 'administrator',
541
-    ),
542
-  );
543
-
544
-  // Exported permission: use page manager
545
-  $permissions['use page manager'] = array(
546
-    'name' => 'use page manager',
547
-    'roles' => array(
548
-      '0' => 'administrator',
549
-    ),
550
-  );
551
-
552
-  // Exported permission: use panels caching features
553
-  $permissions['use panels caching features'] = array(
554
-    'name' => 'use panels caching features',
555
-    'roles' => array(
556
-      '0' => 'administrator',
557
-    ),
558
-  );
559
-
560
-  // Exported permission: use panels dashboard
561
-  $permissions['use panels dashboard'] = array(
562
-    'name' => 'use panels dashboard',
563
-    'roles' => array(
564
-      '0' => 'administrator',
565
-    ),
566
-  );
567
-
568
-  // Exported permission: use panels in place editing
569
-  $permissions['use panels in place editing'] = array(
570
-    'name' => 'use panels in place editing',
571
-    'roles' => array(
572
-      '0' => 'administrator',
573
-    ),
574
-  );
575
-
576
-  // Exported permission: view all panes
577
-  $permissions['view all panes'] = array(
578
-    'name' => 'view all panes',
579
-    'roles' => array(
580
-      '0' => 'administrator',
581
-    ),
582
-  );
583
-
584
-  // Exported permission: view pane admin links
585
-  $permissions['view pane admin links'] = array(
586
-    'name' => 'view pane admin links',
587
-    'roles' => array(
588
-      '0' => 'administrator',
589
-    ),
590
-  );
591
-
592
-  // Exported permission: view revisions
593
-  $permissions['view revisions'] = array(
594
-    'name' => 'view revisions',
595
-    'roles' => array(
596
-      '0' => 'administrator',
597
-      '1' => 'content editor',
598
-    ),
599
-  );
600
-
601
-  return $permissions;
7
+$permissions = array();
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(
11
+'name' => 'Use PHP input for field settings (dangerous - grant with care)',
12
+'roles' => array(
13
+  '0' => 'administrator',
14
+),
15
+);
16
+
17
+// Exported permission: access administration pages
18
+$permissions['access administration pages'] = array(
19
+'name' => 'access administration pages',
20
+'roles' => array(
21
+  '0' => 'administrator',
22
+),
23
+);
24
+
25
+// Exported permission: access all views
26
+$permissions['access all views'] = array(
27
+'name' => 'access all views',
28
+'roles' => array(
29
+  '0' => 'administrator',
30
+),
31
+);
32
+
33
+// Exported permission: access content
34
+$permissions['access content'] = array(
35
+'name' => 'access content',
36
+'roles' => array(
37
+  '0' => 'administrator',
38
+  '1' => 'anonymous user',
39
+  '2' => 'authenticated user',
40
+),
41
+);
42
+
43
+// Exported permission: access site reports
44
+$permissions['access site reports'] = array(
45
+'name' => 'access site reports',
46
+'roles' => array(
47
+  '0' => 'administrator',
48
+),
49
+);
50
+
51
+// Exported permission: administer actions
52
+$permissions['administer actions'] = array(
53
+'name' => 'administer actions',
54
+'roles' => array(
55
+  '0' => 'administrator',
56
+),
57
+);
58
+
59
+// Exported permission: administer advanced pane settings
60
+$permissions['administer advanced pane settings'] = array(
61
+'name' => 'administer advanced pane settings',
62
+'roles' => array(
63
+  '0' => 'administrator',
64
+),
65
+);
66
+
67
+// Exported permission: administer blocks
68
+$permissions['administer blocks'] = array(
69
+'name' => 'administer blocks',
70
+'roles' => array(
71
+  '0' => 'administrator',
72
+),
73
+);
74
+
75
+// Exported permission: administer content types
76
+$permissions['administer content types'] = array(
77
+'name' => 'administer content types',
78
+'roles' => array(
79
+  '0' => 'administrator',
80
+),
81
+);
82
+
83
+// Exported permission: administer elysia_cron
84
+$permissions['administer elysia_cron'] = array(
85
+'name' => 'administer elysia_cron',
86
+'roles' => array(
87
+  '0' => 'administrator',
88
+),
89
+);
90
+
91
+// Exported permission: administer features
92
+$permissions['administer features'] = array(
93
+'name' => 'administer features',
94
+'roles' => array(
95
+  '0' => 'administrator',
96
+),
97
+);
98
+
99
+// Exported permission: administer files
100
+$permissions['administer files'] = array(
101
+'name' => 'administer files',
102
+'roles' => array(
103
+  '0' => 'administrator',
104
+),
105
+);
106
+
107
+// Exported permission: administer filters
108
+$permissions['administer filters'] = array(
109
+'name' => 'administer filters',
110
+'roles' => array(
111
+  '0' => 'administrator',
112
+),
113
+);
114
+
115
+// Exported permission: administer flags
116
+$permissions['administer flags'] = array(
117
+'name' => 'administer flags',
118
+'roles' => array(
119
+  '0' => 'administrator',
120
+),
121
+);
122
+
123
+// Exported permission: administer imce(execute PHP)
124
+$permissions['administer imce(execute PHP)'] = array(
125
+'name' => 'administer imce(execute PHP)',
126
+'roles' => array(
127
+  '0' => 'administrator',
128
+),
129
+);
130
+
131
+// Exported permission: administer menu
132
+$permissions['administer menu'] = array(
133
+'name' => 'administer menu',
134
+'roles' => array(
135
+  '0' => 'administrator',
136
+  '1' => 'content editor',
137
+),
138
+);
139
+
140
+// Exported permission: administer mini panels
141
+$permissions['administer mini panels'] = array(
142
+'name' => 'administer mini panels',
143
+'roles' => array(
144
+  '0' => 'administrator',
145
+),
146
+);
147
+
148
+// Exported permission: administer nodes
149
+$permissions['administer nodes'] = array(
150
+'name' => 'administer nodes',
151
+'roles' => array(
152
+  '0' => 'administrator',
153
+),
154
+);
155
+
156
+// Exported permission: administer page manager
157
+$permissions['administer page manager'] = array(
158
+'name' => 'administer page manager',
159
+'roles' => array(
160
+  '0' => 'administrator',
161
+),
162
+);
163
+
164
+// Exported permission: administer pane access
165
+$permissions['administer pane access'] = array(
166
+'name' => 'administer pane access',
167
+'roles' => array(
168
+  '0' => 'administrator',
169
+),
170
+);
171
+
172
+// Exported permission: administer pane visibility
173
+$permissions['administer pane visibility'] = array(
174
+'name' => 'administer pane visibility',
175
+'roles' => array(
176
+  '0' => 'administrator',
177
+),
178
+);
179
+
180
+// Exported permission: administer panel-nodes
181
+$permissions['administer panel-nodes'] = array(
182
+'name' => 'administer panel-nodes',
183
+'roles' => array(
184
+  '0' => 'administrator',
185
+),
186
+);
187
+
188
+// Exported permission: administer panels layouts
189
+$permissions['administer panels layouts'] = array(
190
+'name' => 'administer panels layouts',
191
+'roles' => array(
192
+  '0' => 'administrator',
193
+),
194
+);
195
+
196
+// Exported permission: administer pathauto
197
+$permissions['administer pathauto'] = array(
198
+'name' => 'administer pathauto',
199
+'roles' => array(
200
+  '0' => 'administrator',
201
+),
202
+);
203
+
204
+// Exported permission: administer permissions
205
+$permissions['administer permissions'] = array(
206
+'name' => 'administer permissions',
207
+'roles' => array(
208
+  '0' => 'administrator',
209
+),
210
+);
211
+
212
+// Exported permission: administer rules
213
+$permissions['administer rules'] = array(
214
+'name' => 'administer rules',
215
+'roles' => array(
216
+  '0' => 'administrator',
217
+),
218
+);
219
+
220
+// Exported permission: administer site configuration
221
+$permissions['administer site configuration'] = array(
222
+'name' => 'administer site configuration',
223
+'roles' => array(
224
+  '0' => 'administrator',
225
+),
226
+);
227
+
228
+// Exported permission: administer smtp module
229
+$permissions['administer smtp module'] = array(
230
+'name' => 'administer smtp module',
231
+'roles' => array(
232
+  '0' => 'administrator',
233
+),
234
+);
235
+
236
+// Exported permission: administer tabtamer
237
+$permissions['administer tabtamer'] = array(
238
+'name' => 'administer tabtamer',
239
+'roles' => array(
240
+  '0' => 'administrator',
241
+),
242
+);
243
+
244
+// Exported permission: administer taxonomy
245
+$permissions['administer taxonomy'] = array(
246
+'name' => 'administer taxonomy',
247
+'roles' => array(
248
+  '0' => 'administrator',
249
+),
250
+);
251
+
252
+// Exported permission: administer url aliases
253
+$permissions['administer url aliases'] = array(
254
+'name' => 'administer url aliases',
255
+'roles' => array(
256
+  '0' => 'administrator',
257
+),
258
+);
259
+
260
+// Exported permission: administer users
261
+$permissions['administer users'] = array(
262
+'name' => 'administer users',
263
+'roles' => array(
264
+  '0' => 'administrator',
265
+),
266
+);
267
+
268
+// Exported permission: administer views
269
+$permissions['administer views'] = array(
270
+'name' => 'administer views',
271
+'roles' => array(
272
+  '0' => 'administrator',
273
+),
274
+);
275
+
276
+// Exported permission: assign all roles
277
+$permissions['assign all roles'] = array(
278
+'name' => 'assign all roles',
279
+'roles' => array(
280
+  '0' => 'administrator',
281
+),
282
+);
283
+
284
+// Exported permission: change own username
285
+$permissions['change own username'] = array(
286
+'name' => 'change own username',
287
+'roles' => array(
288
+  '0' => 'administrator',
289
+),
290
+);
291
+
292
+// Exported permission: create mini panels
293
+$permissions['create mini panels'] = array(
294
+'name' => 'create mini panels',
295
+'roles' => array(
296
+  '0' => 'administrator',
297
+),
298
+);
299
+
300
+// Exported permission: create page content
301
+$permissions['create page content'] = array(
302
+'name' => 'create page content',
303
+'roles' => array(
304
+  '0' => 'administrator',
305
+  '1' => 'content editor',
306
+),
307
+);
308
+
309
+// Exported permission: create panel-nodes
310
+$permissions['create panel-nodes'] = array(
311
+'name' => 'create panel-nodes',
312
+'roles' => array(
313
+  '0' => 'administrator',
314
+),
315
+);
316
+
317
+// Exported permission: create story content
318
+$permissions['create story content'] = array(
319
+'name' => 'create story content',
320
+'roles' => array(
321
+  '0' => 'administrator',
322
+),
323
+);
324
+
325
+// Exported permission: create url aliases
326
+$permissions['create url aliases'] = array(
327
+'name' => 'create url aliases',
328
+'roles' => array(
329
+  '0' => 'administrator',
330
+),
331
+);
332
+
333
+// Exported permission: delete any page content
334
+$permissions['delete any page content'] = array(
335
+'name' => 'delete any page content',
336
+'roles' => array(
337
+  '0' => 'administrator',
338
+  '1' => 'content editor',
339
+),
340
+);
341
+
342
+// Exported permission: delete any panel-nodes
343
+$permissions['delete any panel-nodes'] = array(
344
+'name' => 'delete any panel-nodes',
345
+'roles' => array(
346
+  '0' => 'administrator',
347
+),
348
+);
349
+
350
+// Exported permission: delete any story content
351
+$permissions['delete any story content'] = array(
352
+'name' => 'delete any story content',
353
+'roles' => array(
354
+  '0' => 'administrator',
355
+),
356
+);
357
+
358
+// Exported permission: delete own account
359
+$permissions['delete own account'] = array(
360
+'name' => 'delete own account',
361
+'roles' => array(
362
+  '0' => 'administrator',
363
+  '1' => 'authenticated user',
364
+),
365
+);
366
+
367
+// Exported permission: delete own page content
368
+$permissions['delete own page content'] = array(
369
+'name' => 'delete own page content',
370
+'roles' => array(
371
+  '0' => 'administrator',
372
+),
373
+);
374
+
375
+// Exported permission: delete own panel-nodes
376
+$permissions['delete own panel-nodes'] = array(
377
+'name' => 'delete own panel-nodes',
378
+'roles' => array(
379
+  '0' => 'administrator',
380
+),
381
+);
382
+
383
+// Exported permission: delete own story content
384
+$permissions['delete own story content'] = array(
385
+'name' => 'delete own story content',
386
+'roles' => array(
387
+  '0' => 'administrator',
388
+),
389
+);
390
+
391
+// Exported permission: delete revisions
392
+$permissions['delete revisions'] = array(
393
+'name' => 'delete revisions',
394
+'roles' => array(
395
+  '0' => 'administrator',
396
+  '1' => 'content editor',
397
+),
398
+);
399
+
400
+// Exported permission: edit any page content
401
+$permissions['edit any page content'] = array(
402
+'name' => 'edit any page content',
403
+'roles' => array(
404
+  '0' => 'administrator',
405
+  '1' => 'content editor',
406
+),
407
+);
408
+
409
+// Exported permission: edit any panel-nodes
410
+$permissions['edit any panel-nodes'] = array(
411
+'name' => 'edit any panel-nodes',
412
+'roles' => array(
413
+  '0' => 'administrator',
414
+),
415
+);
416
+
417
+// Exported permission: edit any story content
418
+$permissions['edit any story content'] = array(
419
+'name' => 'edit any story content',
420
+'roles' => array(
421
+  '0' => 'administrator',
422
+),
423
+);
424
+
425
+// Exported permission: edit own page content
426
+$permissions['edit own page content'] = array(
427
+'name' => 'edit own page content',
428
+'roles' => array(
429
+  '0' => 'administrator',
430
+),
431
+);
432
+
433
+// Exported permission: edit own panel-nodes
434
+$permissions['edit own panel-nodes'] = array(
435
+'name' => 'edit own panel-nodes',
436
+'roles' => array(
437
+  '0' => 'administrator',
438
+),
439
+);
440
+
441
+// Exported permission: edit own story content
442
+$permissions['edit own story content'] = array(
443
+'name' => 'edit own story content',
444
+'roles' => array(
445
+  '0' => 'administrator',
446
+),
447
+);
448
+
449
+// Exported permission: ignore user
450
+$permissions['ignore user'] = array(
451
+'name' => 'ignore user',
452
+'roles' => array(
453
+  '0' => 'authenticated user',
454
+),
455
+);
456
+
457
+// Exported permission: import input formats
458
+$permissions['import input formats'] = array(
459
+'name' => 'import input formats',
460
+'roles' => array(),
461
+);
462
+
463
+// Exported permission: manage features
464
+$permissions['manage features'] = array(
465
+'name' => 'manage features',
466
+'roles' => array(
467
+  '0' => 'administrator',
468
+),
469
+);
470
+
471
+// Exported permission: notify of path changes
472
+$permissions['notify of path changes'] = array(
473
+'name' => 'notify of path changes',
474
+'roles' => array(
475
+  '0' => 'administrator',
476
+),
477
+);
478
+
479
+// Exported permission: reset abuse flags
480
+$permissions['reset abuse flags'] = array(
481
+'name' => 'reset abuse flags',
482
+'roles' => array(
483
+  '0' => 'administrator',
484
+  '1' => 'moderator',
485
+),
486
+);
487
+
488
+// Exported permission: revert revisions
489
+$permissions['revert revisions'] = array(
490
+'name' => 'revert revisions',
491
+'roles' => array(
492
+  '0' => 'administrator',
493
+  '1' => 'content editor',
494
+),
495
+);
496
+
497
+// Exported permission: select different theme
498
+$permissions['select different theme'] = array(
499
+'name' => 'select different theme',
500
+'roles' => array(
501
+  '0' => 'administrator',
502
+),
503
+);
504
+
505
+// Exported permission: upload files
506
+$permissions['upload files'] = array(
507
+'name' => 'upload files',
508
+'roles' => array(
509
+  '0' => 'administrator',
510
+  '1' => 'content editor',
511
+),
512
+);
513
+
514
+// Exported permission: view uploaded files
515
+$permissions['view uploaded files'] = array(
516
+'name' => 'view uploaded files',
517
+'roles' => array(),
518
+);
519
+
520
+// Exported permission: use PHP for block visibility
521
+$permissions['use PHP for block visibility'] = array(
522
+'name' => 'use PHP for block visibility',
523
+'roles' => array(
524
+  '0' => 'administrator',
525
+),
526
+);
527
+
528
+// Exported permission: use PHP for me alias paths
529
+$permissions['use PHP for me alias paths'] = array(
530
+'name' => 'use PHP for me alias paths',
531
+'roles' => array(
532
+  '0' => 'administrator',
533
+),
534
+);
535
+
536
+// Exported permission: use flag import
537
+$permissions['use flag import'] = array(
538
+'name' => 'use flag import',
539
+'roles' => array(
540
+  '0' => 'administrator',
541
+),
542
+);
543
+
544
+// Exported permission: use page manager
545
+$permissions['use page manager'] = array(
546
+'name' => 'use page manager',
547
+'roles' => array(
548
+  '0' => 'administrator',
549
+),
550
+);
551
+
552
+// Exported permission: use panels caching features
553
+$permissions['use panels caching features'] = array(
554
+'name' => 'use panels caching features',
555
+'roles' => array(
556
+  '0' => 'administrator',
557
+),
558
+);
559
+
560
+// Exported permission: use panels dashboard
561
+$permissions['use panels dashboard'] = array(
562
+'name' => 'use panels dashboard',
563
+'roles' => array(
564
+  '0' => 'administrator',
565
+),
566
+);
567
+
568
+// Exported permission: use panels in place editing
569
+$permissions['use panels in place editing'] = array(
570
+'name' => 'use panels in place editing',
571
+'roles' => array(
572
+  '0' => 'administrator',
573
+),
574
+);
575
+
576
+// Exported permission: view all panes
577
+$permissions['view all panes'] = array(
578
+'name' => 'view all panes',
579
+'roles' => array(
580
+  '0' => 'administrator',
581
+),
582
+);
583
+
584
+// Exported permission: view pane admin links
585
+$permissions['view pane admin links'] = array(
586
+'name' => 'view pane admin links',
587
+'roles' => array(
588
+  '0' => 'administrator',
589
+),
590
+);
591
+
592
+// Exported permission: view revisions
593
+$permissions['view revisions'] = array(
594
+'name' => 'view revisions',
595
+'roles' => array(
596
+  '0' => 'administrator',
597
+  '1' => 'content editor',
598
+),
599
+);
600
+
601
+return $permissions;
602 602
 }
Please login to merge, or discard this patch.
drupal/sites/all/features/boinc_standard/boinc_standard.features.inc 1 patch
Switch Indentation   +2153 added lines, -2153 removed lines patch added patch discarded remove patch
@@ -4,2259 +4,2259 @@
 block discarded – undo
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") {
9
-    return array("version" => 1);
10
-  }
11
-  elseif ($module == "page_manager" && $api == "pages_default") {
12
-    return array("version" => 1);
13
-  }
14
-  elseif ($module == "panels_mini" && $api == "panels_default") {
15
-    return array("version" => 1);
16
-  }
17
-  elseif ($module == "strongarm" && $api == "strongarm") {
18
-    return array("version" => 1);
19
-  }
20
-  elseif ($module == "wysiwyg" && $api == "wysiwyg") {
21
-    return array("version" => 2);
22
-  }
7
+list($module, $api) = func_get_args();
8
+if ($module == "input_formats" && $api == "input_formats") {
9
+return array("version" => 1);
10
+}
11
+elseif ($module == "page_manager" && $api == "pages_default") {
12
+return array("version" => 1);
13
+}
14
+elseif ($module == "panels_mini" && $api == "panels_default") {
15
+return array("version" => 1);
16
+}
17
+elseif ($module == "strongarm" && $api == "strongarm") {
18
+return array("version" => 1);
19
+}
20
+elseif ($module == "wysiwyg" && $api == "wysiwyg") {
21
+return array("version" => 2);
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(
32
-    'content_type' => 'comment',
33
-    'title' => 'Comment Abuse',
34
-    'global' => FALSE,
35
-    'types' => array(
36
-      '0' => 'forum',
37
-      '1' => 'news',
38
-      '2' => 'team_forum',
29
+$flags = array();
30
+// Exported flag: "Comment Abuse".
31
+$flags['abuse_comment'] = array(
32
+'content_type' => 'comment',
33
+'title' => 'Comment Abuse',
34
+'global' => FALSE,
35
+'types' => array(
36
+  '0' => 'forum',
37
+  '1' => 'news',
38
+  '2' => 'team_forum',
39
+),
40
+'flag_short' => 'Report',
41
+'flag_long' => 'Report this content as offensive.',
42
+'flag_message' => '',
43
+'unflag_short' => 'Cancel report',
44
+'unflag_long' => 'Cancel reporting this content as offensive.',
45
+'unflag_message' => '',
46
+'unflag_denied_text' => '',
47
+'link_type' => 'toggle',
48
+'roles' => array(
49
+  'flag' => array(
50
+    '0' => 2,
51
+  ),
52
+  'unflag' => array(
53
+    '0' => 2,
54
+  ),
55
+),
56
+'weight' => 0,
57
+'access_author' => '',
58
+'show_on_comment' => 1,
59
+'module' => 'boinc_standard',
60
+'locked' => array(
61
+  '0' => 'name',
62
+),
63
+'api_version' => 2,
64
+);
65
+// Exported flag: "Node Abuse".
66
+$flags['abuse_node'] = array(
67
+'content_type' => 'node',
68
+'title' => 'Node Abuse',
69
+'global' => FALSE,
70
+'types' => array(
71
+  '0' => 'forum',
72
+  '1' => 'profile',
73
+  '2' => 'team_forum',
74
+),
75
+'flag_short' => 'Report',
76
+'flag_long' => 'Report this content as offensive.',
77
+'flag_message' => '',
78
+'unflag_short' => 'Cancel report',
79
+'unflag_long' => 'Cancel reporting this content as offensive.',
80
+'unflag_message' => '',
81
+'unflag_denied_text' => '',
82
+'link_type' => 'toggle',
83
+'roles' => array(
84
+  'flag' => array(
85
+    '0' => 2,
86
+  ),
87
+  'unflag' => array(
88
+    '0' => 2,
89
+  ),
90
+),
91
+'weight' => 0,
92
+'show_on_page' => 1,
93
+'show_on_teaser' => 0,
94
+'show_on_form' => 0,
95
+'access_author' => '',
96
+'i18n' => '0',
97
+'module' => 'boinc_standard',
98
+'locked' => array(
99
+  '0' => 'name',
100
+),
101
+'api_version' => 2,
102
+);
103
+// Exported flag: "User Abuse".
104
+$flags['abuse_user'] = array(
105
+'content_type' => 'user',
106
+'title' => 'User Abuse',
107
+'global' => '0',
108
+'types' => array(),
109
+'flag_short' => 'Report User',
110
+'flag_long' => 'Report this user as offensive.',
111
+'flag_message' => '',
112
+'unflag_short' => 'Remove Report',
113
+'unflag_long' => 'Remove your report about this user.',
114
+'unflag_message' => '',
115
+'unflag_denied_text' => '',
116
+'link_type' => 'confirm',
117
+'roles' => array(
118
+  'flag' => array(
119
+    '0' => '2',
120
+  ),
121
+  'unflag' => array(
122
+    '0' => '2',
123
+  ),
124
+),
125
+'weight' => 0,
126
+'show_on_profile' => TRUE,
127
+'access_uid' => '',
128
+'flag_confirmation' => 'Are you sure you want to report this user as offensive?',
129
+'unflag_confirmation' => 'Are you sure you want to remove your report of this user?',
130
+'module' => 'boinc_standard',
131
+'locked' => array(
132
+  '0' => 'name',
133
+),
134
+'api_version' => 2,
135
+);
136
+// Exported flag: "Subscriptions".
137
+$flags['subscriptions'] = array(
138
+'content_type' => 'node',
139
+'title' => 'Subscriptions',
140
+'global' => '0',
141
+'types' => array(
142
+  '0' => 'forum',
143
+  '1' => 'news',
144
+  '2' => 'team_forum',
145
+),
146
+'flag_short' => 'subscribe',
147
+'flag_long' => 'Subscribe to this topic',
148
+'flag_message' => 'You are now subscribed to this topic.',
149
+'unflag_short' => 'unsubscribe',
150
+'unflag_long' => 'Unsubscribe to this topic',
151
+'unflag_message' => 'You are no longer subscribed to this topic.',
152
+'unflag_denied_text' => '',
153
+'link_type' => 'toggle',
154
+'roles' => array(
155
+  'flag' => array(
156
+    '0' => 2,
157
+  ),
158
+  'unflag' => array(
159
+    '0' => 2,
160
+  ),
161
+),
162
+'weight' => 0,
163
+'show_on_page' => 1,
164
+'show_on_teaser' => 1,
165
+'show_on_form' => 0,
166
+'access_author' => '',
167
+'i18n' => '0',
168
+'module' => 'boinc_standard',
169
+'locked' => array(
170
+  '0' => 'name',
171
+),
172
+'api_version' => 2,
173
+);
174
+return $flags;
175
+
176
+}
177
+
178
+/**
179
+ * Implementation of hook_node_info().
180
+ */
181
+function boinc_standard_node_info() {
182
+$items = array(
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' => '',
193
+),
194
+);
195
+return $items;
196
+}
197
+
198
+/**
199
+ * Implementation of hook_rules_defaults().
200
+ */
201
+function boinc_standard_rules_defaults() {
202
+return array(
203
+'rules' => array(
204
+  'rules_forum_topic_marked_sticky_by_moderator_admin' => array(
205
+    '#type' => 'rule',
206
+    '#set' => 'event_node_update',
207
+    '#label' => 'Forum topic marked sticky by moderator/admin',
208
+    '#active' => 1,
209
+    '#weight' => '0',
210
+    '#categories' => array(
211
+      '0' => 'boinc_standard',
212
+      '1' => 'moderator notification',
39 213
     ),
40
-    'flag_short' => 'Report',
41
-    'flag_long' => 'Report this content as offensive.',
42
-    'flag_message' => '',
43
-    'unflag_short' => 'Cancel report',
44
-    'unflag_long' => 'Cancel reporting this content as offensive.',
45
-    'unflag_message' => '',
46
-    'unflag_denied_text' => '',
47
-    'link_type' => 'toggle',
48
-    'roles' => array(
49
-      'flag' => array(
50
-        '0' => 2,
214
+    '#status' => 'default',
215
+    '#conditions' => array(
216
+      '0' => array(
217
+        '#type' => 'condition',
218
+        '#settings' => array(
219
+          'roles' => array(
220
+            '0' => 3519698132,
221
+            '1' => 1271379760,
222
+          ),
223
+          'operation' => 'OR',
224
+          '#argument map' => array(
225
+            'user' => 'user',
226
+          ),
227
+        ),
228
+        '#name' => 'rules_condition_user_hasrole',
229
+        '#info' => array(
230
+          'label' => 'User has role(s): administrator or moderator',
231
+          'label callback' => FALSE,
232
+          'arguments' => array(
233
+            'user' => array(
234
+              'type' => 'user',
235
+              'label' => 'User',
236
+            ),
237
+          ),
238
+          'module' => 'User',
239
+        ),
240
+        '#weight' => 0,
51 241
       ),
52
-      'unflag' => array(
53
-        '0' => 2,
242
+      '1' => array(
243
+        '#weight' => 0,
244
+        '0' => array(
245
+          '#weight' => 0,
246
+          '#type' => 'condition',
247
+          '#settings' => array(
248
+            'type' => array(
249
+              'forum' => 'forum',
250
+            ),
251
+            '#argument map' => array(
252
+              'node' => 'node',
253
+            ),
254
+          ),
255
+          '#name' => 'rules_condition_content_is_type',
256
+          '#info' => array(
257
+            'label' => 'Updated content is Forum topic',
258
+            'arguments' => array(
259
+              'node' => array(
260
+                'type' => 'node',
261
+                'label' => 'Content',
262
+              ),
263
+            ),
264
+            'module' => 'Node',
265
+          ),
266
+        ),
267
+        '#type' => 'OR',
268
+        '1' => array(
269
+          '#type' => 'condition',
270
+          '#settings' => array(
271
+            'type' => array(
272
+              'team_forum' => 'team_forum',
273
+            ),
274
+            '#argument map' => array(
275
+              'node' => 'node',
276
+            ),
277
+          ),
278
+          '#name' => 'rules_condition_content_is_type',
279
+          '#info' => array(
280
+            'label' => 'Updated content is Team forum topic',
281
+            'arguments' => array(
282
+              'node' => array(
283
+                'type' => 'node',
284
+                'label' => 'Content',
285
+              ),
286
+            ),
287
+            'module' => 'Node',
288
+          ),
289
+          '#weight' => 0,
290
+        ),
291
+      ),
292
+      '3' => array(
293
+        '#weight' => 0,
294
+        '#info' => array(
295
+          'label' => 'PHP code: node content unchanged',
296
+          'label callback' => FALSE,
297
+          'module' => 'PHP',
298
+          'eval input' => array(
299
+            '0' => 'code',
300
+          ),
301
+        ),
302
+        '#name' => 'rules_condition_custom_php',
303
+        '#settings' => array(
304
+          'code' => 'return $node->body == $node_unchanged->body;',
305
+          'vars' => array(
306
+            '0' => 'node',
307
+            '1' => 'node_unchanged',
308
+          ),
309
+          '#eval input' => array(
310
+            'token_rules_input_evaluator' => array(
311
+              'code' => array(
312
+                '0' => ':global',
313
+              ),
314
+            ),
315
+          ),
316
+        ),
317
+        '#type' => 'condition',
318
+      ),
319
+      '4' => array(
320
+        '#weight' => 0,
321
+        '#info' => array(
322
+          'label' => 'PHP code: node made sticky',
323
+          'label callback' => FALSE,
324
+          'module' => 'PHP',
325
+          'eval input' => array(
326
+            '0' => 'code',
327
+          ),
328
+        ),
329
+        '#name' => 'rules_condition_custom_php',
330
+        '#type' => 'condition',
331
+        '#settings' => array(
332
+          'code' => 'return $node_unchanged->sticky == 0 && $node->sticky == 1;',
333
+          'vars' => array(
334
+            '0' => 'node',
335
+            '1' => 'node_unchanged',
336
+          ),
337
+          '#eval input' => array(
338
+            'token_rules_input_evaluator' => array(
339
+              'code' => array(
340
+                '0' => ':global',
341
+              ),
342
+            ),
343
+          ),
344
+        ),
54 345
       ),
55 346
     ),
56
-    'weight' => 0,
57
-    'access_author' => '',
58
-    'show_on_comment' => 1,
59
-    'module' => 'boinc_standard',
60
-    'locked' => array(
61
-      '0' => 'name',
347
+    '#actions' => array(
348
+      '0' => array(
349
+        '#info' => array(
350
+          'label' => 'Notify moderators via email',
351
+          'module' => 'BOINC core',
352
+          'eval input' => array(
353
+            '0' => 'subject',
354
+            '1' => 'message',
355
+            '2' => 'from',
356
+          ),
357
+        ),
358
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
359
+        '#settings' => array(
360
+          'from' => '',
361
+          'subject' => 'Forum topic at [:global:site-name] marked sticky by moderator/admin',
362
+          'message' => "[node:type] topic '[node:title]' has been marked sticky by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
363
+          '#eval input' => array(
364
+            'token_rules_input_evaluator' => array(
365
+              'subject' => array(
366
+                '0' => ':global',
367
+              ),
368
+              'message' => array(
369
+                '0' => 'node',
370
+                '1' => 'user',
371
+                '2' => ':global',
372
+              ),
373
+              'from' => array(
374
+                '0' => ':global',
375
+              ),
376
+            ),
377
+          ),
378
+        ),
379
+        '#type' => 'action',
380
+        '#weight' => 0,
381
+      ),
62 382
     ),
63
-    'api_version' => 2,
64
-  );
65
-  // Exported flag: "Node Abuse".
66
-  $flags['abuse_node'] = array(
67
-    'content_type' => 'node',
68
-    'title' => 'Node Abuse',
69
-    'global' => FALSE,
70
-    'types' => array(
71
-      '0' => 'forum',
72
-      '1' => 'profile',
73
-      '2' => 'team_forum',
383
+    '#version' => 6003,
384
+  ),
385
+  'rules_forum_topic_marked_unsticky_by_moderator_admin' => array(
386
+    '#type' => 'rule',
387
+    '#set' => 'event_node_update',
388
+    '#label' => 'Forum topic marked unsticky by moderator/admin',
389
+    '#active' => 1,
390
+    '#weight' => '0',
391
+    '#categories' => array(
392
+      '0' => 'boinc_standard',
393
+      '1' => 'moderator notification',
74 394
     ),
75
-    'flag_short' => 'Report',
76
-    'flag_long' => 'Report this content as offensive.',
77
-    'flag_message' => '',
78
-    'unflag_short' => 'Cancel report',
79
-    'unflag_long' => 'Cancel reporting this content as offensive.',
80
-    'unflag_message' => '',
81
-    'unflag_denied_text' => '',
82
-    'link_type' => 'toggle',
83
-    'roles' => array(
84
-      'flag' => array(
85
-        '0' => 2,
395
+    '#status' => 'default',
396
+    '#conditions' => array(
397
+      '0' => array(
398
+        '#type' => 'condition',
399
+        '#settings' => array(
400
+          'roles' => array(
401
+            '0' => 3519698132,
402
+            '1' => 1271379760,
403
+          ),
404
+          'operation' => 'OR',
405
+          '#argument map' => array(
406
+            'user' => 'user',
407
+          ),
408
+        ),
409
+        '#name' => 'rules_condition_user_hasrole',
410
+        '#info' => array(
411
+          'label' => 'User has role(s): administrator or moderator',
412
+          'label callback' => FALSE,
413
+          'arguments' => array(
414
+            'user' => array(
415
+              'type' => 'user',
416
+              'label' => 'User',
417
+            ),
418
+          ),
419
+          'module' => 'User',
420
+        ),
421
+        '#weight' => 0,
86 422
       ),
87
-      'unflag' => array(
88
-        '0' => 2,
423
+      '1' => array(
424
+        '#weight' => 0,
425
+        '0' => array(
426
+          '#weight' => 0,
427
+          '#type' => 'condition',
428
+          '#settings' => array(
429
+            'type' => array(
430
+              'forum' => 'forum',
431
+            ),
432
+            '#argument map' => array(
433
+              'node' => 'node',
434
+            ),
435
+          ),
436
+          '#name' => 'rules_condition_content_is_type',
437
+          '#info' => array(
438
+            'label' => 'Updated content is Forum topic',
439
+            'arguments' => array(
440
+              'node' => array(
441
+                'type' => 'node',
442
+                'label' => 'Content',
443
+              ),
444
+            ),
445
+            'module' => 'Node',
446
+          ),
447
+        ),
448
+        '#type' => 'OR',
449
+        '1' => array(
450
+          '#type' => 'condition',
451
+          '#settings' => array(
452
+            'type' => array(
453
+              'team_forum' => 'team_forum',
454
+            ),
455
+            '#argument map' => array(
456
+              'node' => 'node',
457
+            ),
458
+          ),
459
+          '#name' => 'rules_condition_content_is_type',
460
+          '#info' => array(
461
+            'label' => 'Updated content is Team forum topic',
462
+            'arguments' => array(
463
+              'node' => array(
464
+                'type' => 'node',
465
+                'label' => 'Content',
466
+              ),
467
+            ),
468
+            'module' => 'Node',
469
+          ),
470
+          '#weight' => 0,
471
+        ),
89 472
       ),
90
-    ),
91
-    'weight' => 0,
92
-    'show_on_page' => 1,
93
-    'show_on_teaser' => 0,
94
-    'show_on_form' => 0,
95
-    'access_author' => '',
96
-    'i18n' => '0',
97
-    'module' => 'boinc_standard',
98
-    'locked' => array(
99
-      '0' => 'name',
100
-    ),
101
-    'api_version' => 2,
102
-  );
103
-  // Exported flag: "User Abuse".
104
-  $flags['abuse_user'] = array(
105
-    'content_type' => 'user',
106
-    'title' => 'User Abuse',
107
-    'global' => '0',
108
-    'types' => array(),
109
-    'flag_short' => 'Report User',
110
-    'flag_long' => 'Report this user as offensive.',
111
-    'flag_message' => '',
112
-    'unflag_short' => 'Remove Report',
113
-    'unflag_long' => 'Remove your report about this user.',
114
-    'unflag_message' => '',
115
-    'unflag_denied_text' => '',
116
-    'link_type' => 'confirm',
117
-    'roles' => array(
118
-      'flag' => array(
119
-        '0' => '2',
473
+      '3' => array(
474
+        '#weight' => 0,
475
+        '#info' => array(
476
+          'label' => 'PHP code: node content unchanged',
477
+          'label callback' => FALSE,
478
+          'module' => 'PHP',
479
+          'eval input' => array(
480
+            '0' => 'code',
481
+          ),
482
+        ),
483
+        '#name' => 'rules_condition_custom_php',
484
+        '#settings' => array(
485
+          'code' => 'return $node->body == $node_unchanged->body;',
486
+          'vars' => array(
487
+            '0' => 'node',
488
+            '1' => 'node_unchanged',
489
+          ),
490
+          '#eval input' => array(
491
+            'token_rules_input_evaluator' => array(
492
+              'code' => array(
493
+                '0' => ':global',
494
+              ),
495
+            ),
496
+          ),
497
+        ),
498
+        '#type' => 'condition',
120 499
       ),
121
-      'unflag' => array(
122
-        '0' => '2',
500
+      '4' => array(
501
+        '#weight' => 0,
502
+        '#info' => array(
503
+          'label' => 'PHP code: node made sticky',
504
+          'label callback' => FALSE,
505
+          'module' => 'PHP',
506
+          'eval input' => array(
507
+            '0' => 'code',
508
+          ),
509
+        ),
510
+        '#name' => 'rules_condition_custom_php',
511
+        '#type' => 'condition',
512
+        '#settings' => array(
513
+          'code' => 'return $node_unchanged->sticky == 1 && $node->sticky == 0;',
514
+          'vars' => array(
515
+            '0' => 'node',
516
+            '1' => 'node_unchanged',
517
+          ),
518
+          '#eval input' => array(
519
+            'token_rules_input_evaluator' => array(
520
+              'code' => array(
521
+                '0' => ':global',
522
+              ),
523
+            ),
524
+          ),
525
+        ),
123 526
       ),
124 527
     ),
125
-    'weight' => 0,
126
-    'show_on_profile' => TRUE,
127
-    'access_uid' => '',
128
-    'flag_confirmation' => 'Are you sure you want to report this user as offensive?',
129
-    'unflag_confirmation' => 'Are you sure you want to remove your report of this user?',
130
-    'module' => 'boinc_standard',
131
-    'locked' => array(
132
-      '0' => 'name',
528
+    '#actions' => array(
529
+      '0' => array(
530
+        '#info' => array(
531
+          'label' => 'Notify moderators via email',
532
+          'module' => 'BOINC core',
533
+          'eval input' => array(
534
+            '0' => 'subject',
535
+            '1' => 'message',
536
+            '2' => 'from',
537
+          ),
538
+        ),
539
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
540
+        '#settings' => array(
541
+          'from' => '',
542
+          'subject' => 'Forum topic at [:global:site-name] marked unsticky by moderator/admin',
543
+          'message' => "[node:type] topic '[node:title]' has been marked unsticky by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
544
+          '#eval input' => array(
545
+            'token_rules_input_evaluator' => array(
546
+              'subject' => array(
547
+                '0' => ':global',
548
+              ),
549
+              'message' => array(
550
+                '0' => 'node',
551
+                '1' => 'user',
552
+                '2' => ':global',
553
+              ),
554
+              'from' => array(
555
+                '0' => ':global',
556
+              ),
557
+            ),
558
+          ),
559
+        ),
560
+        '#type' => 'action',
561
+        '#weight' => 0,
562
+      ),
133 563
     ),
134
-    'api_version' => 2,
135
-  );
136
-  // Exported flag: "Subscriptions".
137
-  $flags['subscriptions'] = array(
138
-    'content_type' => 'node',
139
-    'title' => 'Subscriptions',
140
-    'global' => '0',
141
-    'types' => array(
142
-      '0' => 'forum',
143
-      '1' => 'news',
144
-      '2' => 'team_forum',
564
+    '#version' => 6003,
565
+  ),
566
+  'rules_forum_topic_locked_by_moderator_admin' => array(
567
+    '#type' => 'rule',
568
+    '#set' => 'event_node_update',
569
+    '#label' => 'Forum topic locked by moderator/admin',
570
+    '#active' => 1,
571
+    '#weight' => '0',
572
+    '#categories' => array(
573
+      '0' => 'boinc_standard',
574
+      '1' => 'moderator notification',
145 575
     ),
146
-    'flag_short' => 'subscribe',
147
-    'flag_long' => 'Subscribe to this topic',
148
-    'flag_message' => 'You are now subscribed to this topic.',
149
-    'unflag_short' => 'unsubscribe',
150
-    'unflag_long' => 'Unsubscribe to this topic',
151
-    'unflag_message' => 'You are no longer subscribed to this topic.',
152
-    'unflag_denied_text' => '',
153
-    'link_type' => 'toggle',
154
-    'roles' => array(
155
-      'flag' => array(
156
-        '0' => 2,
576
+    '#status' => 'default',
577
+    '#conditions' => array(
578
+      '0' => array(
579
+        '#type' => 'condition',
580
+        '#settings' => array(
581
+          'roles' => array(
582
+            '0' => 3519698132,
583
+            '1' => 1271379760,
584
+          ),
585
+          'operation' => 'OR',
586
+          '#argument map' => array(
587
+            'user' => 'user',
588
+          ),
589
+        ),
590
+        '#name' => 'rules_condition_user_hasrole',
591
+        '#info' => array(
592
+          'label' => 'User has role(s): administrator or moderator',
593
+          'label callback' => FALSE,
594
+          'arguments' => array(
595
+            'user' => array(
596
+              'type' => 'user',
597
+              'label' => 'User',
598
+            ),
599
+          ),
600
+          'module' => 'User',
601
+        ),
602
+        '#weight' => 0,
603
+      ),
604
+      '1' => array(
605
+        '#weight' => 0,
606
+        '0' => array(
607
+          '#weight' => 0,
608
+          '#type' => 'condition',
609
+          '#settings' => array(
610
+            'type' => array(
611
+              'forum' => 'forum',
612
+            ),
613
+            '#argument map' => array(
614
+              'node' => 'node',
615
+            ),
616
+          ),
617
+          '#name' => 'rules_condition_content_is_type',
618
+          '#info' => array(
619
+            'label' => 'Updated content is Forum topic',
620
+            'arguments' => array(
621
+              'node' => array(
622
+                'type' => 'node',
623
+                'label' => 'Content',
624
+              ),
625
+            ),
626
+            'module' => 'Node',
627
+          ),
628
+        ),
629
+        '#type' => 'OR',
630
+        '1' => array(
631
+          '#type' => 'condition',
632
+          '#settings' => array(
633
+            'type' => array(
634
+              'team_forum' => 'team_forum',
635
+            ),
636
+            '#argument map' => array(
637
+              'node' => 'node',
638
+            ),
639
+          ),
640
+          '#name' => 'rules_condition_content_is_type',
641
+          '#info' => array(
642
+            'label' => 'Updated content is Team forum topic',
643
+            'arguments' => array(
644
+              'node' => array(
645
+                'type' => 'node',
646
+                'label' => 'Content',
647
+              ),
648
+            ),
649
+            'module' => 'Node',
650
+          ),
651
+          '#weight' => 0,
652
+        ),
157 653
       ),
158
-      'unflag' => array(
159
-        '0' => 2,
654
+      '3' => array(
655
+        '#weight' => 0,
656
+        '#info' => array(
657
+          'label' => 'PHP code: node content unchanged',
658
+          'label callback' => FALSE,
659
+          'module' => 'PHP',
660
+          'eval input' => array(
661
+            '0' => 'code',
662
+          ),
663
+        ),
664
+        '#name' => 'rules_condition_custom_php',
665
+        '#settings' => array(
666
+          'code' => 'return $node->body == $node_unchanged->body;',
667
+          'vars' => array(
668
+            '0' => 'node',
669
+            '1' => 'node_unchanged',
670
+          ),
671
+          '#eval input' => array(
672
+            'token_rules_input_evaluator' => array(
673
+              'code' => array(
674
+                '0' => ':global',
675
+              ),
676
+            ),
677
+          ),
678
+        ),
679
+        '#type' => 'condition',
680
+      ),
681
+      '4' => array(
682
+        '#weight' => 0,
683
+        '#info' => array(
684
+          'label' => 'PHP code: node locked',
685
+          'label callback' => FALSE,
686
+          'module' => 'PHP',
687
+          'eval input' => array(
688
+            '0' => 'code',
689
+          ),
690
+        ),
691
+        '#name' => 'rules_condition_custom_php',
692
+        '#type' => 'condition',
693
+        '#settings' => array(
694
+          'code' => 'return $node_unchanged->comment == 2 && $node->comment == 1;',
695
+          'vars' => array(
696
+            '0' => 'node',
697
+            '1' => 'node_unchanged',
698
+          ),
699
+          '#eval input' => array(
700
+            'token_rules_input_evaluator' => array(
701
+              'code' => array(
702
+                '0' => ':global',
703
+              ),
704
+            ),
705
+          ),
706
+        ),
160 707
       ),
161 708
     ),
162
-    'weight' => 0,
163
-    'show_on_page' => 1,
164
-    'show_on_teaser' => 1,
165
-    'show_on_form' => 0,
166
-    'access_author' => '',
167
-    'i18n' => '0',
168
-    'module' => 'boinc_standard',
169
-    'locked' => array(
170
-      '0' => 'name',
709
+    '#actions' => array(
710
+      '0' => array(
711
+        '#info' => array(
712
+          'label' => 'Notify moderators via email',
713
+          'module' => 'BOINC core',
714
+          'eval input' => array(
715
+            '0' => 'subject',
716
+            '1' => 'message',
717
+            '2' => 'from',
718
+          ),
719
+        ),
720
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
721
+        '#settings' => array(
722
+          'from' => '',
723
+          'subject' => 'Forum topic at [:global:site-name] locked by moderator/admin',
724
+          'message' => "[node:type] topic '[node:title]' has been locked by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
725
+          '#eval input' => array(
726
+            'token_rules_input_evaluator' => array(
727
+              'subject' => array(
728
+                '0' => ':global',
729
+              ),
730
+              'message' => array(
731
+                '0' => 'node',
732
+                '1' => 'user',
733
+                '2' => ':global',
734
+              ),
735
+              'from' => array(
736
+                '0' => ':global',
737
+              ),
738
+            ),
739
+          ),
740
+        ),
741
+        '#type' => 'action',
742
+        '#weight' => 0,
743
+      ),
171 744
     ),
172
-    'api_version' => 2,
173
-  );
174
-  return $flags;
175
-
176
-}
177
-
178
-/**
179
- * Implementation of hook_node_info().
180
- */
181
-function boinc_standard_node_info() {
182
-  $items = array(
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' => '',
745
+    '#version' => 6003,
746
+  ),
747
+  'rules_forum_topic_unlocked_by_moderator_admin' => array(
748
+    '#type' => 'rule',
749
+    '#set' => 'event_node_update',
750
+    '#label' => 'Forum topic unlocked by moderator/admin',
751
+    '#active' => 1,
752
+    '#weight' => '0',
753
+    '#categories' => array(
754
+      '0' => 'boinc_standard',
755
+      '1' => 'moderator notification',
193 756
     ),
194
-  );
195
-  return $items;
196
-}
197
-
198
-/**
199
- * Implementation of hook_rules_defaults().
200
- */
201
-function boinc_standard_rules_defaults() {
202
-  return array(
203
-    'rules' => array(
204
-      'rules_forum_topic_marked_sticky_by_moderator_admin' => array(
205
-        '#type' => 'rule',
206
-        '#set' => 'event_node_update',
207
-        '#label' => 'Forum topic marked sticky by moderator/admin',
208
-        '#active' => 1,
209
-        '#weight' => '0',
210
-        '#categories' => array(
211
-          '0' => 'boinc_standard',
212
-          '1' => 'moderator notification',
213
-        ),
214
-        '#status' => 'default',
215
-        '#conditions' => array(
216
-          '0' => array(
217
-            '#type' => 'condition',
218
-            '#settings' => array(
219
-              'roles' => array(
220
-                '0' => 3519698132,
221
-                '1' => 1271379760,
222
-              ),
223
-              'operation' => 'OR',
224
-              '#argument map' => array(
225
-                'user' => 'user',
226
-              ),
227
-            ),
228
-            '#name' => 'rules_condition_user_hasrole',
229
-            '#info' => array(
230
-              'label' => 'User has role(s): administrator or moderator',
231
-              'label callback' => FALSE,
232
-              'arguments' => array(
233
-                'user' => array(
234
-                  'type' => 'user',
235
-                  'label' => 'User',
236
-                ),
237
-              ),
238
-              'module' => 'User',
239
-            ),
240
-            '#weight' => 0,
241
-          ),
242
-          '1' => array(
243
-            '#weight' => 0,
244
-            '0' => array(
245
-              '#weight' => 0,
246
-              '#type' => 'condition',
247
-              '#settings' => array(
248
-                'type' => array(
249
-                  'forum' => 'forum',
250
-                ),
251
-                '#argument map' => array(
252
-                  'node' => 'node',
253
-                ),
254
-              ),
255
-              '#name' => 'rules_condition_content_is_type',
256
-              '#info' => array(
257
-                'label' => 'Updated content is Forum topic',
258
-                'arguments' => array(
259
-                  'node' => array(
260
-                    'type' => 'node',
261
-                    'label' => 'Content',
262
-                  ),
263
-                ),
264
-                'module' => 'Node',
265
-              ),
266
-            ),
267
-            '#type' => 'OR',
268
-            '1' => array(
269
-              '#type' => 'condition',
270
-              '#settings' => array(
271
-                'type' => array(
272
-                  'team_forum' => 'team_forum',
273
-                ),
274
-                '#argument map' => array(
275
-                  'node' => 'node',
276
-                ),
277
-              ),
278
-              '#name' => 'rules_condition_content_is_type',
279
-              '#info' => array(
280
-                'label' => 'Updated content is Team forum topic',
281
-                'arguments' => array(
282
-                  'node' => array(
283
-                    'type' => 'node',
284
-                    'label' => 'Content',
285
-                  ),
286
-                ),
287
-                'module' => 'Node',
288
-              ),
289
-              '#weight' => 0,
290
-            ),
291
-          ),
292
-          '3' => array(
293
-            '#weight' => 0,
294
-            '#info' => array(
295
-              'label' => 'PHP code: node content unchanged',
296
-              'label callback' => FALSE,
297
-              'module' => 'PHP',
298
-              'eval input' => array(
299
-                '0' => 'code',
300
-              ),
301
-            ),
302
-            '#name' => 'rules_condition_custom_php',
303
-            '#settings' => array(
304
-              'code' => 'return $node->body == $node_unchanged->body;',
305
-              'vars' => array(
306
-                '0' => 'node',
307
-                '1' => 'node_unchanged',
757
+    '#status' => 'default',
758
+    '#conditions' => array(
759
+      '0' => array(
760
+        '#type' => 'condition',
761
+        '#settings' => array(
762
+          'roles' => array(
763
+            '0' => 3519698132,
764
+            '1' => 1271379760,
765
+          ),
766
+          'operation' => 'OR',
767
+          '#argument map' => array(
768
+            'user' => 'user',
769
+          ),
770
+        ),
771
+        '#name' => 'rules_condition_user_hasrole',
772
+        '#info' => array(
773
+          'label' => 'User has role(s): administrator or moderator',
774
+          'label callback' => FALSE,
775
+          'arguments' => array(
776
+            'user' => array(
777
+              'type' => 'user',
778
+              'label' => 'User',
779
+            ),
780
+          ),
781
+          'module' => 'User',
782
+        ),
783
+        '#weight' => 0,
784
+      ),
785
+      '1' => array(
786
+        '#weight' => 0,
787
+        '0' => array(
788
+          '#weight' => 0,
789
+          '#type' => 'condition',
790
+          '#settings' => array(
791
+            'type' => array(
792
+              'forum' => 'forum',
793
+            ),
794
+            '#argument map' => array(
795
+              'node' => 'node',
796
+            ),
797
+          ),
798
+          '#name' => 'rules_condition_content_is_type',
799
+          '#info' => array(
800
+            'label' => 'Updated content is Forum topic',
801
+            'arguments' => array(
802
+              'node' => array(
803
+                'type' => 'node',
804
+                'label' => 'Content',
308 805
               ),
309
-              '#eval input' => array(
310
-                'token_rules_input_evaluator' => array(
311
-                  'code' => array(
312
-                    '0' => ':global',
313
-                  ),
314
-                ),
806
+            ),
807
+            'module' => 'Node',
808
+          ),
809
+        ),
810
+        '#type' => 'OR',
811
+        '1' => array(
812
+          '#type' => 'condition',
813
+          '#settings' => array(
814
+            'type' => array(
815
+              'team_forum' => 'team_forum',
816
+            ),
817
+            '#argument map' => array(
818
+              'node' => 'node',
819
+            ),
820
+          ),
821
+          '#name' => 'rules_condition_content_is_type',
822
+          '#info' => array(
823
+            'label' => 'Updated content is Team forum topic',
824
+            'arguments' => array(
825
+              'node' => array(
826
+                'type' => 'node',
827
+                'label' => 'Content',
315 828
               ),
316 829
             ),
317
-            '#type' => 'condition',
830
+            'module' => 'Node',
831
+          ),
832
+          '#weight' => 0,
833
+        ),
834
+      ),
835
+      '3' => array(
836
+        '#weight' => 0,
837
+        '#info' => array(
838
+          'label' => 'PHP code: node content unchanged',
839
+          'label callback' => FALSE,
840
+          'module' => 'PHP',
841
+          'eval input' => array(
842
+            '0' => 'code',
318 843
           ),
319
-          '4' => array(
320
-            '#weight' => 0,
321
-            '#info' => array(
322
-              'label' => 'PHP code: node made sticky',
323
-              'label callback' => FALSE,
324
-              'module' => 'PHP',
325
-              'eval input' => array(
326
-                '0' => 'code',
844
+        ),
845
+        '#name' => 'rules_condition_custom_php',
846
+        '#settings' => array(
847
+          'code' => 'return $node->body == $node_unchanged->body;',
848
+          'vars' => array(
849
+            '0' => 'node',
850
+            '1' => 'node_unchanged',
851
+          ),
852
+          '#eval input' => array(
853
+            'token_rules_input_evaluator' => array(
854
+              'code' => array(
855
+                '0' => ':global',
327 856
               ),
328 857
             ),
329
-            '#name' => 'rules_condition_custom_php',
330
-            '#type' => 'condition',
331
-            '#settings' => array(
332
-              'code' => 'return $node_unchanged->sticky == 0 && $node->sticky == 1;',
333
-              'vars' => array(
334
-                '0' => 'node',
335
-                '1' => 'node_unchanged',
336
-              ),
337
-              '#eval input' => array(
338
-                'token_rules_input_evaluator' => array(
339
-                  'code' => array(
340
-                    '0' => ':global',
341
-                  ),
342
-                ),
343
-              ),
344
-            ),
345
-          ),
346
-        ),
347
-        '#actions' => array(
348
-          '0' => array(
349
-            '#info' => array(
350
-              'label' => 'Notify moderators via email',
351
-              'module' => 'BOINC core',
352
-              'eval input' => array(
353
-                '0' => 'subject',
354
-                '1' => 'message',
355
-                '2' => 'from',
356
-              ),
357
-            ),
358
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
359
-            '#settings' => array(
360
-              'from' => '',
361
-              'subject' => 'Forum topic at [:global:site-name] marked sticky by moderator/admin',
362
-              'message' => "[node:type] topic '[node:title]' has been marked sticky by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
363
-              '#eval input' => array(
364
-                'token_rules_input_evaluator' => array(
365
-                  'subject' => array(
366
-                    '0' => ':global',
367
-                  ),
368
-                  'message' => array(
369
-                    '0' => 'node',
370
-                    '1' => 'user',
371
-                    '2' => ':global',
372
-                  ),
373
-                  'from' => array(
374
-                    '0' => ':global',
375
-                  ),
376
-                ),
377
-              ),
378
-            ),
379
-            '#type' => 'action',
380
-            '#weight' => 0,
381
-          ),
382
-        ),
383
-        '#version' => 6003,
858
+          ),
859
+        ),
860
+        '#type' => 'condition',
384 861
       ),
385
-      'rules_forum_topic_marked_unsticky_by_moderator_admin' => array(
386
-        '#type' => 'rule',
387
-        '#set' => 'event_node_update',
388
-        '#label' => 'Forum topic marked unsticky by moderator/admin',
389
-        '#active' => 1,
390
-        '#weight' => '0',
391
-        '#categories' => array(
392
-          '0' => 'boinc_standard',
393
-          '1' => 'moderator notification',
394
-        ),
395
-        '#status' => 'default',
396
-        '#conditions' => array(
397
-          '0' => array(
398
-            '#type' => 'condition',
399
-            '#settings' => array(
400
-              'roles' => array(
401
-                '0' => 3519698132,
402
-                '1' => 1271379760,
403
-              ),
404
-              'operation' => 'OR',
405
-              '#argument map' => array(
406
-                'user' => 'user',
407
-              ),
408
-            ),
409
-            '#name' => 'rules_condition_user_hasrole',
410
-            '#info' => array(
411
-              'label' => 'User has role(s): administrator or moderator',
412
-              'label callback' => FALSE,
413
-              'arguments' => array(
414
-                'user' => array(
415
-                  'type' => 'user',
416
-                  'label' => 'User',
417
-                ),
418
-              ),
419
-              'module' => 'User',
420
-            ),
421
-            '#weight' => 0,
422
-          ),
423
-          '1' => array(
424
-            '#weight' => 0,
425
-            '0' => array(
426
-              '#weight' => 0,
427
-              '#type' => 'condition',
428
-              '#settings' => array(
429
-                'type' => array(
430
-                  'forum' => 'forum',
431
-                ),
432
-                '#argument map' => array(
433
-                  'node' => 'node',
434
-                ),
435
-              ),
436
-              '#name' => 'rules_condition_content_is_type',
437
-              '#info' => array(
438
-                'label' => 'Updated content is Forum topic',
439
-                'arguments' => array(
440
-                  'node' => array(
441
-                    'type' => 'node',
442
-                    'label' => 'Content',
443
-                  ),
444
-                ),
445
-                'module' => 'Node',
446
-              ),
447
-            ),
448
-            '#type' => 'OR',
449
-            '1' => array(
450
-              '#type' => 'condition',
451
-              '#settings' => array(
452
-                'type' => array(
453
-                  'team_forum' => 'team_forum',
454
-                ),
455
-                '#argument map' => array(
456
-                  'node' => 'node',
457
-                ),
458
-              ),
459
-              '#name' => 'rules_condition_content_is_type',
460
-              '#info' => array(
461
-                'label' => 'Updated content is Team forum topic',
462
-                'arguments' => array(
463
-                  'node' => array(
464
-                    'type' => 'node',
465
-                    'label' => 'Content',
466
-                  ),
467
-                ),
468
-                'module' => 'Node',
469
-              ),
470
-              '#weight' => 0,
471
-            ),
472
-          ),
473
-          '3' => array(
474
-            '#weight' => 0,
475
-            '#info' => array(
476
-              'label' => 'PHP code: node content unchanged',
477
-              'label callback' => FALSE,
478
-              'module' => 'PHP',
479
-              'eval input' => array(
480
-                '0' => 'code',
481
-              ),
482
-            ),
483
-            '#name' => 'rules_condition_custom_php',
484
-            '#settings' => array(
485
-              'code' => 'return $node->body == $node_unchanged->body;',
486
-              'vars' => array(
862
+      '4' => array(
863
+        '#weight' => 0,
864
+        '#info' => array(
865
+          'label' => 'PHP code: node unlocked',
866
+          'label callback' => FALSE,
867
+          'module' => 'PHP',
868
+          'eval input' => array(
869
+            '0' => 'code',
870
+          ),
871
+        ),
872
+        '#name' => 'rules_condition_custom_php',
873
+        '#type' => 'condition',
874
+        '#settings' => array(
875
+          'code' => 'return $node_unchanged->comment == 1 && $node->comment == 2;',
876
+          'vars' => array(
877
+            '0' => 'node',
878
+            '1' => 'node_unchanged',
879
+          ),
880
+          '#eval input' => array(
881
+            'token_rules_input_evaluator' => array(
882
+              'code' => array(
883
+                '0' => ':global',
884
+              ),
885
+            ),
886
+          ),
887
+        ),
888
+      ),
889
+    ),
890
+    '#actions' => array(
891
+      '0' => array(
892
+        '#info' => array(
893
+          'label' => 'Notify moderators via email',
894
+          'module' => 'BOINC core',
895
+          'eval input' => array(
896
+            '0' => 'subject',
897
+            '1' => 'message',
898
+            '2' => 'from',
899
+          ),
900
+        ),
901
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
902
+        '#settings' => array(
903
+          'from' => '',
904
+          'subject' => 'Forum topic at [:global:site-name] unlocked by moderator/admin',
905
+          'message' => "[node:type] topic '[node:title]' has been unlocked by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
906
+          '#eval input' => array(
907
+            'token_rules_input_evaluator' => array(
908
+              'subject' => array(
909
+                '0' => ':global',
910
+              ),
911
+              'message' => array(
487 912
                 '0' => 'node',
488
-                '1' => 'node_unchanged',
913
+                '1' => 'user',
914
+                '2' => ':global',
489 915
               ),
490
-              '#eval input' => array(
491
-                'token_rules_input_evaluator' => array(
492
-                  'code' => array(
493
-                    '0' => ':global',
494
-                  ),
495
-                ),
916
+              'from' => array(
917
+                '0' => ':global',
496 918
               ),
497 919
             ),
498
-            '#type' => 'condition',
499 920
           ),
500
-          '4' => array(
501
-            '#weight' => 0,
502
-            '#info' => array(
503
-              'label' => 'PHP code: node made sticky',
504
-              'label callback' => FALSE,
505
-              'module' => 'PHP',
506
-              'eval input' => array(
507
-                '0' => 'code',
508
-              ),
921
+        ),
922
+        '#type' => 'action',
923
+        '#weight' => 0,
924
+      ),
925
+    ),
926
+    '#version' => 6003,
927
+  ),
928
+  'rules_forum_topic_is_hidden_by_moderator_admin' => array(
929
+    '#type' => 'rule',
930
+    '#set' => 'event_node_update',
931
+    '#label' => 'Forum topic is hidden by moderator/admin',
932
+    '#active' => 1,
933
+    '#weight' => '0',
934
+    '#categories' => array(
935
+      '0' => 'boinc_standard',
936
+      '1' => 'moderator notification',
937
+    ),
938
+    '#status' => 'default',
939
+    '#conditions' => array(
940
+      '0' => array(
941
+        '#type' => 'condition',
942
+        '#settings' => array(
943
+          'roles' => array(
944
+            '0' => 3519698132,
945
+            '1' => 1271379760,
946
+          ),
947
+          'operation' => 'OR',
948
+          '#argument map' => array(
949
+            'user' => 'user',
950
+          ),
951
+        ),
952
+        '#name' => 'rules_condition_user_hasrole',
953
+        '#info' => array(
954
+          'label' => 'User has role(s): administrator or moderator',
955
+          'label callback' => FALSE,
956
+          'arguments' => array(
957
+            'user' => array(
958
+              'type' => 'user',
959
+              'label' => 'User',
509 960
             ),
510
-            '#name' => 'rules_condition_custom_php',
511
-            '#type' => 'condition',
512
-            '#settings' => array(
513
-              'code' => 'return $node_unchanged->sticky == 1 && $node->sticky == 0;',
514
-              'vars' => array(
515
-                '0' => 'node',
516
-                '1' => 'node_unchanged',
517
-              ),
518
-              '#eval input' => array(
519
-                'token_rules_input_evaluator' => array(
520
-                  'code' => array(
521
-                    '0' => ':global',
522
-                  ),
523
-                ),
524
-              ),
525
-            ),
526
-          ),
527
-        ),
528
-        '#actions' => array(
529
-          '0' => array(
530
-            '#info' => array(
531
-              'label' => 'Notify moderators via email',
532
-              'module' => 'BOINC core',
533
-              'eval input' => array(
534
-                '0' => 'subject',
535
-                '1' => 'message',
536
-                '2' => 'from',
537
-              ),
538
-            ),
539
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
540
-            '#settings' => array(
541
-              'from' => '',
542
-              'subject' => 'Forum topic at [:global:site-name] marked unsticky by moderator/admin',
543
-              'message' => "[node:type] topic '[node:title]' has been marked unsticky by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
544
-              '#eval input' => array(
545
-                'token_rules_input_evaluator' => array(
546
-                  'subject' => array(
547
-                    '0' => ':global',
548
-                  ),
549
-                  'message' => array(
550
-                    '0' => 'node',
551
-                    '1' => 'user',
552
-                    '2' => ':global',
553
-                  ),
554
-                  'from' => array(
555
-                    '0' => ':global',
556
-                  ),
557
-                ),
558
-              ),
559
-            ),
560
-            '#type' => 'action',
561
-            '#weight' => 0,
562
-          ),
563
-        ),
564
-        '#version' => 6003,
961
+          ),
962
+          'module' => 'User',
963
+        ),
964
+        '#weight' => 0,
565 965
       ),
566
-      'rules_forum_topic_locked_by_moderator_admin' => array(
567
-        '#type' => 'rule',
568
-        '#set' => 'event_node_update',
569
-        '#label' => 'Forum topic locked by moderator/admin',
570
-        '#active' => 1,
571
-        '#weight' => '0',
572
-        '#categories' => array(
573
-          '0' => 'boinc_standard',
574
-          '1' => 'moderator notification',
575
-        ),
576
-        '#status' => 'default',
577
-        '#conditions' => array(
578
-          '0' => array(
579
-            '#type' => 'condition',
580
-            '#settings' => array(
581
-              'roles' => array(
582
-                '0' => 3519698132,
583
-                '1' => 1271379760,
584
-              ),
585
-              'operation' => 'OR',
586
-              '#argument map' => array(
587
-                'user' => 'user',
588
-              ),
589
-            ),
590
-            '#name' => 'rules_condition_user_hasrole',
591
-            '#info' => array(
592
-              'label' => 'User has role(s): administrator or moderator',
593
-              'label callback' => FALSE,
594
-              'arguments' => array(
595
-                'user' => array(
596
-                  'type' => 'user',
597
-                  'label' => 'User',
598
-                ),
599
-              ),
600
-              'module' => 'User',
601
-            ),
602
-            '#weight' => 0,
603
-          ),
604
-          '1' => array(
605
-            '#weight' => 0,
606
-            '0' => array(
607
-              '#weight' => 0,
608
-              '#type' => 'condition',
609
-              '#settings' => array(
610
-                'type' => array(
611
-                  'forum' => 'forum',
612
-                ),
613
-                '#argument map' => array(
614
-                  'node' => 'node',
615
-                ),
616
-              ),
617
-              '#name' => 'rules_condition_content_is_type',
618
-              '#info' => array(
619
-                'label' => 'Updated content is Forum topic',
620
-                'arguments' => array(
621
-                  'node' => array(
622
-                    'type' => 'node',
623
-                    'label' => 'Content',
624
-                  ),
625
-                ),
626
-                'module' => 'Node',
627
-              ),
628
-            ),
629
-            '#type' => 'OR',
630
-            '1' => array(
631
-              '#type' => 'condition',
632
-              '#settings' => array(
633
-                'type' => array(
634
-                  'team_forum' => 'team_forum',
635
-                ),
636
-                '#argument map' => array(
637
-                  'node' => 'node',
638
-                ),
639
-              ),
640
-              '#name' => 'rules_condition_content_is_type',
641
-              '#info' => array(
642
-                'label' => 'Updated content is Team forum topic',
643
-                'arguments' => array(
644
-                  'node' => array(
645
-                    'type' => 'node',
646
-                    'label' => 'Content',
647
-                  ),
648
-                ),
649
-                'module' => 'Node',
650
-              ),
651
-              '#weight' => 0,
652
-            ),
653
-          ),
654
-          '3' => array(
655
-            '#weight' => 0,
656
-            '#info' => array(
657
-              'label' => 'PHP code: node content unchanged',
658
-              'label callback' => FALSE,
659
-              'module' => 'PHP',
660
-              'eval input' => array(
661
-                '0' => 'code',
662
-              ),
663
-            ),
664
-            '#name' => 'rules_condition_custom_php',
665
-            '#settings' => array(
666
-              'code' => 'return $node->body == $node_unchanged->body;',
667
-              'vars' => array(
668
-                '0' => 'node',
669
-                '1' => 'node_unchanged',
966
+      '1' => array(
967
+        '#weight' => 0,
968
+        '0' => array(
969
+          '#weight' => 0,
970
+          '#type' => 'condition',
971
+          '#settings' => array(
972
+            'type' => array(
973
+              'forum' => 'forum',
974
+            ),
975
+            '#argument map' => array(
976
+              'node' => 'node',
977
+            ),
978
+          ),
979
+          '#name' => 'rules_condition_content_is_type',
980
+          '#info' => array(
981
+            'label' => 'Updated content is Forum topic',
982
+            'arguments' => array(
983
+              'node' => array(
984
+                'type' => 'node',
985
+                'label' => 'Content',
670 986
               ),
671
-              '#eval input' => array(
672
-                'token_rules_input_evaluator' => array(
673
-                  'code' => array(
674
-                    '0' => ':global',
675
-                  ),
676
-                ),
987
+            ),
988
+            'module' => 'Node',
989
+          ),
990
+        ),
991
+        '#type' => 'OR',
992
+        '1' => array(
993
+          '#type' => 'condition',
994
+          '#settings' => array(
995
+            'type' => array(
996
+              'team_forum' => 'team_forum',
997
+            ),
998
+            '#argument map' => array(
999
+              'node' => 'node',
1000
+            ),
1001
+          ),
1002
+          '#name' => 'rules_condition_content_is_type',
1003
+          '#info' => array(
1004
+            'label' => 'Updated content is Team forum topic',
1005
+            'arguments' => array(
1006
+              'node' => array(
1007
+                'type' => 'node',
1008
+                'label' => 'Content',
677 1009
               ),
678 1010
             ),
679
-            '#type' => 'condition',
1011
+            'module' => 'Node',
680 1012
           ),
681
-          '4' => array(
682
-            '#weight' => 0,
683
-            '#info' => array(
684
-              'label' => 'PHP code: node locked',
685
-              'label callback' => FALSE,
686
-              'module' => 'PHP',
687
-              'eval input' => array(
688
-                '0' => 'code',
1013
+          '#weight' => 0,
1014
+        ),
1015
+      ),
1016
+      '3' => array(
1017
+        '#weight' => 0,
1018
+        '#info' => array(
1019
+          'label' => 'PHP code: node content unchanged',
1020
+          'label callback' => FALSE,
1021
+          'module' => 'PHP',
1022
+          'eval input' => array(
1023
+            '0' => 'code',
1024
+          ),
1025
+        ),
1026
+        '#name' => 'rules_condition_custom_php',
1027
+        '#settings' => array(
1028
+          'code' => 'return $node->body == $node_unchanged->body;',
1029
+          'vars' => array(
1030
+            '0' => 'node',
1031
+            '1' => 'node_unchanged',
1032
+          ),
1033
+          '#eval input' => array(
1034
+            'token_rules_input_evaluator' => array(
1035
+              'code' => array(
1036
+                '0' => ':global',
689 1037
               ),
690 1038
             ),
691
-            '#name' => 'rules_condition_custom_php',
692
-            '#type' => 'condition',
693
-            '#settings' => array(
694
-              'code' => 'return $node_unchanged->comment == 2 && $node->comment == 1;',
695
-              'vars' => array(
696
-                '0' => 'node',
697
-                '1' => 'node_unchanged',
698
-              ),
699
-              '#eval input' => array(
700
-                'token_rules_input_evaluator' => array(
701
-                  'code' => array(
702
-                    '0' => ':global',
703
-                  ),
704
-                ),
705
-              ),
706
-            ),
707
-          ),
708
-        ),
709
-        '#actions' => array(
710
-          '0' => array(
711
-            '#info' => array(
712
-              'label' => 'Notify moderators via email',
713
-              'module' => 'BOINC core',
714
-              'eval input' => array(
715
-                '0' => 'subject',
716
-                '1' => 'message',
717
-                '2' => 'from',
718
-              ),
719
-            ),
720
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
721
-            '#settings' => array(
722
-              'from' => '',
723
-              'subject' => 'Forum topic at [:global:site-name] locked by moderator/admin',
724
-              'message' => "[node:type] topic '[node:title]' has been locked by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
725
-              '#eval input' => array(
726
-                'token_rules_input_evaluator' => array(
727
-                  'subject' => array(
728
-                    '0' => ':global',
729
-                  ),
730
-                  'message' => array(
731
-                    '0' => 'node',
732
-                    '1' => 'user',
733
-                    '2' => ':global',
734
-                  ),
735
-                  'from' => array(
736
-                    '0' => ':global',
737
-                  ),
738
-                ),
739
-              ),
740
-            ),
741
-            '#type' => 'action',
742
-            '#weight' => 0,
743
-          ),
744
-        ),
745
-        '#version' => 6003,
1039
+          ),
1040
+        ),
1041
+        '#type' => 'condition',
1042
+      ),
1043
+      '4' => array(
1044
+        '#weight' => 0,
1045
+        '#info' => array(
1046
+          'label' => 'PHP code: node status changed to hidden',
1047
+          'label callback' => FALSE,
1048
+          'module' => 'PHP',
1049
+          'eval input' => array(
1050
+            '0' => 'code',
1051
+          ),
1052
+        ),
1053
+        '#name' => 'rules_condition_custom_php',
1054
+        '#type' => 'condition',
1055
+        '#settings' => array(
1056
+          'code' => 'return $node_unchanged->status == 1 && $node->status == 0;',
1057
+          'vars' => array(
1058
+            '0' => 'node',
1059
+            '1' => 'node_unchanged',
1060
+          ),
1061
+          '#eval input' => array(
1062
+            'token_rules_input_evaluator' => array(
1063
+              'code' => array(
1064
+                '0' => ':global',
1065
+              ),
1066
+            ),
1067
+          ),
1068
+        ),
746 1069
       ),
747
-      'rules_forum_topic_unlocked_by_moderator_admin' => array(
748
-        '#type' => 'rule',
749
-        '#set' => 'event_node_update',
750
-        '#label' => 'Forum topic unlocked by moderator/admin',
751
-        '#active' => 1,
752
-        '#weight' => '0',
753
-        '#categories' => array(
754
-          '0' => 'boinc_standard',
755
-          '1' => 'moderator notification',
756
-        ),
757
-        '#status' => 'default',
758
-        '#conditions' => array(
759
-          '0' => array(
760
-            '#type' => 'condition',
761
-            '#settings' => array(
762
-              'roles' => array(
763
-                '0' => 3519698132,
764
-                '1' => 1271379760,
765
-              ),
766
-              'operation' => 'OR',
767
-              '#argument map' => array(
768
-                'user' => 'user',
769
-              ),
770
-            ),
771
-            '#name' => 'rules_condition_user_hasrole',
772
-            '#info' => array(
773
-              'label' => 'User has role(s): administrator or moderator',
774
-              'label callback' => FALSE,
775
-              'arguments' => array(
776
-                'user' => array(
777
-                  'type' => 'user',
778
-                  'label' => 'User',
779
-                ),
780
-              ),
781
-              'module' => 'User',
782
-            ),
783
-            '#weight' => 0,
784
-          ),
785
-          '1' => array(
786
-            '#weight' => 0,
787
-            '0' => array(
788
-              '#weight' => 0,
789
-              '#type' => 'condition',
790
-              '#settings' => array(
791
-                'type' => array(
792
-                  'forum' => 'forum',
793
-                ),
794
-                '#argument map' => array(
795
-                  'node' => 'node',
796
-                ),
797
-              ),
798
-              '#name' => 'rules_condition_content_is_type',
799
-              '#info' => array(
800
-                'label' => 'Updated content is Forum topic',
801
-                'arguments' => array(
802
-                  'node' => array(
803
-                    'type' => 'node',
804
-                    'label' => 'Content',
805
-                  ),
806
-                ),
807
-                'module' => 'Node',
808
-              ),
809
-            ),
810
-            '#type' => 'OR',
811
-            '1' => array(
812
-              '#type' => 'condition',
813
-              '#settings' => array(
814
-                'type' => array(
815
-                  'team_forum' => 'team_forum',
816
-                ),
817
-                '#argument map' => array(
818
-                  'node' => 'node',
819
-                ),
820
-              ),
821
-              '#name' => 'rules_condition_content_is_type',
822
-              '#info' => array(
823
-                'label' => 'Updated content is Team forum topic',
824
-                'arguments' => array(
825
-                  'node' => array(
826
-                    'type' => 'node',
827
-                    'label' => 'Content',
828
-                  ),
829
-                ),
830
-                'module' => 'Node',
831
-              ),
832
-              '#weight' => 0,
833
-            ),
834
-          ),
835
-          '3' => array(
836
-            '#weight' => 0,
837
-            '#info' => array(
838
-              'label' => 'PHP code: node content unchanged',
839
-              'label callback' => FALSE,
840
-              'module' => 'PHP',
841
-              'eval input' => array(
842
-                '0' => 'code',
843
-              ),
844
-            ),
845
-            '#name' => 'rules_condition_custom_php',
846
-            '#settings' => array(
847
-              'code' => 'return $node->body == $node_unchanged->body;',
848
-              'vars' => array(
1070
+    ),
1071
+    '#actions' => array(
1072
+      '0' => array(
1073
+        '#info' => array(
1074
+          'label' => 'Notify moderators via email',
1075
+          'module' => 'BOINC core',
1076
+          'eval input' => array(
1077
+            '0' => 'subject',
1078
+            '1' => 'message',
1079
+            '2' => 'from',
1080
+          ),
1081
+        ),
1082
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
1083
+        '#settings' => array(
1084
+          'from' => '',
1085
+          'subject' => 'Forum topic at [:global:site-name] hidden by moderator/admin',
1086
+          'message' => "[node:type] topic '[node:title]' has been hidden by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1087
+          '#eval input' => array(
1088
+            'token_rules_input_evaluator' => array(
1089
+              'subject' => array(
1090
+                '0' => ':global',
1091
+              ),
1092
+              'message' => array(
849 1093
                 '0' => 'node',
850
-                '1' => 'node_unchanged',
1094
+                '1' => 'user',
1095
+                '2' => ':global',
851 1096
               ),
852
-              '#eval input' => array(
853
-                'token_rules_input_evaluator' => array(
854
-                  'code' => array(
855
-                    '0' => ':global',
856
-                  ),
857
-                ),
1097
+              'from' => array(
1098
+                '0' => ':global',
1099
+              ),
1100
+            ),
1101
+          ),
1102
+        ),
1103
+        '#type' => 'action',
1104
+        '#weight' => 0,
1105
+      ),
1106
+    ),
1107
+    '#version' => 6003,
1108
+  ),
1109
+  'rules_forum_topic_is_unhidden_by_moderator_admin' => array(
1110
+    '#type' => 'rule',
1111
+    '#set' => 'event_node_update',
1112
+    '#label' => 'Forum topic is unhidden by moderator/admin',
1113
+    '#active' => 1,
1114
+    '#weight' => '0',
1115
+    '#categories' => array(
1116
+      '0' => 'boinc_standard',
1117
+      '1' => 'moderator notification',
1118
+    ),
1119
+    '#status' => 'default',
1120
+    '#conditions' => array(
1121
+      '0' => array(
1122
+        '#type' => 'condition',
1123
+        '#settings' => array(
1124
+          'roles' => array(
1125
+            '0' => 3519698132,
1126
+            '1' => 1271379760,
1127
+          ),
1128
+          'operation' => 'OR',
1129
+          '#argument map' => array(
1130
+            'user' => 'user',
1131
+          ),
1132
+        ),
1133
+        '#name' => 'rules_condition_user_hasrole',
1134
+        '#info' => array(
1135
+          'label' => 'User has role(s): administrator or moderator',
1136
+          'label callback' => FALSE,
1137
+          'arguments' => array(
1138
+            'user' => array(
1139
+              'type' => 'user',
1140
+              'label' => 'User',
1141
+            ),
1142
+          ),
1143
+          'module' => 'User',
1144
+        ),
1145
+        '#weight' => 0,
1146
+      ),
1147
+      '1' => array(
1148
+        '#type' => 'OR',
1149
+        '0' => array(
1150
+          '#info' => array(
1151
+            'label' => 'Updated content is Forum topic',
1152
+            'arguments' => array(
1153
+              'node' => array(
1154
+                'type' => 'node',
1155
+                'label' => 'Content',
1156
+              ),
1157
+            ),
1158
+            'module' => 'Node',
1159
+          ),
1160
+          '#name' => 'rules_condition_content_is_type',
1161
+          '#settings' => array(
1162
+            'type' => array(
1163
+              'forum' => 'forum',
1164
+            ),
1165
+            '#argument map' => array(
1166
+              'node' => 'node',
1167
+            ),
1168
+          ),
1169
+          '#type' => 'condition',
1170
+          '#weight' => 0,
1171
+        ),
1172
+        '#weight' => 0,
1173
+        '1' => array(
1174
+          '#weight' => 0,
1175
+          '#info' => array(
1176
+            'label' => 'Updated content is Team forum topic',
1177
+            'arguments' => array(
1178
+              'node' => array(
1179
+                'type' => 'node',
1180
+                'label' => 'Content',
1181
+              ),
1182
+            ),
1183
+            'module' => 'Node',
1184
+          ),
1185
+          '#name' => 'rules_condition_content_is_type',
1186
+          '#settings' => array(
1187
+            'type' => array(
1188
+              'team_forum' => 'team_forum',
1189
+            ),
1190
+            '#argument map' => array(
1191
+              'node' => 'node',
1192
+            ),
1193
+          ),
1194
+          '#type' => 'condition',
1195
+        ),
1196
+      ),
1197
+      '3' => array(
1198
+        '#type' => 'condition',
1199
+        '#settings' => array(
1200
+          'code' => 'return $node->body == $node_unchanged->body;',
1201
+          'vars' => array(
1202
+            '0' => 'node',
1203
+            '1' => 'node_unchanged',
1204
+          ),
1205
+          '#eval input' => array(
1206
+            'token_rules_input_evaluator' => array(
1207
+              'code' => array(
1208
+                '0' => ':global',
858 1209
               ),
859 1210
             ),
860
-            '#type' => 'condition',
861 1211
           ),
862
-          '4' => array(
863
-            '#weight' => 0,
864
-            '#info' => array(
865
-              'label' => 'PHP code: node unlocked',
866
-              'label callback' => FALSE,
867
-              'module' => 'PHP',
868
-              'eval input' => array(
869
-                '0' => 'code',
1212
+        ),
1213
+        '#name' => 'rules_condition_custom_php',
1214
+        '#info' => array(
1215
+          'label' => 'PHP code: node content is unchanged',
1216
+          'label callback' => FALSE,
1217
+          'module' => 'PHP',
1218
+          'eval input' => array(
1219
+            '0' => 'code',
1220
+          ),
1221
+        ),
1222
+        '#weight' => 0,
1223
+      ),
1224
+      '4' => array(
1225
+        '#type' => 'condition',
1226
+        '#settings' => array(
1227
+          'code' => 'return $node_unchanged->status == 0 && $node->status == 1;',
1228
+          'vars' => array(
1229
+            '0' => 'node',
1230
+            '1' => 'node_unchanged',
1231
+          ),
1232
+          '#eval input' => array(
1233
+            'token_rules_input_evaluator' => array(
1234
+              'code' => array(
1235
+                '0' => ':global',
870 1236
               ),
871 1237
             ),
872
-            '#name' => 'rules_condition_custom_php',
873
-            '#type' => 'condition',
874
-            '#settings' => array(
875
-              'code' => 'return $node_unchanged->comment == 1 && $node->comment == 2;',
876
-              'vars' => array(
877
-                '0' => 'node',
878
-                '1' => 'node_unchanged',
879
-              ),
880
-              '#eval input' => array(
881
-                'token_rules_input_evaluator' => array(
882
-                  'code' => array(
883
-                    '0' => ':global',
884
-                  ),
885
-                ),
886
-              ),
887
-            ),
888
-          ),
889
-        ),
890
-        '#actions' => array(
891
-          '0' => array(
892
-            '#info' => array(
893
-              'label' => 'Notify moderators via email',
894
-              'module' => 'BOINC core',
895
-              'eval input' => array(
896
-                '0' => 'subject',
897
-                '1' => 'message',
898
-                '2' => 'from',
899
-              ),
900
-            ),
901
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
902
-            '#settings' => array(
903
-              'from' => '',
904
-              'subject' => 'Forum topic at [:global:site-name] unlocked by moderator/admin',
905
-              'message' => "[node:type] topic '[node:title]' has been unlocked by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
906
-              '#eval input' => array(
907
-                'token_rules_input_evaluator' => array(
908
-                  'subject' => array(
909
-                    '0' => ':global',
910
-                  ),
911
-                  'message' => array(
912
-                    '0' => 'node',
913
-                    '1' => 'user',
914
-                    '2' => ':global',
915
-                  ),
916
-                  'from' => array(
917
-                    '0' => ':global',
918
-                  ),
919
-                ),
920
-              ),
921
-            ),
922
-            '#type' => 'action',
923
-            '#weight' => 0,
924
-          ),
925
-        ),
926
-        '#version' => 6003,
1238
+          ),
1239
+        ),
1240
+        '#name' => 'rules_condition_custom_php',
1241
+        '#info' => array(
1242
+          'label' => 'PHP code: node status changed to unhidden',
1243
+          'label callback' => FALSE,
1244
+          'module' => 'PHP',
1245
+          'eval input' => array(
1246
+            '0' => 'code',
1247
+          ),
1248
+        ),
1249
+        '#weight' => 0,
927 1250
       ),
928
-      'rules_forum_topic_is_hidden_by_moderator_admin' => array(
929
-        '#type' => 'rule',
930
-        '#set' => 'event_node_update',
931
-        '#label' => 'Forum topic is hidden by moderator/admin',
932
-        '#active' => 1,
933
-        '#weight' => '0',
934
-        '#categories' => array(
935
-          '0' => 'boinc_standard',
936
-          '1' => 'moderator notification',
937
-        ),
938
-        '#status' => 'default',
939
-        '#conditions' => array(
940
-          '0' => array(
941
-            '#type' => 'condition',
942
-            '#settings' => array(
943
-              'roles' => array(
944
-                '0' => 3519698132,
945
-                '1' => 1271379760,
946
-              ),
947
-              'operation' => 'OR',
948
-              '#argument map' => array(
949
-                'user' => 'user',
950
-              ),
951
-            ),
952
-            '#name' => 'rules_condition_user_hasrole',
953
-            '#info' => array(
954
-              'label' => 'User has role(s): administrator or moderator',
955
-              'label callback' => FALSE,
956
-              'arguments' => array(
957
-                'user' => array(
958
-                  'type' => 'user',
959
-                  'label' => 'User',
960
-                ),
961
-              ),
962
-              'module' => 'User',
963
-            ),
964
-            '#weight' => 0,
965
-          ),
966
-          '1' => array(
967
-            '#weight' => 0,
968
-            '0' => array(
969
-              '#weight' => 0,
970
-              '#type' => 'condition',
971
-              '#settings' => array(
972
-                'type' => array(
973
-                  'forum' => 'forum',
974
-                ),
975
-                '#argument map' => array(
976
-                  'node' => 'node',
977
-                ),
978
-              ),
979
-              '#name' => 'rules_condition_content_is_type',
980
-              '#info' => array(
981
-                'label' => 'Updated content is Forum topic',
982
-                'arguments' => array(
983
-                  'node' => array(
984
-                    'type' => 'node',
985
-                    'label' => 'Content',
986
-                  ),
987
-                ),
988
-                'module' => 'Node',
989
-              ),
990
-            ),
991
-            '#type' => 'OR',
992
-            '1' => array(
993
-              '#type' => 'condition',
994
-              '#settings' => array(
995
-                'type' => array(
996
-                  'team_forum' => 'team_forum',
997
-                ),
998
-                '#argument map' => array(
999
-                  'node' => 'node',
1000
-                ),
1001
-              ),
1002
-              '#name' => 'rules_condition_content_is_type',
1003
-              '#info' => array(
1004
-                'label' => 'Updated content is Team forum topic',
1005
-                'arguments' => array(
1006
-                  'node' => array(
1007
-                    'type' => 'node',
1008
-                    'label' => 'Content',
1009
-                  ),
1010
-                ),
1011
-                'module' => 'Node',
1012
-              ),
1013
-              '#weight' => 0,
1014
-            ),
1015
-          ),
1016
-          '3' => array(
1017
-            '#weight' => 0,
1018
-            '#info' => array(
1019
-              'label' => 'PHP code: node content unchanged',
1020
-              'label callback' => FALSE,
1021
-              'module' => 'PHP',
1022
-              'eval input' => array(
1023
-                '0' => 'code',
1024
-              ),
1025
-            ),
1026
-            '#name' => 'rules_condition_custom_php',
1027
-            '#settings' => array(
1028
-              'code' => 'return $node->body == $node_unchanged->body;',
1029
-              'vars' => array(
1251
+    ),
1252
+    '#actions' => array(
1253
+      '0' => array(
1254
+        '#weight' => 0,
1255
+        '#info' => array(
1256
+          'label' => 'Notify moderators via email',
1257
+          'module' => 'BOINC core',
1258
+          'eval input' => array(
1259
+            '0' => 'subject',
1260
+            '1' => 'message',
1261
+            '2' => 'from',
1262
+          ),
1263
+        ),
1264
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
1265
+        '#settings' => array(
1266
+          'from' => '',
1267
+          'subject' => 'Forum topic at [:global:site-name] unhidden by moderator/admin',
1268
+          'message' => "[node:type] topic '[node:title]' has been unhidden by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1269
+          '#eval input' => array(
1270
+            'token_rules_input_evaluator' => array(
1271
+              'subject' => array(
1272
+                '0' => ':global',
1273
+              ),
1274
+              'message' => array(
1030 1275
                 '0' => 'node',
1031
-                '1' => 'node_unchanged',
1276
+                '1' => 'user',
1277
+                '2' => ':global',
1032 1278
               ),
1033
-              '#eval input' => array(
1034
-                'token_rules_input_evaluator' => array(
1035
-                  'code' => array(
1036
-                    '0' => ':global',
1037
-                  ),
1038
-                ),
1279
+              'from' => array(
1280
+                '0' => ':global',
1039 1281
               ),
1040 1282
             ),
1041
-            '#type' => 'condition',
1042 1283
           ),
1043
-          '4' => array(
1044
-            '#weight' => 0,
1045
-            '#info' => array(
1046
-              'label' => 'PHP code: node status changed to hidden',
1047
-              'label callback' => FALSE,
1048
-              'module' => 'PHP',
1049
-              'eval input' => array(
1050
-                '0' => 'code',
1284
+        ),
1285
+        '#type' => 'action',
1286
+      ),
1287
+    ),
1288
+    '#version' => 6003,
1289
+  ),
1290
+  'rules_forum_topic_is_edited_by_moderator_or_admin' => array(
1291
+    '#type' => 'rule',
1292
+    '#set' => 'event_node_update',
1293
+    '#label' => 'Forum topic is edited by moderator or admin',
1294
+    '#active' => 1,
1295
+    '#weight' => '0',
1296
+    '#categories' => array(
1297
+      '0' => 'boinc_standard',
1298
+      '1' => 'moderator notification',
1299
+    ),
1300
+    '#status' => 'default',
1301
+    '#conditions' => array(
1302
+      '0' => array(
1303
+        '#weight' => 0,
1304
+        '#type' => 'condition',
1305
+        '#settings' => array(
1306
+          'roles' => array(
1307
+            '0' => 3519698132,
1308
+            '1' => 1271379760,
1309
+          ),
1310
+          'operation' => 'OR',
1311
+          '#argument map' => array(
1312
+            'user' => 'user',
1313
+          ),
1314
+        ),
1315
+        '#name' => 'rules_condition_user_hasrole',
1316
+        '#info' => array(
1317
+          'label' => 'User has role(s): administrator or moderator',
1318
+          'label callback' => FALSE,
1319
+          'arguments' => array(
1320
+            'user' => array(
1321
+              'type' => 'user',
1322
+              'label' => 'User',
1323
+            ),
1324
+          ),
1325
+          'module' => 'User',
1326
+        ),
1327
+      ),
1328
+      '1' => array(
1329
+        '#weight' => 0,
1330
+        '0' => array(
1331
+          '#weight' => 0,
1332
+          '#info' => array(
1333
+            'label' => 'Updated content is Forum topic',
1334
+            'arguments' => array(
1335
+              'node' => array(
1336
+                'type' => 'node',
1337
+                'label' => 'Content',
1338
+              ),
1339
+            ),
1340
+            'module' => 'Node',
1341
+          ),
1342
+          '#name' => 'rules_condition_content_is_type',
1343
+          '#settings' => array(
1344
+            'type' => array(
1345
+              'forum' => 'forum',
1346
+            ),
1347
+            '#argument map' => array(
1348
+              'node' => 'node',
1349
+            ),
1350
+          ),
1351
+          '#type' => 'condition',
1352
+        ),
1353
+        '#type' => 'OR',
1354
+        '1' => array(
1355
+          '#type' => 'condition',
1356
+          '#settings' => array(
1357
+            'type' => array(
1358
+              'team_forum' => 'team_forum',
1359
+            ),
1360
+            '#argument map' => array(
1361
+              'node' => 'node',
1362
+            ),
1363
+          ),
1364
+          '#name' => 'rules_condition_content_is_type',
1365
+          '#info' => array(
1366
+            'label' => 'Updated content is Team forum topic',
1367
+            'arguments' => array(
1368
+              'node' => array(
1369
+                'type' => 'node',
1370
+                'label' => 'Content',
1051 1371
               ),
1052 1372
             ),
1053
-            '#name' => 'rules_condition_custom_php',
1054
-            '#type' => 'condition',
1055
-            '#settings' => array(
1056
-              'code' => 'return $node_unchanged->status == 1 && $node->status == 0;',
1057
-              'vars' => array(
1058
-                '0' => 'node',
1059
-                '1' => 'node_unchanged',
1060
-              ),
1061
-              '#eval input' => array(
1062
-                'token_rules_input_evaluator' => array(
1063
-                  'code' => array(
1064
-                    '0' => ':global',
1065
-                  ),
1066
-                ),
1067
-              ),
1068
-            ),
1069
-          ),
1070
-        ),
1071
-        '#actions' => array(
1072
-          '0' => array(
1073
-            '#info' => array(
1074
-              'label' => 'Notify moderators via email',
1075
-              'module' => 'BOINC core',
1076
-              'eval input' => array(
1077
-                '0' => 'subject',
1078
-                '1' => 'message',
1079
-                '2' => 'from',
1080
-              ),
1081
-            ),
1082
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
1083
-            '#settings' => array(
1084
-              'from' => '',
1085
-              'subject' => 'Forum topic at [:global:site-name] hidden by moderator/admin',
1086
-              'message' => "[node:type] topic '[node:title]' has been hidden by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1087
-              '#eval input' => array(
1088
-                'token_rules_input_evaluator' => array(
1089
-                  'subject' => array(
1090
-                    '0' => ':global',
1091
-                  ),
1092
-                  'message' => array(
1093
-                    '0' => 'node',
1094
-                    '1' => 'user',
1095
-                    '2' => ':global',
1096
-                  ),
1097
-                  'from' => array(
1098
-                    '0' => ':global',
1099
-                  ),
1100
-                ),
1101
-              ),
1102
-            ),
1103
-            '#type' => 'action',
1104
-            '#weight' => 0,
1105
-          ),
1106
-        ),
1107
-        '#version' => 6003,
1373
+            'module' => 'Node',
1374
+          ),
1375
+          '#weight' => 0,
1376
+        ),
1108 1377
       ),
1109
-      'rules_forum_topic_is_unhidden_by_moderator_admin' => array(
1110
-        '#type' => 'rule',
1111
-        '#set' => 'event_node_update',
1112
-        '#label' => 'Forum topic is unhidden by moderator/admin',
1113
-        '#active' => 1,
1114
-        '#weight' => '0',
1115
-        '#categories' => array(
1116
-          '0' => 'boinc_standard',
1117
-          '1' => 'moderator notification',
1118
-        ),
1119
-        '#status' => 'default',
1120
-        '#conditions' => array(
1121
-          '0' => array(
1122
-            '#type' => 'condition',
1123
-            '#settings' => array(
1124
-              'roles' => array(
1125
-                '0' => 3519698132,
1126
-                '1' => 1271379760,
1127
-              ),
1128
-              'operation' => 'OR',
1129
-              '#argument map' => array(
1130
-                'user' => 'user',
1131
-              ),
1132
-            ),
1133
-            '#name' => 'rules_condition_user_hasrole',
1134
-            '#info' => array(
1135
-              'label' => 'User has role(s): administrator or moderator',
1136
-              'label callback' => FALSE,
1137
-              'arguments' => array(
1138
-                'user' => array(
1139
-                  'type' => 'user',
1140
-                  'label' => 'User',
1141
-                ),
1142
-              ),
1143
-              'module' => 'User',
1144
-            ),
1145
-            '#weight' => 0,
1146
-          ),
1147
-          '1' => array(
1148
-            '#type' => 'OR',
1149
-            '0' => array(
1150
-              '#info' => array(
1151
-                'label' => 'Updated content is Forum topic',
1152
-                'arguments' => array(
1153
-                  'node' => array(
1154
-                    'type' => 'node',
1155
-                    'label' => 'Content',
1156
-                  ),
1157
-                ),
1158
-                'module' => 'Node',
1159
-              ),
1160
-              '#name' => 'rules_condition_content_is_type',
1161
-              '#settings' => array(
1162
-                'type' => array(
1163
-                  'forum' => 'forum',
1164
-                ),
1165
-                '#argument map' => array(
1166
-                  'node' => 'node',
1167
-                ),
1168
-              ),
1169
-              '#type' => 'condition',
1170
-              '#weight' => 0,
1171
-            ),
1172
-            '#weight' => 0,
1173
-            '1' => array(
1174
-              '#weight' => 0,
1175
-              '#info' => array(
1176
-                'label' => 'Updated content is Team forum topic',
1177
-                'arguments' => array(
1178
-                  'node' => array(
1179
-                    'type' => 'node',
1180
-                    'label' => 'Content',
1181
-                  ),
1182
-                ),
1183
-                'module' => 'Node',
1184
-              ),
1185
-              '#name' => 'rules_condition_content_is_type',
1186
-              '#settings' => array(
1187
-                'type' => array(
1188
-                  'team_forum' => 'team_forum',
1189
-                ),
1190
-                '#argument map' => array(
1191
-                  'node' => 'node',
1192
-                ),
1193
-              ),
1194
-              '#type' => 'condition',
1195
-            ),
1196
-          ),
1197
-          '3' => array(
1198
-            '#type' => 'condition',
1199
-            '#settings' => array(
1200
-              'code' => 'return $node->body == $node_unchanged->body;',
1201
-              'vars' => array(
1378
+      '2' => array(
1379
+        '#weight' => 0,
1380
+        '#info' => array(
1381
+          'label' => 'PHP code: content changed',
1382
+          'label callback' => FALSE,
1383
+          'module' => 'PHP',
1384
+          'eval input' => array(
1385
+            '0' => 'code',
1386
+          ),
1387
+        ),
1388
+        '#name' => 'rules_condition_custom_php',
1389
+        '#settings' => array(
1390
+          'code' => 'return ($node->body != $node_unchanged->body);',
1391
+          'vars' => array(
1392
+            '0' => 'node',
1393
+            '1' => 'node_unchanged',
1394
+          ),
1395
+          '#eval input' => array(
1396
+            'token_rules_input_evaluator' => array(
1397
+              'code' => array(
1398
+                '0' => ':global',
1399
+              ),
1400
+            ),
1401
+          ),
1402
+        ),
1403
+        '#type' => 'condition',
1404
+      ),
1405
+    ),
1406
+    '#actions' => array(
1407
+      '0' => array(
1408
+        '#weight' => 0,
1409
+        '#type' => 'action',
1410
+        '#settings' => array(
1411
+          'from' => '',
1412
+          'subject' => 'Forum topic at [:global:site-name] edited by moderator/admin',
1413
+          'message' => "[node:type] topic '[node:title]' has been edited by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1414
+          '#eval input' => array(
1415
+            'token_rules_input_evaluator' => array(
1416
+              'subject' => array(
1417
+                '0' => ':global',
1418
+              ),
1419
+              'message' => array(
1202 1420
                 '0' => 'node',
1203
-                '1' => 'node_unchanged',
1421
+                '1' => 'user',
1422
+                '2' => ':global',
1204 1423
               ),
1205
-              '#eval input' => array(
1206
-                'token_rules_input_evaluator' => array(
1207
-                  'code' => array(
1208
-                    '0' => ':global',
1209
-                  ),
1210
-                ),
1424
+              'from' => array(
1425
+                '0' => ':global',
1211 1426
               ),
1212 1427
             ),
1213
-            '#name' => 'rules_condition_custom_php',
1214
-            '#info' => array(
1215
-              'label' => 'PHP code: node content is unchanged',
1216
-              'label callback' => FALSE,
1217
-              'module' => 'PHP',
1218
-              'eval input' => array(
1219
-                '0' => 'code',
1428
+          ),
1429
+        ),
1430
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
1431
+        '#info' => array(
1432
+          'label' => 'Notify moderators via email',
1433
+          'module' => 'BOINC core',
1434
+          'eval input' => array(
1435
+            '0' => 'subject',
1436
+            '1' => 'message',
1437
+            '2' => 'from',
1438
+          ),
1439
+        ),
1440
+      ),
1441
+    ),
1442
+    '#version' => 6003,
1443
+  ),
1444
+  'rules_forum_topic_is_moved_to_a_different_forum_by_moderator_or_admin' => array(
1445
+    '#type' => 'rule',
1446
+    '#set' => 'event_node_update',
1447
+    '#label' => 'Forum topic is moved to a different forum by moderator or admin',
1448
+    '#active' => 1,
1449
+    '#weight' => '0',
1450
+    '#categories' => array(
1451
+      '0' => 'boinc_standard',
1452
+      '1' => 'moderator notification',
1453
+    ),
1454
+    '#status' => 'default',
1455
+    '#conditions' => array(
1456
+      '0' => array(
1457
+        '#weight' => 0,
1458
+        '#type' => 'condition',
1459
+        '#settings' => array(
1460
+          'roles' => array(
1461
+            '0' => 3519698132,
1462
+            '1' => 1271379760,
1463
+          ),
1464
+          'operation' => 'OR',
1465
+          '#argument map' => array(
1466
+            'user' => 'user',
1467
+          ),
1468
+        ),
1469
+        '#name' => 'rules_condition_user_hasrole',
1470
+        '#info' => array(
1471
+          'label' => 'User has role(s): administrator or moderator',
1472
+          'label callback' => FALSE,
1473
+          'arguments' => array(
1474
+            'user' => array(
1475
+              'type' => 'user',
1476
+              'label' => 'User',
1477
+            ),
1478
+          ),
1479
+          'module' => 'User',
1480
+        ),
1481
+      ),
1482
+      '1' => array(
1483
+        '#weight' => 0,
1484
+        '0' => array(
1485
+          '#weight' => 0,
1486
+          '#info' => array(
1487
+            'label' => 'Updated content is Forum topic',
1488
+            'arguments' => array(
1489
+              'node' => array(
1490
+                'type' => 'node',
1491
+                'label' => 'Content',
1492
+              ),
1493
+            ),
1494
+            'module' => 'Node',
1495
+          ),
1496
+          '#name' => 'rules_condition_content_is_type',
1497
+          '#settings' => array(
1498
+            'type' => array(
1499
+              'forum' => 'forum',
1500
+            ),
1501
+            '#argument map' => array(
1502
+              'node' => 'node',
1503
+            ),
1504
+          ),
1505
+          '#type' => 'condition',
1506
+        ),
1507
+        '#type' => 'OR',
1508
+        '1' => array(
1509
+          '#type' => 'condition',
1510
+          '#settings' => array(
1511
+            'type' => array(
1512
+              'team_forum' => 'team_forum',
1513
+            ),
1514
+            '#argument map' => array(
1515
+              'node' => 'node',
1516
+            ),
1517
+          ),
1518
+          '#name' => 'rules_condition_content_is_type',
1519
+          '#info' => array(
1520
+            'label' => 'Updated content is Team forum topic',
1521
+            'arguments' => array(
1522
+              'node' => array(
1523
+                'type' => 'node',
1524
+                'label' => 'Content',
1220 1525
               ),
1221 1526
             ),
1222
-            '#weight' => 0,
1527
+            'module' => 'Node',
1223 1528
           ),
1224
-          '4' => array(
1225
-            '#type' => 'condition',
1226
-            '#settings' => array(
1227
-              'code' => 'return $node_unchanged->status == 0 && $node->status == 1;',
1228
-              'vars' => array(
1229
-                '0' => 'node',
1230
-                '1' => 'node_unchanged',
1231
-              ),
1232
-              '#eval input' => array(
1233
-                'token_rules_input_evaluator' => array(
1234
-                  'code' => array(
1235
-                    '0' => ':global',
1236
-                  ),
1237
-                ),
1238
-              ),
1239
-            ),
1240
-            '#name' => 'rules_condition_custom_php',
1241
-            '#info' => array(
1242
-              'label' => 'PHP code: node status changed to unhidden',
1243
-              'label callback' => FALSE,
1244
-              'module' => 'PHP',
1245
-              'eval input' => array(
1246
-                '0' => 'code',
1247
-              ),
1248
-            ),
1249
-            '#weight' => 0,
1250
-          ),
1251
-        ),
1252
-        '#actions' => array(
1253
-          '0' => array(
1254
-            '#weight' => 0,
1255
-            '#info' => array(
1256
-              'label' => 'Notify moderators via email',
1257
-              'module' => 'BOINC core',
1258
-              'eval input' => array(
1259
-                '0' => 'subject',
1260
-                '1' => 'message',
1261
-                '2' => 'from',
1262
-              ),
1263
-            ),
1264
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
1265
-            '#settings' => array(
1266
-              'from' => '',
1267
-              'subject' => 'Forum topic at [:global:site-name] unhidden by moderator/admin',
1268
-              'message' => "[node:type] topic '[node:title]' has been unhidden by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1269
-              '#eval input' => array(
1270
-                'token_rules_input_evaluator' => array(
1271
-                  'subject' => array(
1272
-                    '0' => ':global',
1273
-                  ),
1274
-                  'message' => array(
1275
-                    '0' => 'node',
1276
-                    '1' => 'user',
1277
-                    '2' => ':global',
1278
-                  ),
1279
-                  'from' => array(
1280
-                    '0' => ':global',
1281
-                  ),
1282
-                ),
1283
-              ),
1284
-            ),
1285
-            '#type' => 'action',
1286
-          ),
1287
-        ),
1288
-        '#version' => 6003,
1529
+          '#weight' => 0,
1530
+        ),
1289 1531
       ),
1290
-      'rules_forum_topic_is_edited_by_moderator_or_admin' => array(
1291
-        '#type' => 'rule',
1292
-        '#set' => 'event_node_update',
1293
-        '#label' => 'Forum topic is edited by moderator or admin',
1294
-        '#active' => 1,
1295
-        '#weight' => '0',
1296
-        '#categories' => array(
1297
-          '0' => 'boinc_standard',
1298
-          '1' => 'moderator notification',
1299
-        ),
1300
-        '#status' => 'default',
1301
-        '#conditions' => array(
1302
-          '0' => array(
1303
-            '#weight' => 0,
1304
-            '#type' => 'condition',
1305
-            '#settings' => array(
1306
-              'roles' => array(
1307
-                '0' => 3519698132,
1308
-                '1' => 1271379760,
1309
-              ),
1310
-              'operation' => 'OR',
1311
-              '#argument map' => array(
1312
-                'user' => 'user',
1313
-              ),
1314
-            ),
1315
-            '#name' => 'rules_condition_user_hasrole',
1316
-            '#info' => array(
1317
-              'label' => 'User has role(s): administrator or moderator',
1318
-              'label callback' => FALSE,
1319
-              'arguments' => array(
1320
-                'user' => array(
1321
-                  'type' => 'user',
1322
-                  'label' => 'User',
1323
-                ),
1324
-              ),
1325
-              'module' => 'User',
1326
-            ),
1327
-          ),
1328
-          '1' => array(
1329
-            '#weight' => 0,
1330
-            '0' => array(
1331
-              '#weight' => 0,
1332
-              '#info' => array(
1333
-                'label' => 'Updated content is Forum topic',
1334
-                'arguments' => array(
1335
-                  'node' => array(
1336
-                    'type' => 'node',
1337
-                    'label' => 'Content',
1338
-                  ),
1339
-                ),
1340
-                'module' => 'Node',
1341
-              ),
1342
-              '#name' => 'rules_condition_content_is_type',
1343
-              '#settings' => array(
1344
-                'type' => array(
1345
-                  'forum' => 'forum',
1346
-                ),
1347
-                '#argument map' => array(
1348
-                  'node' => 'node',
1349
-                ),
1350
-              ),
1351
-              '#type' => 'condition',
1352
-            ),
1353
-            '#type' => 'OR',
1354
-            '1' => array(
1355
-              '#type' => 'condition',
1356
-              '#settings' => array(
1357
-                'type' => array(
1358
-                  'team_forum' => 'team_forum',
1359
-                ),
1360
-                '#argument map' => array(
1361
-                  'node' => 'node',
1362
-                ),
1363
-              ),
1364
-              '#name' => 'rules_condition_content_is_type',
1365
-              '#info' => array(
1366
-                'label' => 'Updated content is Team forum topic',
1367
-                'arguments' => array(
1368
-                  'node' => array(
1369
-                    'type' => 'node',
1370
-                    'label' => 'Content',
1371
-                  ),
1372
-                ),
1373
-                'module' => 'Node',
1374
-              ),
1375
-              '#weight' => 0,
1376
-            ),
1377
-          ),
1378
-          '2' => array(
1379
-            '#weight' => 0,
1380
-            '#info' => array(
1381
-              'label' => 'PHP code: content changed',
1382
-              'label callback' => FALSE,
1383
-              'module' => 'PHP',
1384
-              'eval input' => array(
1385
-                '0' => 'code',
1386
-              ),
1387
-            ),
1388
-            '#name' => 'rules_condition_custom_php',
1389
-            '#settings' => array(
1390
-              'code' => 'return ($node->body != $node_unchanged->body);',
1391
-              'vars' => array(
1392
-                '0' => 'node',
1393
-                '1' => 'node_unchanged',
1394
-              ),
1395
-              '#eval input' => array(
1396
-                'token_rules_input_evaluator' => array(
1397
-                  'code' => array(
1398
-                    '0' => ':global',
1399
-                  ),
1400
-                ),
1401
-              ),
1402
-            ),
1403
-            '#type' => 'condition',
1404
-          ),
1405
-        ),
1406
-        '#actions' => array(
1407
-          '0' => array(
1408
-            '#weight' => 0,
1409
-            '#type' => 'action',
1410
-            '#settings' => array(
1411
-              'from' => '',
1412
-              'subject' => 'Forum topic at [:global:site-name] edited by moderator/admin',
1413
-              'message' => "[node:type] topic '[node:title]' has been edited by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1414
-              '#eval input' => array(
1415
-                'token_rules_input_evaluator' => array(
1416
-                  'subject' => array(
1417
-                    '0' => ':global',
1418
-                  ),
1419
-                  'message' => array(
1420
-                    '0' => 'node',
1421
-                    '1' => 'user',
1422
-                    '2' => ':global',
1423
-                  ),
1424
-                  'from' => array(
1425
-                    '0' => ':global',
1426
-                  ),
1427
-                ),
1428
-              ),
1429
-            ),
1430
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
1431
-            '#info' => array(
1432
-              'label' => 'Notify moderators via email',
1433
-              'module' => 'BOINC core',
1434
-              'eval input' => array(
1435
-                '0' => 'subject',
1436
-                '1' => 'message',
1437
-                '2' => 'from',
1438
-              ),
1439
-            ),
1440
-          ),
1441
-        ),
1442
-        '#version' => 6003,
1532
+      '2' => array(
1533
+        '#weight' => 0,
1534
+        '#info' => array(
1535
+          'label' => 'PHP code: node moved to new forum parent',
1536
+          'label callback' => FALSE,
1537
+          'module' => 'PHP',
1538
+          'eval input' => array(
1539
+            '0' => 'code',
1540
+          ),
1541
+        ),
1542
+        '#name' => 'rules_condition_custom_php',
1543
+        '#settings' => array(
1544
+          'code' => 'return ($node->tid != $node_unchanged->tid);',
1545
+          'vars' => array(
1546
+            '0' => 'node',
1547
+            '1' => 'node_unchanged',
1548
+          ),
1549
+          '#eval input' => array(
1550
+            'token_rules_input_evaluator' => array(
1551
+              'code' => array(
1552
+                '0' => ':global',
1553
+              ),
1554
+            ),
1555
+          ),
1556
+        ),
1557
+        '#type' => 'condition',
1443 1558
       ),
1444
-      'rules_forum_topic_is_moved_to_a_different_forum_by_moderator_or_admin' => array(
1445
-        '#type' => 'rule',
1446
-        '#set' => 'event_node_update',
1447
-        '#label' => 'Forum topic is moved to a different forum by moderator or admin',
1448
-        '#active' => 1,
1449
-        '#weight' => '0',
1450
-        '#categories' => array(
1451
-          '0' => 'boinc_standard',
1452
-          '1' => 'moderator notification',
1453
-        ),
1454
-        '#status' => 'default',
1455
-        '#conditions' => array(
1456
-          '0' => array(
1457
-            '#weight' => 0,
1458
-            '#type' => 'condition',
1459
-            '#settings' => array(
1460
-              'roles' => array(
1461
-                '0' => 3519698132,
1462
-                '1' => 1271379760,
1463
-              ),
1464
-              'operation' => 'OR',
1465
-              '#argument map' => array(
1466
-                'user' => 'user',
1467
-              ),
1468
-            ),
1469
-            '#name' => 'rules_condition_user_hasrole',
1470
-            '#info' => array(
1471
-              'label' => 'User has role(s): administrator or moderator',
1472
-              'label callback' => FALSE,
1473
-              'arguments' => array(
1474
-                'user' => array(
1475
-                  'type' => 'user',
1476
-                  'label' => 'User',
1477
-                ),
1478
-              ),
1479
-              'module' => 'User',
1480
-            ),
1481
-          ),
1482
-          '1' => array(
1483
-            '#weight' => 0,
1484
-            '0' => array(
1485
-              '#weight' => 0,
1486
-              '#info' => array(
1487
-                'label' => 'Updated content is Forum topic',
1488
-                'arguments' => array(
1489
-                  'node' => array(
1490
-                    'type' => 'node',
1491
-                    'label' => 'Content',
1492
-                  ),
1493
-                ),
1494
-                'module' => 'Node',
1495
-              ),
1496
-              '#name' => 'rules_condition_content_is_type',
1497
-              '#settings' => array(
1498
-                'type' => array(
1499
-                  'forum' => 'forum',
1500
-                ),
1501
-                '#argument map' => array(
1502
-                  'node' => 'node',
1503
-                ),
1504
-              ),
1505
-              '#type' => 'condition',
1506
-            ),
1507
-            '#type' => 'OR',
1508
-            '1' => array(
1509
-              '#type' => 'condition',
1510
-              '#settings' => array(
1511
-                'type' => array(
1512
-                  'team_forum' => 'team_forum',
1513
-                ),
1514
-                '#argument map' => array(
1515
-                  'node' => 'node',
1516
-                ),
1517
-              ),
1518
-              '#name' => 'rules_condition_content_is_type',
1519
-              '#info' => array(
1520
-                'label' => 'Updated content is Team forum topic',
1521
-                'arguments' => array(
1522
-                  'node' => array(
1523
-                    'type' => 'node',
1524
-                    'label' => 'Content',
1525
-                  ),
1526
-                ),
1527
-                'module' => 'Node',
1528
-              ),
1529
-              '#weight' => 0,
1530
-            ),
1531
-          ),
1532
-          '2' => array(
1533
-            '#weight' => 0,
1534
-            '#info' => array(
1535
-              'label' => 'PHP code: node moved to new forum parent',
1536
-              'label callback' => FALSE,
1537
-              'module' => 'PHP',
1538
-              'eval input' => array(
1539
-                '0' => 'code',
1540
-              ),
1541
-            ),
1542
-            '#name' => 'rules_condition_custom_php',
1543
-            '#settings' => array(
1544
-              'code' => 'return ($node->tid != $node_unchanged->tid);',
1545
-              'vars' => array(
1559
+    ),
1560
+    '#actions' => array(
1561
+      '0' => array(
1562
+        '#weight' => 0,
1563
+        '#type' => 'action',
1564
+        '#settings' => array(
1565
+          'from' => '',
1566
+          'subject' => 'Forum topic at [:global:site-name] moved by moderator/admin',
1567
+          'message' => "[node:type] topic '[node:title]' has been moved by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1568
+          '#eval input' => array(
1569
+            'token_rules_input_evaluator' => array(
1570
+              'subject' => array(
1571
+                '0' => ':global',
1572
+              ),
1573
+              'message' => array(
1546 1574
                 '0' => 'node',
1547
-                '1' => 'node_unchanged',
1548
-              ),
1549
-              '#eval input' => array(
1550
-                'token_rules_input_evaluator' => array(
1551
-                  'code' => array(
1552
-                    '0' => ':global',
1553
-                  ),
1554
-                ),
1555
-              ),
1556
-            ),
1557
-            '#type' => 'condition',
1558
-          ),
1559
-        ),
1560
-        '#actions' => array(
1561
-          '0' => array(
1562
-            '#weight' => 0,
1563
-            '#type' => 'action',
1564
-            '#settings' => array(
1565
-              'from' => '',
1566
-              'subject' => 'Forum topic at [:global:site-name] moved by moderator/admin',
1567
-              'message' => "[node:type] topic '[node:title]' has been moved by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1568
-              '#eval input' => array(
1569
-                'token_rules_input_evaluator' => array(
1570
-                  'subject' => array(
1571
-                    '0' => ':global',
1572
-                  ),
1573
-                  'message' => array(
1574
-                    '0' => 'node',
1575
-                    '1' => 'user',
1576
-                    '2' => ':global',
1577
-                  ),
1578
-                  'from' => array(
1579
-                    '0' => ':global',
1580
-                  ),
1581
-                ),
1582
-              ),
1583
-            ),
1584
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
1585
-            '#info' => array(
1586
-              'label' => 'Notify moderators via email',
1587
-              'module' => 'BOINC core',
1588
-              'eval input' => array(
1589
-                '0' => 'subject',
1590
-                '1' => 'message',
1591
-                '2' => 'from',
1592
-              ),
1593
-            ),
1594
-          ),
1595
-        ),
1596
-        '#version' => 6003,
1575
+                '1' => 'user',
1576
+                '2' => ':global',
1577
+              ),
1578
+              'from' => array(
1579
+                '0' => ':global',
1580
+              ),
1581
+            ),
1582
+          ),
1583
+        ),
1584
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
1585
+        '#info' => array(
1586
+          'label' => 'Notify moderators via email',
1587
+          'module' => 'BOINC core',
1588
+          'eval input' => array(
1589
+            '0' => 'subject',
1590
+            '1' => 'message',
1591
+            '2' => 'from',
1592
+          ),
1593
+        ),
1594
+      ),
1595
+    ),
1596
+    '#version' => 6003,
1597
+  ),
1598
+  'rules_forum_topic_nenamed_title_by_moderator_or_admin' => array(
1599
+    '#type' => 'rule',
1600
+    '#set' => 'event_node_update',
1601
+    '#label' => 'Forum topic renamed title by moderator or admin',
1602
+    '#active' => 1,
1603
+    '#weight' => '0',
1604
+    '#categories' => array(
1605
+      '0' => 'boinc_standard',
1606
+      '1' => 'moderator notification',
1607
+    ),
1608
+    '#status' => 'default',
1609
+    '#conditions' => array(
1610
+      '0' => array(
1611
+        '#weight' => 0,
1612
+        '#type' => 'condition',
1613
+        '#settings' => array(
1614
+          'roles' => array(
1615
+            '0' => 3519698132,
1616
+            '1' => 1271379760,
1617
+          ),
1618
+          'operation' => 'OR',
1619
+          '#argument map' => array(
1620
+            'user' => 'user',
1621
+          ),
1622
+        ),
1623
+        '#name' => 'rules_condition_user_hasrole',
1624
+        '#info' => array(
1625
+          'label' => 'User has role(s): administrator or moderator',
1626
+          'label callback' => FALSE,
1627
+          'arguments' => array(
1628
+            'user' => array(
1629
+              'type' => 'user',
1630
+              'label' => 'User',
1631
+            ),
1632
+          ),
1633
+          'module' => 'User',
1634
+        ),
1635
+      ),
1636
+      '1' => array(
1637
+        '#weight' => 0,
1638
+        '0' => array(
1639
+          '#weight' => 0,
1640
+          '#info' => array(
1641
+            'label' => 'Updated content is Forum topic',
1642
+            'arguments' => array(
1643
+              'node' => array(
1644
+                'type' => 'node',
1645
+                'label' => 'Content',
1646
+              ),
1647
+            ),
1648
+            'module' => 'Node',
1649
+          ),
1650
+          '#name' => 'rules_condition_content_is_type',
1651
+          '#settings' => array(
1652
+            'type' => array(
1653
+              'forum' => 'forum',
1654
+            ),
1655
+            '#argument map' => array(
1656
+              'node' => 'node',
1657
+            ),
1658
+          ),
1659
+          '#type' => 'condition',
1660
+        ),
1661
+        '#type' => 'OR',
1662
+        '1' => array(
1663
+          '#type' => 'condition',
1664
+          '#settings' => array(
1665
+            'type' => array(
1666
+              'team_forum' => 'team_forum',
1667
+            ),
1668
+            '#argument map' => array(
1669
+              'node' => 'node',
1670
+            ),
1671
+          ),
1672
+          '#name' => 'rules_condition_content_is_type',
1673
+          '#info' => array(
1674
+            'label' => 'Updated content is Team forum topic',
1675
+            'arguments' => array(
1676
+              'node' => array(
1677
+                'type' => 'node',
1678
+                'label' => 'Content',
1679
+              ),
1680
+            ),
1681
+            'module' => 'Node',
1682
+          ),
1683
+          '#weight' => 0,
1684
+        ),
1685
+      ),
1686
+      '2' => array(
1687
+        '#weight' => 0,
1688
+        '#info' => array(
1689
+          'label' => 'PHP code: title changed',
1690
+          'label callback' => FALSE,
1691
+          'module' => 'PHP',
1692
+          'eval input' => array(
1693
+            '0' => 'code',
1694
+          ),
1695
+        ),
1696
+        '#name' => 'rules_condition_custom_php',
1697
+        '#settings' => array(
1698
+          'code' => 'return ($node->title != $node_unchanged->title);',
1699
+          'vars' => array(
1700
+            '0' => 'node',
1701
+            '1' => 'node_unchanged',
1702
+          ),
1703
+          '#eval input' => array(
1704
+            'token_rules_input_evaluator' => array(
1705
+              'code' => array(
1706
+                '0' => ':global',
1707
+              ),
1708
+            ),
1709
+          ),
1710
+        ),
1711
+        '#type' => 'condition',
1597 1712
       ),
1598
-      'rules_forum_topic_nenamed_title_by_moderator_or_admin' => array(
1599
-        '#type' => 'rule',
1600
-        '#set' => 'event_node_update',
1601
-        '#label' => 'Forum topic renamed title by moderator or admin',
1602
-        '#active' => 1,
1603
-        '#weight' => '0',
1604
-        '#categories' => array(
1605
-          '0' => 'boinc_standard',
1606
-          '1' => 'moderator notification',
1607
-        ),
1608
-        '#status' => 'default',
1609
-        '#conditions' => array(
1610
-          '0' => array(
1611
-            '#weight' => 0,
1612
-            '#type' => 'condition',
1613
-            '#settings' => array(
1614
-              'roles' => array(
1615
-                '0' => 3519698132,
1616
-                '1' => 1271379760,
1617
-              ),
1618
-              'operation' => 'OR',
1619
-              '#argument map' => array(
1620
-                'user' => 'user',
1621
-              ),
1622
-            ),
1623
-            '#name' => 'rules_condition_user_hasrole',
1624
-            '#info' => array(
1625
-              'label' => 'User has role(s): administrator or moderator',
1626
-              'label callback' => FALSE,
1627
-              'arguments' => array(
1628
-                'user' => array(
1629
-                  'type' => 'user',
1630
-                  'label' => 'User',
1631
-                ),
1632
-              ),
1633
-              'module' => 'User',
1634
-            ),
1635
-          ),
1636
-          '1' => array(
1637
-            '#weight' => 0,
1638
-            '0' => array(
1639
-              '#weight' => 0,
1640
-              '#info' => array(
1641
-                'label' => 'Updated content is Forum topic',
1642
-                'arguments' => array(
1643
-                  'node' => array(
1644
-                    'type' => 'node',
1645
-                    'label' => 'Content',
1646
-                  ),
1647
-                ),
1648
-                'module' => 'Node',
1649
-              ),
1650
-              '#name' => 'rules_condition_content_is_type',
1651
-              '#settings' => array(
1652
-                'type' => array(
1653
-                  'forum' => 'forum',
1654
-                ),
1655
-                '#argument map' => array(
1656
-                  'node' => 'node',
1657
-                ),
1658
-              ),
1659
-              '#type' => 'condition',
1660
-            ),
1661
-            '#type' => 'OR',
1662
-            '1' => array(
1663
-              '#type' => 'condition',
1664
-              '#settings' => array(
1665
-                'type' => array(
1666
-                  'team_forum' => 'team_forum',
1667
-                ),
1668
-                '#argument map' => array(
1669
-                  'node' => 'node',
1670
-                ),
1671
-              ),
1672
-              '#name' => 'rules_condition_content_is_type',
1673
-              '#info' => array(
1674
-                'label' => 'Updated content is Team forum topic',
1675
-                'arguments' => array(
1676
-                  'node' => array(
1677
-                    'type' => 'node',
1678
-                    'label' => 'Content',
1679
-                  ),
1680
-                ),
1681
-                'module' => 'Node',
1682
-              ),
1683
-              '#weight' => 0,
1684
-            ),
1685
-          ),
1686
-          '2' => array(
1687
-            '#weight' => 0,
1688
-            '#info' => array(
1689
-              'label' => 'PHP code: title changed',
1690
-              'label callback' => FALSE,
1691
-              'module' => 'PHP',
1692
-              'eval input' => array(
1693
-                '0' => 'code',
1694
-              ),
1695
-            ),
1696
-            '#name' => 'rules_condition_custom_php',
1697
-            '#settings' => array(
1698
-              'code' => 'return ($node->title != $node_unchanged->title);',
1699
-              'vars' => array(
1713
+    ),
1714
+    '#actions' => array(
1715
+      '0' => array(
1716
+        '#weight' => 0,
1717
+        '#type' => 'action',
1718
+        '#settings' => array(
1719
+          'from' => '',
1720
+          'subject' => 'Forum topic at [:global:site-name] renamed by moderator/admin',
1721
+          'message' => "[node:type] topic '[node:title]' has its title renamed by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1722
+          '#eval input' => array(
1723
+            'token_rules_input_evaluator' => array(
1724
+              'subject' => array(
1725
+                '0' => ':global',
1726
+              ),
1727
+              'message' => array(
1700 1728
                 '0' => 'node',
1701
-                '1' => 'node_unchanged',
1702
-              ),
1703
-              '#eval input' => array(
1704
-                'token_rules_input_evaluator' => array(
1705
-                  'code' => array(
1706
-                    '0' => ':global',
1707
-                  ),
1708
-                ),
1709
-              ),
1710
-            ),
1711
-            '#type' => 'condition',
1712
-          ),
1713
-        ),
1714
-        '#actions' => array(
1715
-          '0' => array(
1716
-            '#weight' => 0,
1717
-            '#type' => 'action',
1718
-            '#settings' => array(
1719
-              'from' => '',
1720
-              'subject' => 'Forum topic at [:global:site-name] renamed by moderator/admin',
1721
-              'message' => "[node:type] topic '[node:title]' has its title renamed by moderator/admin [user:display-name].\r\n\r\nLink: [node:node-url]",
1722
-              '#eval input' => array(
1723
-                'token_rules_input_evaluator' => array(
1724
-                  'subject' => array(
1725
-                    '0' => ':global',
1726
-                  ),
1727
-                  'message' => array(
1728
-                    '0' => 'node',
1729
-                    '1' => 'user',
1730
-                    '2' => ':global',
1731
-                  ),
1732
-                  'from' => array(
1733
-                    '0' => ':global',
1734
-                  ),
1735
-                ),
1736
-              ),
1737
-            ),
1738
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
1739
-            '#info' => array(
1740
-              'label' => 'Notify moderators via email',
1741
-              'module' => 'BOINC core',
1742
-              'eval input' => array(
1743
-                '0' => 'subject',
1744
-                '1' => 'message',
1745
-                '2' => 'from',
1746
-              ),
1747
-            ),
1748
-          ),
1749
-        ),
1750
-        '#version' => 6003,
1729
+                '1' => 'user',
1730
+                '2' => ':global',
1731
+              ),
1732
+              'from' => array(
1733
+                '0' => ':global',
1734
+              ),
1735
+            ),
1736
+          ),
1737
+        ),
1738
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
1739
+        '#info' => array(
1740
+          'label' => 'Notify moderators via email',
1741
+          'module' => 'BOINC core',
1742
+          'eval input' => array(
1743
+            '0' => 'subject',
1744
+            '1' => 'message',
1745
+            '2' => 'from',
1746
+          ),
1747
+        ),
1751 1748
       ),
1752
-      'rules_comment_converted_to_new_forum_topic_by_moderator_or_admin' => array(
1753
-        '#type' => 'rule',
1754
-        '#set' => 'event_boinccore_comment_convert',
1755
-        '#label' => 'Comment is converted to new forum topic by moderator or admin',
1756
-        '#active' => 1,
1757
-        '#weight' => '0',
1758
-        '#categories' => array(
1759
-          '0' => 'boinc_standard',
1760
-          '1' => 'moderator notification',
1761
-        ),
1762
-        '#status' => 'default',
1763
-        '#conditions' => array(),
1764
-        '#actions' => array(
1765
-          '0' => array(
1766
-            '#info' => array(
1767
-              'label' => 'Notify moderators via email',
1768
-              'module' => 'BOINC core',
1769
-              'eval input' => array(
1770
-                '0' => 'subject',
1771
-                '1' => 'message',
1772
-                '2' => 'from',
1773
-              ),
1774
-            ),
1775
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
1776
-            '#settings' => array(
1777
-              'from' => '',
1778
-              'subject' => 'Comment at [:global:site-name] converted to new forum topic',
1779
-              'message' => 'Comment has been converted to new forum topic by moderator/admin [user:display-name].
1749
+    ),
1750
+    '#version' => 6003,
1751
+  ),
1752
+  'rules_comment_converted_to_new_forum_topic_by_moderator_or_admin' => array(
1753
+    '#type' => 'rule',
1754
+    '#set' => 'event_boinccore_comment_convert',
1755
+    '#label' => 'Comment is converted to new forum topic by moderator or admin',
1756
+    '#active' => 1,
1757
+    '#weight' => '0',
1758
+    '#categories' => array(
1759
+      '0' => 'boinc_standard',
1760
+      '1' => 'moderator notification',
1761
+    ),
1762
+    '#status' => 'default',
1763
+    '#conditions' => array(),
1764
+    '#actions' => array(
1765
+      '0' => array(
1766
+        '#info' => array(
1767
+          'label' => 'Notify moderators via email',
1768
+          'module' => 'BOINC core',
1769
+          'eval input' => array(
1770
+            '0' => 'subject',
1771
+            '1' => 'message',
1772
+            '2' => 'from',
1773
+          ),
1774
+        ),
1775
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
1776
+        '#settings' => array(
1777
+          'from' => '',
1778
+          'subject' => 'Comment at [:global:site-name] converted to new forum topic',
1779
+          'message' => 'Comment has been converted to new forum topic by moderator/admin [user:display-name].
1780 1780
 ',
1781
-              '#eval input' => array(
1782
-                'token_rules_input_evaluator' => array(
1783
-                  'subject' => array(
1784
-                    '0' => ':global',
1785
-                  ),
1786
-                  'message' => array(
1787
-                    '0' => 'user',
1788
-                    '1' => ':global',
1789
-                  ),
1790
-                  'from' => array(
1791
-                    '0' => ':global',
1792
-                  ),
1793
-                ),
1794
-              ),
1795
-            ),
1796
-            '#type' => 'action',
1797
-            '#weight' => 0,
1798
-          ),
1799
-        ),
1800
-        '#version' => 6003,
1781
+          '#eval input' => array(
1782
+            'token_rules_input_evaluator' => array(
1783
+              'subject' => array(
1784
+                '0' => ':global',
1785
+              ),
1786
+              'message' => array(
1787
+                '0' => 'user',
1788
+                '1' => ':global',
1789
+              ),
1790
+              'from' => array(
1791
+                '0' => ':global',
1792
+              ),
1793
+            ),
1794
+          ),
1795
+        ),
1796
+        '#type' => 'action',
1797
+        '#weight' => 0,
1801 1798
       ),
1802
-      'rules_comment_edited_by_moderator_or_admin' => array(
1803
-        '#type' => 'rule',
1804
-        '#set' => 'event_comment_update',
1805
-        '#label' => 'Comment is edited by moderator or admin',
1806
-        '#active' => 1,
1807
-        '#weight' => '0',
1808
-        '#categories' => array(
1809
-          '0' => 'boinc_standard',
1810
-          '1' => 'moderator notification',
1811
-        ),
1812
-        '#status' => 'default',
1813
-        '#conditions' => array(
1814
-          '0' => array(
1815
-            '#negate' => 1,
1816
-            '#weight' => 0,
1817
-            '#info' => array(
1818
-              'label' => 'Compare two users: acting user (who edited the comment) is NOT the comment author',
1819
-              'label callback' => FALSE,
1820
-              'arguments' => array(
1821
-                'user1' => array(
1822
-                  'type' => 'user',
1823
-                  'label' => 'User account 1',
1824
-                ),
1825
-                'user2' => array(
1826
-                  'type' => 'user',
1827
-                  'label' => 'User account 2',
1828
-                ),
1829
-              ),
1830
-              'module' => 'User',
1831
-            ),
1832
-            '#name' => 'rules_condition_user_comparison',
1833
-            '#settings' => array(
1834
-              '#argument map' => array(
1835
-                'user1' => 'user',
1836
-                'user2' => 'comment_author',
1837
-              ),
1838
-            ),
1839
-            '#type' => 'condition',
1840
-          ),
1841
-        ),
1842
-        '#actions' => array(
1843
-          '0' => array(
1844
-            '#weight' => 0,
1845
-            '#type' => 'action',
1846
-            '#settings' => array(
1847
-              'from' => '',
1848
-              'subject' => 'Comment edited at [:global:site-name] by moderator or admin',
1849
-              'message' => "Comment has been edited by moderator/admin [user:display-name].\r\n\r\nLink: [:global:site-url]/goto/comment/[comment:comment-cid]",
1850
-              '#eval input' => array(
1851
-                'token_rules_input_evaluator' => array(
1852
-                  'subject' => array(
1853
-                    '0' => ':global',
1854
-                  ),
1855
-                  'message' => array(
1856
-                    '0' => 'comment',
1857
-                    '1' => 'user',
1858
-                    '2' => ':global',
1859
-                  ),
1860
-                  'from' => array(
1861
-                    '0' => ':global',
1862
-                  ),
1863
-                ),
1864
-              ),
1865
-            ),
1866
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
1867
-            '#info' => array(
1868
-              'label' => 'Notify moderators via email',
1869
-              'module' => 'BOINC core',
1870
-              'eval input' => array(
1871
-                '0' => 'subject',
1872
-                '1' => 'message',
1873
-                '2' => 'from',
1874
-              ),
1875
-            ),
1876
-          ),
1877
-        ),
1878
-        '#version' => 6003,
1799
+    ),
1800
+    '#version' => 6003,
1801
+  ),
1802
+  'rules_comment_edited_by_moderator_or_admin' => array(
1803
+    '#type' => 'rule',
1804
+    '#set' => 'event_comment_update',
1805
+    '#label' => 'Comment is edited by moderator or admin',
1806
+    '#active' => 1,
1807
+    '#weight' => '0',
1808
+    '#categories' => array(
1809
+      '0' => 'boinc_standard',
1810
+      '1' => 'moderator notification',
1811
+    ),
1812
+    '#status' => 'default',
1813
+    '#conditions' => array(
1814
+      '0' => array(
1815
+        '#negate' => 1,
1816
+        '#weight' => 0,
1817
+        '#info' => array(
1818
+          'label' => 'Compare two users: acting user (who edited the comment) is NOT the comment author',
1819
+          'label callback' => FALSE,
1820
+          'arguments' => array(
1821
+            'user1' => array(
1822
+              'type' => 'user',
1823
+              'label' => 'User account 1',
1824
+            ),
1825
+            'user2' => array(
1826
+              'type' => 'user',
1827
+              'label' => 'User account 2',
1828
+            ),
1829
+          ),
1830
+          'module' => 'User',
1831
+        ),
1832
+        '#name' => 'rules_condition_user_comparison',
1833
+        '#settings' => array(
1834
+          '#argument map' => array(
1835
+            'user1' => 'user',
1836
+            'user2' => 'comment_author',
1837
+          ),
1838
+        ),
1839
+        '#type' => 'condition',
1879 1840
       ),
1880
-      'rules_comment_is_unpublished_hidden_by_moderator_or_admin' => array(
1881
-        '#type' => 'rule',
1882
-        '#set' => 'event_comment_unpublish',
1883
-        '#label' => 'Comment is hidden by moderator or admin',
1884
-        '#active' => 1,
1885
-        '#weight' => '0',
1886
-        '#categories' => array(
1887
-          '0' => 'boinc_standard',
1888
-          '1' => 'moderator notification',
1889
-        ),
1890
-        '#status' => 'default',
1891
-        '#conditions' => array(
1892
-          '0' => array(
1893
-            '#weight' => 0,
1894
-            '#negate' => 1,
1895
-            '#info' => array(
1896
-              'label' => 'Compare two users: acting user (who hid the comment) is NOT the comment author',
1897
-              'label callback' => FALSE,
1898
-              'arguments' => array(
1899
-                'user1' => array(
1900
-                  'type' => 'user',
1901
-                  'label' => 'User account 1',
1902
-                ),
1903
-                'user2' => array(
1904
-                  'type' => 'user',
1905
-                  'label' => 'User account 2',
1906
-                ),
1907
-              ),
1908
-              'module' => 'User',
1909
-            ),
1910
-            '#name' => 'rules_condition_user_comparison',
1911
-            '#type' => 'condition',
1912
-            '#settings' => array(
1913
-              '#argument map' => array(
1914
-                'user1' => 'user',
1915
-                'user2' => 'comment_author',
1916
-              ),
1917
-            ),
1918
-          ),
1919
-        ),
1920
-        '#actions' => array(
1921
-          '0' => array(
1922
-            '#weight' => 0,
1923
-            '#type' => 'action',
1924
-            '#settings' => array(
1925
-              'from' => '',
1926
-              'subject' => 'Comment at [:global:site-name] hidden by moderator or admin',
1927
-              'message' => "Comment has been hidden by moderator/admin [user:display-name].\r\n\r\nLink: [:global:site-url]/goto/comment/[comment:comment-cid]",
1928
-              '#eval input' => array(
1929
-                'token_rules_input_evaluator' => array(
1930
-                  'subject' => array(
1931
-                    '0' => ':global',
1932
-                  ),
1933
-                  'message' => array(
1934
-                    '0' => 'comment',
1935
-                    '1' => 'user',
1936
-                    '2' => ':global',
1937
-                  ),
1938
-                  'from' => array(
1939
-                    '0' => ':global',
1940
-                  ),
1941
-                ),
1942
-              ),
1943
-            ),
1944
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
1945
-            '#info' => array(
1946
-              'label' => 'Notify moderators via email',
1947
-              'module' => 'BOINC core',
1948
-              'eval input' => array(
1949
-                '0' => 'subject',
1950
-                '1' => 'message',
1951
-                '2' => 'from',
1952
-              ),
1953
-            ),
1954
-          ),
1955
-        ),
1956
-        '#version' => 6003,
1841
+    ),
1842
+    '#actions' => array(
1843
+      '0' => array(
1844
+        '#weight' => 0,
1845
+        '#type' => 'action',
1846
+        '#settings' => array(
1847
+          'from' => '',
1848
+          'subject' => 'Comment edited at [:global:site-name] by moderator or admin',
1849
+          'message' => "Comment has been edited by moderator/admin [user:display-name].\r\n\r\nLink: [:global:site-url]/goto/comment/[comment:comment-cid]",
1850
+          '#eval input' => array(
1851
+            'token_rules_input_evaluator' => array(
1852
+              'subject' => array(
1853
+                '0' => ':global',
1854
+              ),
1855
+              'message' => array(
1856
+                '0' => 'comment',
1857
+                '1' => 'user',
1858
+                '2' => ':global',
1859
+              ),
1860
+              'from' => array(
1861
+                '0' => ':global',
1862
+              ),
1863
+            ),
1864
+          ),
1865
+        ),
1866
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
1867
+        '#info' => array(
1868
+          'label' => 'Notify moderators via email',
1869
+          'module' => 'BOINC core',
1870
+          'eval input' => array(
1871
+            '0' => 'subject',
1872
+            '1' => 'message',
1873
+            '2' => 'from',
1874
+          ),
1875
+        ),
1957 1876
       ),
1958
-      'rules_comment_is_published_unhidden_by_moderator_or_admin' => array(
1959
-        '#type' => 'rule',
1960
-        '#set' => 'event_boinccore_comment_unhidden',
1961
-        '#label' => 'Comment is unhidden by moderator or admin',
1962
-        '#active' => 1,
1963
-        '#weight' => '0',
1964
-        '#categories' => array(
1965
-          '0' => 'boinc_standard',
1966
-          '1' => 'moderator notification',
1967
-        ),
1968
-        '#status' => 'default',
1969
-        '#conditions' => array(
1970
-          '0' => array(
1971
-            '#type' => 'condition',
1972
-            '#settings' => array(
1973
-              '#argument map' => array(
1974
-                'user1' => 'user',
1975
-                'user2' => 'comment_author',
1976
-              ),
1977
-            ),
1978
-            '#name' => 'rules_condition_user_comparison',
1979
-            '#info' => array(
1980
-              'label' => 'Compare two users: acting user (who unhid the comment) is NOT the comment author',
1981
-              'label callback' => FALSE,
1982
-              'arguments' => array(
1983
-                'user1' => array(
1984
-                  'type' => 'user',
1985
-                  'label' => 'User account 1',
1986
-                ),
1987
-                'user2' => array(
1988
-                  'type' => 'user',
1989
-                  'label' => 'User account 2',
1990
-                ),
1991
-              ),
1992
-              'module' => 'User',
1993
-            ),
1994
-            '#negate' => 1,
1995
-            '#weight' => 0,
1996
-          ),
1997
-        ),
1998
-        '#actions' => array(
1999
-          '0' => array(
2000
-            '#weight' => 0,
2001
-            '#info' => array(
2002
-              'label' => 'Notify moderators via email',
2003
-              'module' => 'BOINC core',
2004
-              'eval input' => array(
2005
-                '0' => 'subject',
2006
-                '1' => 'message',
2007
-                '2' => 'from',
2008
-              ),
2009
-            ),
2010
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
2011
-            '#settings' => array(
2012
-              'from' => '',
2013
-              'subject' => 'Comment at [:global:site-name] unhidden by moderator or admin',
2014
-              'message' => "Comment has been unhidden by moderator/admin [user:display-name].\r\n\r\nLink: [:global:site-url]/goto/comment/[comment:comment-cid]",
2015
-              '#eval input' => array(
2016
-                'token_rules_input_evaluator' => array(
2017
-                  'subject' => array(
2018
-                    '0' => ':global',
2019
-                  ),
2020
-                  'message' => array(
2021
-                    '0' => 'comment',
2022
-                    '1' => 'user',
2023
-                    '2' => ':global',
2024
-                  ),
2025
-                  'from' => array(
2026
-                    '0' => ':global',
2027
-                  ),
2028
-                ),
2029
-              ),
2030
-            ),
2031
-            '#type' => 'action',
2032
-          ),
2033
-        ),
2034
-        '#version' => 6003,
1877
+    ),
1878
+    '#version' => 6003,
1879
+  ),
1880
+  'rules_comment_is_unpublished_hidden_by_moderator_or_admin' => array(
1881
+    '#type' => 'rule',
1882
+    '#set' => 'event_comment_unpublish',
1883
+    '#label' => 'Comment is hidden by moderator or admin',
1884
+    '#active' => 1,
1885
+    '#weight' => '0',
1886
+    '#categories' => array(
1887
+      '0' => 'boinc_standard',
1888
+      '1' => 'moderator notification',
1889
+    ),
1890
+    '#status' => 'default',
1891
+    '#conditions' => array(
1892
+      '0' => array(
1893
+        '#weight' => 0,
1894
+        '#negate' => 1,
1895
+        '#info' => array(
1896
+          'label' => 'Compare two users: acting user (who hid the comment) is NOT the comment author',
1897
+          'label callback' => FALSE,
1898
+          'arguments' => array(
1899
+            'user1' => array(
1900
+              'type' => 'user',
1901
+              'label' => 'User account 1',
1902
+            ),
1903
+            'user2' => array(
1904
+              'type' => 'user',
1905
+              'label' => 'User account 2',
1906
+            ),
1907
+          ),
1908
+          'module' => 'User',
1909
+        ),
1910
+        '#name' => 'rules_condition_user_comparison',
1911
+        '#type' => 'condition',
1912
+        '#settings' => array(
1913
+          '#argument map' => array(
1914
+            'user1' => 'user',
1915
+            'user2' => 'comment_author',
1916
+          ),
1917
+        ),
2035 1918
       ),
2036
-      'rules_comment_deleted_by_admin' => array(
2037
-        '#type' => 'rule',
2038
-        '#set' => 'event_comment_delete',
2039
-        '#label' => 'Comment deleted by admin',
2040
-        '#active' => 1,
2041
-        '#weight' => '0',
2042
-        '#categories' => array(
2043
-          '0' => 'moderator notification',
2044
-          '1' => 'boinc_standard',
2045
-        ),
2046
-        '#status' => 'default',
2047
-        '#conditions' => array(),
2048
-        '#actions' => array(
2049
-          '0' => array(
2050
-            '#weight' => 0,
2051
-            '#type' => 'action',
2052
-            '#settings' => array(
2053
-              'from' => '',
2054
-              'subject' => 'Comment deleted at [:global:site-name] by admin',
2055
-              'message' => "Comment to [node:type] topic '[node:title]' deleted by admin [user:display-name].\r\n\r\nLink: [node:node-url]",
2056
-              '#eval input' => array(
2057
-                'token_rules_input_evaluator' => array(
2058
-                  'subject' => array(
2059
-                    '0' => ':global',
2060
-                  ),
2061
-                  'message' => array(
2062
-                    '0' => 'node',
2063
-                    '1' => 'user',
2064
-                    '2' => ':global',
2065
-                  ),
2066
-                  'from' => array(
2067
-                    '0' => ':global',
2068
-                  ),
2069
-                ),
2070
-              ),
2071
-            ),
2072
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
2073
-            '#info' => array(
2074
-              'label' => 'Notify moderators via email',
2075
-              'module' => 'BOINC core',
2076
-              'eval input' => array(
2077
-                '0' => 'subject',
2078
-                '1' => 'message',
2079
-                '2' => 'from',
2080
-              ),
2081
-            ),
2082
-          ),
2083
-        ),
2084
-        '#version' => 6003,
1919
+    ),
1920
+    '#actions' => array(
1921
+      '0' => array(
1922
+        '#weight' => 0,
1923
+        '#type' => 'action',
1924
+        '#settings' => array(
1925
+          'from' => '',
1926
+          'subject' => 'Comment at [:global:site-name] hidden by moderator or admin',
1927
+          'message' => "Comment has been hidden by moderator/admin [user:display-name].\r\n\r\nLink: [:global:site-url]/goto/comment/[comment:comment-cid]",
1928
+          '#eval input' => array(
1929
+            'token_rules_input_evaluator' => array(
1930
+              'subject' => array(
1931
+                '0' => ':global',
1932
+              ),
1933
+              'message' => array(
1934
+                '0' => 'comment',
1935
+                '1' => 'user',
1936
+                '2' => ':global',
1937
+              ),
1938
+              'from' => array(
1939
+                '0' => ':global',
1940
+              ),
1941
+            ),
1942
+          ),
1943
+        ),
1944
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
1945
+        '#info' => array(
1946
+          'label' => 'Notify moderators via email',
1947
+          'module' => 'BOINC core',
1948
+          'eval input' => array(
1949
+            '0' => 'subject',
1950
+            '1' => 'message',
1951
+            '2' => 'from',
1952
+          ),
1953
+        ),
2085 1954
       ),
2086
-      'rules_offensive_comment_reported' => array(
2087
-        '#type' => 'rule',
2088
-        '#set' => 'event_flag_flagged_abuse_comment',
2089
-        '#label' => 'Offensive comment reported',
2090
-        '#active' => 1,
2091
-        '#weight' => '0',
2092
-        '#categories' => array(
2093
-          '0' => 'moderator notification',
2094
-          '1' => 'boinc_standard',
2095
-        ),
2096
-        '#status' => 'default',
2097
-        '#conditions' => array(),
2098
-        '#actions' => array(
2099
-          '1' => array(
2100
-            '#info' => array(
2101
-              'label' => 'Notify moderators via email',
2102
-              'module' => 'BOINC core',
2103
-              'eval input' => array(
2104
-                '0' => 'subject',
2105
-                '1' => 'message',
2106
-                '2' => 'from',
2107
-              ),
2108
-            ),
2109
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
2110
-            '#settings' => array(
2111
-              'from' => '',
2112
-              'subject' => 'Report of offensive [node:type] comment at [:global:site-name]',
2113
-              '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:
1955
+    ),
1956
+    '#version' => 6003,
1957
+  ),
1958
+  'rules_comment_is_published_unhidden_by_moderator_or_admin' => array(
1959
+    '#type' => 'rule',
1960
+    '#set' => 'event_boinccore_comment_unhidden',
1961
+    '#label' => 'Comment is unhidden by moderator or admin',
1962
+    '#active' => 1,
1963
+    '#weight' => '0',
1964
+    '#categories' => array(
1965
+      '0' => 'boinc_standard',
1966
+      '1' => 'moderator notification',
1967
+    ),
1968
+    '#status' => 'default',
1969
+    '#conditions' => array(
1970
+      '0' => array(
1971
+        '#type' => 'condition',
1972
+        '#settings' => array(
1973
+          '#argument map' => array(
1974
+            'user1' => 'user',
1975
+            'user2' => 'comment_author',
1976
+          ),
1977
+        ),
1978
+        '#name' => 'rules_condition_user_comparison',
1979
+        '#info' => array(
1980
+          'label' => 'Compare two users: acting user (who unhid the comment) is NOT the comment author',
1981
+          'label callback' => FALSE,
1982
+          'arguments' => array(
1983
+            'user1' => array(
1984
+              'type' => 'user',
1985
+              'label' => 'User account 1',
1986
+            ),
1987
+            'user2' => array(
1988
+              'type' => 'user',
1989
+              'label' => 'User account 2',
1990
+            ),
1991
+          ),
1992
+          'module' => 'User',
1993
+        ),
1994
+        '#negate' => 1,
1995
+        '#weight' => 0,
1996
+      ),
1997
+    ),
1998
+    '#actions' => array(
1999
+      '0' => array(
2000
+        '#weight' => 0,
2001
+        '#info' => array(
2002
+          'label' => 'Notify moderators via email',
2003
+          'module' => 'BOINC core',
2004
+          'eval input' => array(
2005
+            '0' => 'subject',
2006
+            '1' => 'message',
2007
+            '2' => 'from',
2008
+          ),
2009
+        ),
2010
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
2011
+        '#settings' => array(
2012
+          'from' => '',
2013
+          'subject' => 'Comment at [:global:site-name] unhidden by moderator or admin',
2014
+          'message' => "Comment has been unhidden by moderator/admin [user:display-name].\r\n\r\nLink: [:global:site-url]/goto/comment/[comment:comment-cid]",
2015
+          '#eval input' => array(
2016
+            'token_rules_input_evaluator' => array(
2017
+              'subject' => array(
2018
+                '0' => ':global',
2019
+              ),
2020
+              'message' => array(
2021
+                '0' => 'comment',
2022
+                '1' => 'user',
2023
+                '2' => ':global',
2024
+              ),
2025
+              'from' => array(
2026
+                '0' => ':global',
2027
+              ),
2028
+            ),
2029
+          ),
2030
+        ),
2031
+        '#type' => 'action',
2032
+      ),
2033
+    ),
2034
+    '#version' => 6003,
2035
+  ),
2036
+  'rules_comment_deleted_by_admin' => array(
2037
+    '#type' => 'rule',
2038
+    '#set' => 'event_comment_delete',
2039
+    '#label' => 'Comment deleted by admin',
2040
+    '#active' => 1,
2041
+    '#weight' => '0',
2042
+    '#categories' => array(
2043
+      '0' => 'moderator notification',
2044
+      '1' => 'boinc_standard',
2045
+    ),
2046
+    '#status' => 'default',
2047
+    '#conditions' => array(),
2048
+    '#actions' => array(
2049
+      '0' => array(
2050
+        '#weight' => 0,
2051
+        '#type' => 'action',
2052
+        '#settings' => array(
2053
+          'from' => '',
2054
+          'subject' => 'Comment deleted at [:global:site-name] by admin',
2055
+          'message' => "Comment to [node:type] topic '[node:title]' deleted by admin [user:display-name].\r\n\r\nLink: [node:node-url]",
2056
+          '#eval input' => array(
2057
+            'token_rules_input_evaluator' => array(
2058
+              'subject' => array(
2059
+                '0' => ':global',
2060
+              ),
2061
+              'message' => array(
2062
+                '0' => 'node',
2063
+                '1' => 'user',
2064
+                '2' => ':global',
2065
+              ),
2066
+              'from' => array(
2067
+                '0' => ':global',
2068
+              ),
2069
+            ),
2070
+          ),
2071
+        ),
2072
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
2073
+        '#info' => array(
2074
+          'label' => 'Notify moderators via email',
2075
+          'module' => 'BOINC core',
2076
+          'eval input' => array(
2077
+            '0' => 'subject',
2078
+            '1' => 'message',
2079
+            '2' => 'from',
2080
+          ),
2081
+        ),
2082
+      ),
2083
+    ),
2084
+    '#version' => 6003,
2085
+  ),
2086
+  'rules_offensive_comment_reported' => array(
2087
+    '#type' => 'rule',
2088
+    '#set' => 'event_flag_flagged_abuse_comment',
2089
+    '#label' => 'Offensive comment reported',
2090
+    '#active' => 1,
2091
+    '#weight' => '0',
2092
+    '#categories' => array(
2093
+      '0' => 'moderator notification',
2094
+      '1' => 'boinc_standard',
2095
+    ),
2096
+    '#status' => 'default',
2097
+    '#conditions' => array(),
2098
+    '#actions' => array(
2099
+      '1' => array(
2100
+        '#info' => array(
2101
+          'label' => 'Notify moderators via email',
2102
+          'module' => 'BOINC core',
2103
+          'eval input' => array(
2104
+            '0' => 'subject',
2105
+            '1' => 'message',
2106
+            '2' => 'from',
2107
+          ),
2108
+        ),
2109
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
2110
+        '#settings' => array(
2111
+          'from' => '',
2112
+          'subject' => 'Report of offensive [node:type] comment at [:global:site-name]',
2113
+          '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:
2114 2114
 
2115 2115
 [:global:site-url]/goto/comment/[comment:comment-cid]
2116 2116
 
2117 2117
 Total reports of this comment: [comment:flag-abuse-comment-count]',
2118
-              '#eval input' => array(
2119
-                'token_rules_input_evaluator' => array(
2120
-                  'subject' => array(
2121
-                    '0' => 'node',
2122
-                    '1' => ':global',
2123
-                  ),
2124
-                  'message' => array(
2125
-                    '0' => 'flagging_user',
2126
-                    '1' => 'comment',
2127
-                    '2' => 'node',
2128
-                    '3' => ':global',
2129
-                  ),
2130
-                  'from' => array(
2131
-                    '0' => ':global',
2132
-                  ),
2133
-                ),
2134
-              ),
2135
-            ),
2136
-            '#type' => 'action',
2137
-            '#weight' => 0,
2138
-          ),
2139
-        ),
2140
-        '#version' => 6003,
2118
+          '#eval input' => array(
2119
+            'token_rules_input_evaluator' => array(
2120
+              'subject' => array(
2121
+                '0' => 'node',
2122
+                '1' => ':global',
2123
+              ),
2124
+              'message' => array(
2125
+                '0' => 'flagging_user',
2126
+                '1' => 'comment',
2127
+                '2' => 'node',
2128
+                '3' => ':global',
2129
+              ),
2130
+              'from' => array(
2131
+                '0' => ':global',
2132
+              ),
2133
+            ),
2134
+          ),
2135
+        ),
2136
+        '#type' => 'action',
2137
+        '#weight' => 0,
2141 2138
       ),
2142
-      'rules_offensive_content_reported' => array(
2143
-        '#type' => 'rule',
2144
-        '#set' => 'event_flag_flagged_abuse_node',
2145
-        '#label' => 'Offensive content reported',
2146
-        '#active' => 1,
2147
-        '#weight' => '0',
2148
-        '#categories' => array(
2149
-          '0' => 'moderator notification',
2150
-          'boinc_standard' => 'boinc_standard',
2151
-        ),
2152
-        '#status' => 'default',
2153
-        '#conditions' => array(),
2154
-        '#actions' => array(
2155
-          '1' => array(
2156
-            '#type' => 'action',
2157
-            '#settings' => array(
2158
-              'from' => '',
2159
-              'subject' => 'Report of offensive [node:type] content at [:global:site-name]',
2160
-              'message' => '[flagging_user:display-name] has reported the following [node:type] content as being offensive or inappropriate for the [:global:site-name] site:
2139
+    ),
2140
+    '#version' => 6003,
2141
+  ),
2142
+  'rules_offensive_content_reported' => array(
2143
+    '#type' => 'rule',
2144
+    '#set' => 'event_flag_flagged_abuse_node',
2145
+    '#label' => 'Offensive content reported',
2146
+    '#active' => 1,
2147
+    '#weight' => '0',
2148
+    '#categories' => array(
2149
+      '0' => 'moderator notification',
2150
+      'boinc_standard' => 'boinc_standard',
2151
+    ),
2152
+    '#status' => 'default',
2153
+    '#conditions' => array(),
2154
+    '#actions' => array(
2155
+      '1' => array(
2156
+        '#type' => 'action',
2157
+        '#settings' => array(
2158
+          'from' => '',
2159
+          'subject' => 'Report of offensive [node:type] content at [:global:site-name]',
2160
+          'message' => '[flagging_user:display-name] has reported the following [node:type] content as being offensive or inappropriate for the [:global:site-name] site:
2161 2161
 
2162 2162
 [:global:site-url]/[node:node-path]
2163 2163
 
2164 2164
 Total reports of this content: [node:flag-abuse-node-count]',
2165
-              '#eval input' => array(
2166
-                'token_rules_input_evaluator' => array(
2167
-                  'subject' => array(
2168
-                    '0' => 'node',
2169
-                    '1' => ':global',
2170
-                  ),
2171
-                  'message' => array(
2172
-                    '0' => 'flagging_user',
2173
-                    '1' => 'node',
2174
-                    '2' => ':global',
2175
-                  ),
2176
-                  'from' => array(
2177
-                    '0' => ':global',
2178
-                  ),
2179
-                ),
2180
-              ),
2181
-            ),
2182
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
2183
-            '#info' => array(
2184
-              'label' => 'Notify moderators via email',
2185
-              'module' => 'BOINC core',
2186
-              'eval input' => array(
2187
-                '0' => 'subject',
2188
-                '1' => 'message',
2189
-                '2' => 'from',
2190
-              ),
2191
-            ),
2192
-            '#weight' => 0,
2193
-          ),
2194
-        ),
2195
-        '#version' => 6003,
2165
+          '#eval input' => array(
2166
+            'token_rules_input_evaluator' => array(
2167
+              'subject' => array(
2168
+                '0' => 'node',
2169
+                '1' => ':global',
2170
+              ),
2171
+              'message' => array(
2172
+                '0' => 'flagging_user',
2173
+                '1' => 'node',
2174
+                '2' => ':global',
2175
+              ),
2176
+              'from' => array(
2177
+                '0' => ':global',
2178
+              ),
2179
+            ),
2180
+          ),
2181
+        ),
2182
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
2183
+        '#info' => array(
2184
+          'label' => 'Notify moderators via email',
2185
+          'module' => 'BOINC core',
2186
+          'eval input' => array(
2187
+            '0' => 'subject',
2188
+            '1' => 'message',
2189
+            '2' => 'from',
2190
+          ),
2191
+        ),
2192
+        '#weight' => 0,
2196 2193
       ),
2197
-      'rules_offensive_user_reported' => array(
2198
-        '#type' => 'rule',
2199
-        '#set' => 'event_flag_flagged_abuse_user',
2200
-        '#label' => 'Offensive user reported',
2201
-        '#active' => 1,
2202
-        '#weight' => '0',
2203
-        '#categories' => array(
2204
-          '0' => 'moderator notification',
2205
-          'boinc_standard' => 'boinc_standard',
2206
-        ),
2207
-        '#status' => 'default',
2208
-        '#conditions' => array(),
2209
-        '#actions' => array(
2210
-          '1' => array(
2211
-            '#type' => 'action',
2212
-            '#settings' => array(
2213
-              'from' => '',
2214
-              'subject' => 'Report of offensive user at [:global:site-name]',
2215
-              'message' => '[flagging_user:display-name] has reported [account:display-name] for inappropriate behavior:
2194
+    ),
2195
+    '#version' => 6003,
2196
+  ),
2197
+  'rules_offensive_user_reported' => array(
2198
+    '#type' => 'rule',
2199
+    '#set' => 'event_flag_flagged_abuse_user',
2200
+    '#label' => 'Offensive user reported',
2201
+    '#active' => 1,
2202
+    '#weight' => '0',
2203
+    '#categories' => array(
2204
+      '0' => 'moderator notification',
2205
+      'boinc_standard' => 'boinc_standard',
2206
+    ),
2207
+    '#status' => 'default',
2208
+    '#conditions' => array(),
2209
+    '#actions' => array(
2210
+      '1' => array(
2211
+        '#type' => 'action',
2212
+        '#settings' => array(
2213
+          'from' => '',
2214
+          'subject' => 'Report of offensive user at [:global:site-name]',
2215
+          'message' => '[flagging_user:display-name] has reported [account:display-name] for inappropriate behavior:
2216 2216
 
2217 2217
 [:global:site-url]/account/[account:uid]
2218 2218
 
2219 2219
 Total current reports of this user: [account:flag-abuse-user-count]',
2220
-              '#eval input' => array(
2221
-                'token_rules_input_evaluator' => array(
2222
-                  'subject' => array(
2223
-                    '0' => ':global',
2224
-                  ),
2225
-                  'message' => array(
2226
-                    '0' => 'flagging_user',
2227
-                    '1' => 'account',
2228
-                    '2' => ':global',
2229
-                  ),
2230
-                  'from' => array(
2231
-                    '0' => ':global',
2232
-                  ),
2233
-                ),
2234
-              ),
2235
-            ),
2236
-            '#name' => 'boinccore_rules_action_mail_to_moderators',
2237
-            '#info' => array(
2238
-              'label' => 'Notify moderators via email',
2239
-              'module' => 'BOINC core',
2240
-              'eval input' => array(
2241
-                '0' => 'subject',
2242
-                '1' => 'message',
2243
-                '2' => 'from',
2244
-              ),
2245
-            ),
2246
-            '#weight' => 0,
2247
-          ),
2248
-        ),
2249
-        '#version' => 6003,
2220
+          '#eval input' => array(
2221
+            'token_rules_input_evaluator' => array(
2222
+              'subject' => array(
2223
+                '0' => ':global',
2224
+              ),
2225
+              'message' => array(
2226
+                '0' => 'flagging_user',
2227
+                '1' => 'account',
2228
+                '2' => ':global',
2229
+              ),
2230
+              'from' => array(
2231
+                '0' => ':global',
2232
+              ),
2233
+            ),
2234
+          ),
2235
+        ),
2236
+        '#name' => 'boinccore_rules_action_mail_to_moderators',
2237
+        '#info' => array(
2238
+          'label' => 'Notify moderators via email',
2239
+          'module' => 'BOINC core',
2240
+          'eval input' => array(
2241
+            '0' => 'subject',
2242
+            '1' => 'message',
2243
+            '2' => 'from',
2244
+          ),
2245
+        ),
2246
+        '#weight' => 0,
2250 2247
       ),
2251 2248
     ),
2252
-  );
2249
+    '#version' => 6003,
2250
+  ),
2251
+),
2252
+);
2253 2253
 }
2254 2254
 
2255 2255
 /**
2256 2256
  * Implementation of hook_views_api().
2257 2257
  */
2258 2258
 function boinc_standard_views_api() {
2259
-  return array(
2260
-    'api' => '2',
2261
-  );
2259
+return array(
2260
+'api' => '2',
2261
+);
2262 2262
 }
Please login to merge, or discard this patch.
sites/all/features/boinc_standard/boinc_standard.features.content.inc 1 patch
Switch Indentation   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -4,72 +4,72 @@
 block discarded – undo
4 4
  * Implementation of hook_content_default_fields().
5 5
  */
6 6
 function boinc_standard_content_default_fields() {
7
-  $fields = array();
7
+$fields = array();
8 8
 
9
-  // Exported field: field_boinctranslate_transifex
10
-  $fields['page-field_boinctranslate_transifex'] = array(
11
-    'field_name' => 'field_boinctranslate_transifex',
12
-    'type_name' => 'page',
13
-    'display_settings' => array(
14
-      'weight' => '101',
15
-      'parent' => '',
16
-      'label' => array(
17
-        'format' => 'hidden',
18
-      ),
19
-      'teaser' => array(
20
-        'format' => 'default',
21
-        'exclude' => 0,
22
-      ),
23
-      'full' => array(
24
-        'format' => 'hidden',
25
-        'exclude' => 0,
26
-      ),
27
-      'token' => array(
28
-        'format' => 'hidden',
29
-        'exclude' => 0,
30
-      ),
31
-      '2' => array(
32
-        'format' => 'hidden',
33
-        'exclude' => 0,
34
-      ),
35
-      '3' => array(
36
-        'format' => 'hidden',
37
-        'exclude' => 0,
38
-      ),
39
-      '4' => array(
40
-        'format' => 'hidden',
41
-        'exclude' => 0,
42
-      ),
43
-    ),
44
-    'widget_active' => '1',
45
-    'type' => 'text',
46
-    'required' => '1',
47
-    'multiple' => '0',
48
-    'module' => 'text',
49
-    'active' => '1',
50
-    'text_processing' => '0',
51
-    'max_length' => '',
52
-    'allowed_values' => '0|Do not translate
9
+// Exported field: field_boinctranslate_transifex
10
+$fields['page-field_boinctranslate_transifex'] = array(
11
+'field_name' => 'field_boinctranslate_transifex',
12
+'type_name' => 'page',
13
+'display_settings' => array(
14
+  'weight' => '101',
15
+  'parent' => '',
16
+  'label' => array(
17
+    'format' => 'hidden',
18
+  ),
19
+  'teaser' => array(
20
+    'format' => 'default',
21
+    'exclude' => 0,
22
+  ),
23
+  'full' => array(
24
+    'format' => 'hidden',
25
+    'exclude' => 0,
26
+  ),
27
+  'token' => array(
28
+    'format' => 'hidden',
29
+    'exclude' => 0,
30
+  ),
31
+  '2' => array(
32
+    'format' => 'hidden',
33
+    'exclude' => 0,
34
+  ),
35
+  '3' => array(
36
+    'format' => 'hidden',
37
+    'exclude' => 0,
38
+  ),
39
+  '4' => array(
40
+    'format' => 'hidden',
41
+    'exclude' => 0,
42
+  ),
43
+),
44
+'widget_active' => '1',
45
+'type' => 'text',
46
+'required' => '1',
47
+'multiple' => '0',
48
+'module' => 'text',
49
+'active' => '1',
50
+'text_processing' => '0',
51
+'max_length' => '',
52
+'allowed_values' => '0|Do not translate
53 53
 1|Export for translation',
54
-    'allowed_values_php' => '',
55
-    'widget' => array(
56
-      'default_value' => array(
57
-        '0' => array(
58
-          'value' => 1,
59
-        ),
60
-      ),
61
-      'default_value_php' => NULL,
62
-      'label' => 'Export to Transifex',
63
-      'weight' => '101',
64
-      'description' => 'If selected, this node will be exported to Transifex for translation. Otherwise the node will only be available in the default language.',
65
-      'type' => 'optionwidgets_onoff',
66
-      'module' => 'optionwidgets',
54
+'allowed_values_php' => '',
55
+'widget' => array(
56
+  'default_value' => array(
57
+    '0' => array(
58
+      'value' => 1,
67 59
     ),
68
-  );
60
+  ),
61
+  'default_value_php' => NULL,
62
+  'label' => 'Export to Transifex',
63
+  'weight' => '101',
64
+  'description' => 'If selected, this node will be exported to Transifex for translation. Otherwise the node will only be available in the default language.',
65
+  'type' => 'optionwidgets_onoff',
66
+  'module' => 'optionwidgets',
67
+),
68
+);
69 69
 
70
-  // Translatables
71
-  // Included for use with string extractors like potx.
72
-  t('boinctranslate export to transifex');
70
+// Translatables
71
+// Included for use with string extractors like potx.
72
+t('boinctranslate export to transifex');
73 73
 
74
-  return $fields;
74
+return $fields;
75 75
 }
Please login to merge, or discard this patch.
sites/all/features/boinc_standard/boinc_standard.features.menu_custom.inc 1 patch
Switch Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -4,19 +4,19 @@
 block discarded – undo
4 4
  * Implementation of hook_menu_default_menu_custom().
5 5
  */
6 6
 function boinc_standard_menu_default_menu_custom() {
7
-  $menus = array();
7
+$menus = array();
8 8
 
9
-  // Exported menu: menu-footer-links
10
-  $menus['menu-footer-links'] = array(
11
-    'menu_name' => 'menu-footer-links',
12
-    'title' => 'Footer links',
13
-    'description' => 'Auxiliary menu, typically at the bottom of the page in the footer, that includes links to content such as "about us" or "privacy policy" etc.',
14
-  );
15
-  // Translatables
16
-  // Title and description for footer menu appears in admin menu: Admin> Site Building> Menus
17
-  t('Auxiliary menu, typically at the bottom of the page in the footer, that includes links to content such as "about us" or "privacy policy" etc.');
18
-  t('Footer links');
9
+// Exported menu: menu-footer-links
10
+$menus['menu-footer-links'] = array(
11
+'menu_name' => 'menu-footer-links',
12
+'title' => 'Footer links',
13
+'description' => 'Auxiliary menu, typically at the bottom of the page in the footer, that includes links to content such as "about us" or "privacy policy" etc.',
14
+);
15
+// Translatables
16
+// Title and description for footer menu appears in admin menu: Admin> Site Building> Menus
17
+t('Auxiliary menu, typically at the bottom of the page in the footer, that includes links to content such as "about us" or "privacy policy" etc.');
18
+t('Footer links');
19 19
 
20 20
 
21
-  return $menus;
21
+return $menus;
22 22
 }
Please login to merge, or discard this patch.
drupal/sites/all/features/boinc_standard/boinc_standard.wysiwyg.inc 1 patch
Switch Indentation   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -4,81 +4,81 @@
 block discarded – undo
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(
14
-    'default' => 1,
15
-    'user_choose' => 1,
16
-    'show_toggle' => 1,
17
-    'theme' => 'advanced',
18
-    'language' => 'en',
19
-    'buttons' => array(
20
-      'default' => array(
21
-        'bold' => 1,
22
-        'italic' => 1,
23
-        'underline' => 1,
24
-        'strikethrough' => 1,
25
-        'justifyleft' => 1,
26
-        'justifycenter' => 1,
27
-        'justifyright' => 1,
28
-        'justifyfull' => 1,
29
-        'bullist' => 1,
30
-        'numlist' => 1,
31
-        'outdent' => 1,
32
-        'indent' => 1,
33
-        'undo' => 1,
34
-        'redo' => 1,
35
-        'link' => 1,
36
-        'image' => 1,
37
-        'sup' => 1,
38
-        'sub' => 1,
39
-        'blockquote' => 1,
40
-        'hr' => 1,
41
-        'removeformat' => 1,
42
-        'charmap' => 1,
43
-      ),
44
-      'advimage' => array(
45
-        'advimage' => 1,
46
-      ),
47
-      'emotions' => array(
48
-        'emotions' => 1,
49
-      ),
50
-      'font' => array(
51
-        'formatselect' => 1,
52
-      ),
53
-      'paste' => array(
54
-        'pastetext' => 1,
55
-      ),
56
-      'media' => array(
57
-        'media' => 1,
58
-      ),
59
-      'drupal' => array(
60
-        'linebreaks' => 1,
61
-      ),
62
-    ),
63
-    'toolbar_loc' => 'top',
64
-    'toolbar_align' => 'left',
65
-    'path_loc' => 'bottom',
66
-    'resizing' => 1,
67
-    'verify_html' => 1,
68
-    'preformatted' => 0,
69
-    'convert_fonts_to_spans' => 1,
70
-    'remove_linebreaks' => 1,
71
-    'apply_source_formatting' => 0,
72
-    'paste_auto_cleanup_on_paste' => 1,
73
-    'block_formats' => 'p,code,pre,h2,h3,h4,h5,h6,div,address',
74
-    'css_setting' => 'theme',
75
-    'css_path' => '',
76
-    'css_classes' => 'Image with caption=standalone-image
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
+'default' => 1,
15
+'user_choose' => 1,
16
+'show_toggle' => 1,
17
+'theme' => 'advanced',
18
+'language' => 'en',
19
+'buttons' => array(
20
+  'default' => array(
21
+    'bold' => 1,
22
+    'italic' => 1,
23
+    'underline' => 1,
24
+    'strikethrough' => 1,
25
+    'justifyleft' => 1,
26
+    'justifycenter' => 1,
27
+    'justifyright' => 1,
28
+    'justifyfull' => 1,
29
+    'bullist' => 1,
30
+    'numlist' => 1,
31
+    'outdent' => 1,
32
+    'indent' => 1,
33
+    'undo' => 1,
34
+    'redo' => 1,
35
+    'link' => 1,
36
+    'image' => 1,
37
+    'sup' => 1,
38
+    'sub' => 1,
39
+    'blockquote' => 1,
40
+    'hr' => 1,
41
+    'removeformat' => 1,
42
+    'charmap' => 1,
43
+  ),
44
+  'advimage' => array(
45
+    'advimage' => 1,
46
+  ),
47
+  'emotions' => array(
48
+    'emotions' => 1,
49
+  ),
50
+  'font' => array(
51
+    'formatselect' => 1,
52
+  ),
53
+  'paste' => array(
54
+    'pastetext' => 1,
55
+  ),
56
+  'media' => array(
57
+    'media' => 1,
58
+  ),
59
+  'drupal' => array(
60
+    'linebreaks' => 1,
61
+  ),
62
+),
63
+'toolbar_loc' => 'top',
64
+'toolbar_align' => 'left',
65
+'path_loc' => 'bottom',
66
+'resizing' => 1,
67
+'verify_html' => 1,
68
+'preformatted' => 0,
69
+'convert_fonts_to_spans' => 1,
70
+'remove_linebreaks' => 1,
71
+'apply_source_formatting' => 0,
72
+'paste_auto_cleanup_on_paste' => 1,
73
+'block_formats' => 'p,code,pre,h2,h3,h4,h5,h6,div,address',
74
+'css_setting' => 'theme',
75
+'css_path' => '',
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
 }
Please login to merge, or discard this patch.