Passed
Push — dpa_get_output ( 1f92a4 )
by David
10:50
created
html/user/account_ownership.php 1 patch
Indentation   +121 added lines, -121 removed lines patch added patch discarded remove patch
@@ -28,140 +28,140 @@
 block discarded – undo
28 28
 check_tokens($user->authenticator);
29 29
 
30 30
 function account_ownership_action($user) {
31
-  // POST request - the user has submitted the form.
32
-  page_head(tra("Proof of account ownership results"), null, null, null, boinc_recaptcha_get_head_extra());
33
-
34
-  global $recaptcha_private_key;
35
-  if ($recaptcha_private_key) {
36
-      // Recaptcha is enabled on the BOINC server
37
-      if (!boinc_recaptcha_isValidated($recaptcha_private_key)) {
38
-          // The user failed to solve the recaptcha prompt - redirect them to an error message!
39
-          error_page(
40
-              tra("Your reCAPTCHA response was not correct. Please try again.")
41
-          );
42
-      }
43
-  }
44
-
45
-  // Input is passed in from the openssl_sign_form
46
-  $user_data = htmlentities(post_str("user_data", true), ENT_QUOTES, "UTF-8"); // Convert special characters to html equivelant
47
-
48
-  if ((strlen($user_data) > 0) && (strlen($user_data) <= 4096)) {
49
-      require_once("../inc/account_ownership.inc");
50
-      // Check that the private key file exists where specified. If not, redirect to error page.
51
-      if (!file_exists($account_ownership_private_key_file_path)) {
52
-          error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
53
-      }
54
-
55
-      // Check that the public key file exists where specified. If not, redirect to error page.
56
-      if (!file_exists($account_ownership_public_key_file_path)) {
57
-          error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
58
-      }
59
-
60
-      $privkey = fopen($account_ownership_private_key_file_path, "r"); // Opening private key file
61
-      if (!isset($privkey) || empty($privkey)) {
31
+    // POST request - the user has submitted the form.
32
+    page_head(tra("Proof of account ownership results"), null, null, null, boinc_recaptcha_get_head_extra());
33
+
34
+    global $recaptcha_private_key;
35
+    if ($recaptcha_private_key) {
36
+        // Recaptcha is enabled on the BOINC server
37
+        if (!boinc_recaptcha_isValidated($recaptcha_private_key)) {
38
+            // The user failed to solve the recaptcha prompt - redirect them to an error message!
39
+            error_page(
40
+                tra("Your reCAPTCHA response was not correct. Please try again.")
41
+            );
42
+        }
43
+    }
44
+
45
+    // Input is passed in from the openssl_sign_form
46
+    $user_data = htmlentities(post_str("user_data", true), ENT_QUOTES, "UTF-8"); // Convert special characters to html equivelant
47
+
48
+    if ((strlen($user_data) > 0) && (strlen($user_data) <= 4096)) {
49
+        require_once("../inc/account_ownership.inc");
50
+        // Check that the private key file exists where specified. If not, redirect to error page.
51
+        if (!file_exists($account_ownership_private_key_file_path)) {
52
+            error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
53
+        }
54
+
55
+        // Check that the public key file exists where specified. If not, redirect to error page.
56
+        if (!file_exists($account_ownership_public_key_file_path)) {
57
+            error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
58
+        }
59
+
60
+        $privkey = fopen($account_ownership_private_key_file_path, "r"); // Opening private key file
61
+        if (!isset($privkey) || empty($privkey)) {
62 62
         error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
63
-      }
64
-      $privkey_contents = fread($privkey, 8192); // Reading contents of private key into var
65
-      fclose($privkey); // Closing private key file
63
+        }
64
+        $privkey_contents = fread($privkey, 8192); // Reading contents of private key into var
65
+        fclose($privkey); // Closing private key file
66 66
 
67
-      $userid = $user->id; // Retrieving the user's UserId
68
-      $message_data = "$userid $user_data"; // Create the message which will be signed.
67
+        $userid = $user->id; // Retrieving the user's UserId
68
+        $message_data = "$userid $user_data"; // Create the message which will be signed.
69 69
 
70
-      $private_key_pem = openssl_pkey_get_private($privkey_contents); // Loading the private key into memory
71
-      openssl_sign($message_data, $signature, $private_key_pem, OPENSSL_ALGO_SHA512); // Compute signature using SHA512
72
-      openssl_free_key($private_key_pem); // Free the private key from memory for additional security
70
+        $private_key_pem = openssl_pkey_get_private($privkey_contents); // Loading the private key into memory
71
+        openssl_sign($message_data, $signature, $private_key_pem, OPENSSL_ALGO_SHA512); // Compute signature using SHA512
72
+        openssl_free_key($private_key_pem); // Free the private key from memory for additional security
73 73
 
74
-      $pubkey = fopen($account_ownership_public_key_file_path, "r"); // Open public key file
75
-      if ((!isset($pubkey)) || empty($pubkey)) {
74
+        $pubkey = fopen($account_ownership_public_key_file_path, "r"); // Open public key file
75
+        if ((!isset($pubkey)) || empty($pubkey)) {
76 76
         error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
77
-      }
78
-      $pubkey_contents = fread($pubkey, 8192); // Read contents to var
79
-      fclose($pubkey); // Close pub key file
80
-
81
-      $base64_sig = base64_encode($signature); // Base64 encode the generated signature to enable safe output to text file.
82
-      $decoded_sig = base64_decode($base64_sig); // Decode base64 sig for use in sig_verification
83
-      $pubkeyid = openssl_pkey_get_public($pubkey_contents); // fetch public key into memory
84
-      $sig_verification = openssl_verify($message_data, $decoded_sig, $pubkeyid, OPENSSL_ALGO_SHA512); // Verify that the generated signature against the original data, using the public key.
85
-      openssl_free_key($pubkeyid); // Free the public key from memory
86
-
87
-      // Check if signature was successfully validated
88
-      if ($sig_verification == 1) {
89
-          $url_tokens = url_tokens($user->authenticator);
90
-          // The generated signature has been successfully verified using the public key.
91
-          global $master_url; // Define global master_url variable for use in output
92
-          echo "<p>Do not share this information with anyone other than the external system which has requested this proof of account ownership.</p>";
93
-          echo "<textarea rows='13' cols='50' id='result_textbox'><account_ownership_verification>\n<master_url>$master_url</master_url>\n<msg>$message_data</msg>\n<signature>$base64_sig</signature>\n</account_ownership_verification></textarea>";
94
-          echo "<br/><br/><button class='btn btn-success' onclick='copy_result_textbox()'>Copy text</button>";
95
-          echo "<a href='account_ownership.php?$url_tokens'><button class='btn btn-default'>Go back</button></a>";
96
-          echo '<script type="text/javascript">';
97
-          echo 'function copy_result_textbox() {
77
+        }
78
+        $pubkey_contents = fread($pubkey, 8192); // Read contents to var
79
+        fclose($pubkey); // Close pub key file
80
+
81
+        $base64_sig = base64_encode($signature); // Base64 encode the generated signature to enable safe output to text file.
82
+        $decoded_sig = base64_decode($base64_sig); // Decode base64 sig for use in sig_verification
83
+        $pubkeyid = openssl_pkey_get_public($pubkey_contents); // fetch public key into memory
84
+        $sig_verification = openssl_verify($message_data, $decoded_sig, $pubkeyid, OPENSSL_ALGO_SHA512); // Verify that the generated signature against the original data, using the public key.
85
+        openssl_free_key($pubkeyid); // Free the public key from memory
86
+
87
+        // Check if signature was successfully validated
88
+        if ($sig_verification == 1) {
89
+            $url_tokens = url_tokens($user->authenticator);
90
+            // The generated signature has been successfully verified using the public key.
91
+            global $master_url; // Define global master_url variable for use in output
92
+            echo "<p>Do not share this information with anyone other than the external system which has requested this proof of account ownership.</p>";
93
+            echo "<textarea rows='13' cols='50' id='result_textbox'><account_ownership_verification>\n<master_url>$master_url</master_url>\n<msg>$message_data</msg>\n<signature>$base64_sig</signature>\n</account_ownership_verification></textarea>";
94
+            echo "<br/><br/><button class='btn btn-success' onclick='copy_result_textbox()'>Copy text</button>";
95
+            echo "<a href='account_ownership.php?$url_tokens'><button class='btn btn-default'>Go back</button></a>";
96
+            echo '<script type="text/javascript">';
97
+            echo 'function copy_result_textbox() {
98 98
                 var target_textbox = document.getElementById("result_textbox");
99 99
                 target_textbox.select();
100 100
                 document.execCommand("copy");
101 101
                 alert("Copied to clipboard");
102 102
               }';
103
-          echo '</script>';
104
-          page_tail();
105
-
106
-      } elseif ($sig_verification == 0) {
107
-          // The generated signature has not been verified. The private/public keys do not match.
108
-          error_page(tra("Signature verification failed. Contact the project administrator to resolve the issue."));
109
-      } else {
110
-          // Something has gone wrong & an error has occurred.
111
-          error_page(tra("An error occurred during the signature verification. Contact the project administrator to resolve the issue."));
112
-      }
113
-  } else {
114
-      // User data input invalid
115
-      error_page(tra("Invalid input. User input must have a length > 0 and < 4096. <form><input type='button' value='Go back!'' onclick='history.back()'></form>"));
116
-  }
103
+            echo '</script>';
104
+            page_tail();
105
+
106
+        } elseif ($sig_verification == 0) {
107
+            // The generated signature has not been verified. The private/public keys do not match.
108
+            error_page(tra("Signature verification failed. Contact the project administrator to resolve the issue."));
109
+        } else {
110
+            // Something has gone wrong & an error has occurred.
111
+            error_page(tra("An error occurred during the signature verification. Contact the project administrator to resolve the issue."));
112
+        }
113
+    } else {
114
+        // User data input invalid
115
+        error_page(tra("Invalid input. User input must have a length > 0 and < 4096. <form><input type='button' value='Go back!'' onclick='history.back()'></form>"));
116
+    }
117 117
 }
118 118
 
119 119
 function account_ownership_form($user) {
120
-  // GET request - the user has navigated to the page.
121
-  page_head(tra("Generate proof of account ownership"), null, null, null, boinc_recaptcha_get_head_extra());
122
-
123
-  if ($user) { // Verify the user is logged in
124
-      require_once("../inc/account_ownership.inc");
125
-
126
-      if (!file_exists($account_ownership_private_key_file_path)) {
127
-          // Check that the private key file exists where specified. If not, redirect to error page.
128
-          error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
129
-      }
130
-
131
-      if (!file_exists($account_ownership_public_key_file_path)) {
132
-          // Check that the public key file exists where specified. If not, redirect to error page.
133
-          error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
134
-      }
135
-
136
-      echo "<p>This tool is designed to create a proof of account ownership for external systems.</p>";
137
-
138
-      global $recaptcha_public_key;
139
-      if ($recaptcha_public_key) {
140
-          // Recaptcha configured
141
-          echo "<p>Enter a message with length less than 4096 characters into the input textbox below, solve the captcha then click the 'Generate' button.</p>";
142
-      } else {
143
-          // Recaptcha not configured
144
-          echo "<p>Enter a message with length less than 4096 characters into the input textbox below then click the 'Generate' button.</p>";
145
-      }
146
-      echo "<p>A textbox will then appear which contains your proof of account ownership.";
147
-      echo "<form method=post action=account_ownership.php>";
148
-
149
-      echo form_tokens($user->authenticator);
150
-      echo "<textarea rows='4' cols='50' name=user_data type=text size=20 placeholder='Enter text'></textarea><br/><br/>";
151
-
152
-      if ($recaptcha_public_key) {
153
-          // Trigger recaptcha!
154
-          form_general("", boinc_recaptcha_get_html($recaptcha_public_key));
155
-      }
156
-
157
-      echo "<input class=\"btn btn-success\" type=submit value='".tra("Generate")."'>";
158
-      echo "</form><br/><hr/>";
159
-  } else {
160
-      // The user is not logged in!
161
-      echo "<p>You need to be logged in to use this functionality.</p>";
162
-  }
163
-
164
-  page_tail();
120
+    // GET request - the user has navigated to the page.
121
+    page_head(tra("Generate proof of account ownership"), null, null, null, boinc_recaptcha_get_head_extra());
122
+
123
+    if ($user) { // Verify the user is logged in
124
+        require_once("../inc/account_ownership.inc");
125
+
126
+        if (!file_exists($account_ownership_private_key_file_path)) {
127
+            // Check that the private key file exists where specified. If not, redirect to error page.
128
+            error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
129
+        }
130
+
131
+        if (!file_exists($account_ownership_public_key_file_path)) {
132
+            // Check that the public key file exists where specified. If not, redirect to error page.
133
+            error_page(tra("The proof of account ownership feature is not set up properly. Contact the project administrator to resolve the issue."));
134
+        }
135
+
136
+        echo "<p>This tool is designed to create a proof of account ownership for external systems.</p>";
137
+
138
+        global $recaptcha_public_key;
139
+        if ($recaptcha_public_key) {
140
+            // Recaptcha configured
141
+            echo "<p>Enter a message with length less than 4096 characters into the input textbox below, solve the captcha then click the 'Generate' button.</p>";
142
+        } else {
143
+            // Recaptcha not configured
144
+            echo "<p>Enter a message with length less than 4096 characters into the input textbox below then click the 'Generate' button.</p>";
145
+        }
146
+        echo "<p>A textbox will then appear which contains your proof of account ownership.";
147
+        echo "<form method=post action=account_ownership.php>";
148
+
149
+        echo form_tokens($user->authenticator);
150
+        echo "<textarea rows='4' cols='50' name=user_data type=text size=20 placeholder='Enter text'></textarea><br/><br/>";
151
+
152
+        if ($recaptcha_public_key) {
153
+            // Trigger recaptcha!
154
+            form_general("", boinc_recaptcha_get_html($recaptcha_public_key));
155
+        }
156
+
157
+        echo "<input class=\"btn btn-success\" type=submit value='".tra("Generate")."'>";
158
+        echo "</form><br/><hr/>";
159
+    } else {
160
+        // The user is not logged in!
161
+        echo "<p>You need to be logged in to use this functionality.</p>";
162
+    }
163
+
164
+    page_tail();
165 165
 }
166 166
 
167 167
 if ($_SERVER['REQUEST_METHOD'] === 'POST') {
Please login to merge, or discard this patch.
sites/default/boinc/modules/flag_abuse_reason/flag_abuse_reason.module 1 patch
Indentation   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -16,29 +16,29 @@  discard block
 block discarded – undo
16 16
  */
17 17
 
18 18
 function flag_abuse_reason_flag_default_flags() {
19
-  $flags = array();
20
-  module_load_include('inc', 'flag_abuse_reason', 'includes/flag_abuse_reason.flag_default');
21
-  _flag_abuse_reason_abuse_node_flags($flags);
22
-  _flag_abuse_reason_abuse_comment_flags($flags);
23
-  _flag_abuse_reason_abuse_user_flags($flags);
24
-  return $flags;
19
+    $flags = array();
20
+    module_load_include('inc', 'flag_abuse_reason', 'includes/flag_abuse_reason.flag_default');
21
+    _flag_abuse_reason_abuse_node_flags($flags);
22
+    _flag_abuse_reason_abuse_comment_flags($flags);
23
+    _flag_abuse_reason_abuse_user_flags($flags);
24
+    return $flags;
25 25
 }
26 26
 
27 27
 /**
28 28
  * Implementation of hook_views_api().
29 29
  */
30 30
 function flag_abuse_reason_views_api() {
31
-  return array(
31
+    return array(
32 32
     'api' => 2.0,
33 33
     'path' => drupal_get_path('module', 'flag_abuse_reason') . '/includes',
34
-  );
34
+    );
35 35
 }
36 36
 
37 37
 /**
38 38
  * Implementation of hook_perm().
39 39
  */
40 40
 function flag_abuse_reason_perm() {
41
-  return array('reset abuse flags');
41
+    return array('reset abuse flags');
42 42
 }
43 43
 
44 44
 /**
@@ -47,14 +47,14 @@  discard block
 block discarded – undo
47 47
  * Here we change our flag event/action to 'reset'.
48 48
  */
49 49
 function flag_abuse_reason_preprocess_flag(&$vars) {
50
-  drupal_add_js(drupal_get_path('module', 'flag_abuse_reason') . "/includes/flag_abuse_reason.js");
51
-  drupal_add_css(drupal_get_path('module', 'flag_abuse_reason') . "/css/flag_abuse_reason.css");
52
-  $myuser = $vars['user'];
53
-  $metaflags = array('abuse_node_meta', 'abuse_comment_meta', 'abuse_user_meta');
50
+    drupal_add_js(drupal_get_path('module', 'flag_abuse_reason') . "/includes/flag_abuse_reason.js");
51
+    drupal_add_css(drupal_get_path('module', 'flag_abuse_reason') . "/css/flag_abuse_reason.css");
52
+    $myuser = $vars['user'];
53
+    $metaflags = array('abuse_node_meta', 'abuse_comment_meta', 'abuse_user_meta');
54 54
 
55
-   // permmission check instead of a role
56
-  // Is this one of our abuse flags?
57
-  if (in_array($vars['flag']->name, $metaflags)) {
55
+    // permmission check instead of a role
56
+    // Is this one of our abuse flags?
57
+    if (in_array($vars['flag']->name, $metaflags)) {
58 58
 
59 59
     // count the number of flags on this content
60 60
     $count = db_result(db_query("SELECT COUNT(*) FROM {flag_content} WHERE content_id=%d AND fid=%d", $vars['content_id'], $vars['flag']->fid));
@@ -62,41 +62,41 @@  discard block
 block discarded – undo
62 62
     // If the variable <flagname>-<contentid> is set, then Reset
63 63
     // completely.
64 64
     if (variable_get($vars['flag']->name.'-'.$vars['content_id'], FALSE)) {
65
-      if (user_access('reset abuse flags', $myuser)) {
65
+        if (user_access('reset abuse flags', $myuser)) {
66 66
         $vars['action'] = 'none';
67 67
         $vars['link_text'] = t('Reset Completely');
68 68
         $vars['link_title'] = t('Reset everying, allows users to re-flag content.');
69
-      }
70
-      else {
69
+        }
70
+        else {
71 71
         $vars['action'] = 'none';
72 72
         $vars['link_text'] = t('Locked');
73 73
         $vars['link_title'] = t('Reporting locked by moderator.');
74 74
         $vars['link'] = array();
75 75
         $vars['link_href'] = '';
76 76
         $vars['flag_classes'] = 'flag style-like-link';
77
-      }
77
+        }
78 78
     }
79 79
     else {
80
-      // If there are flags on this content, clear the flags and
81
-      // lock the content.
82
-      if (user_access('reset abuse flags', $myuser)) {
80
+        // If there are flags on this content, clear the flags and
81
+        // lock the content.
82
+        if (user_access('reset abuse flags', $myuser)) {
83 83
         if ($count>0) {
84
-          $vars['action'] = 'reset';
85
-          $vars['link_text'] = t('Clear Reports and Lock');
86
-          $vars['link_title'] = t('Remove all flags on this content and prevent any new flagging.');
84
+            $vars['action'] = 'reset';
85
+            $vars['link_text'] = t('Clear Reports and Lock');
86
+            $vars['link_title'] = t('Remove all flags on this content and prevent any new flagging.');
87 87
         }
88 88
         // Otherwise the link is shown but has no effect.
89 89
         else {
90
-          $vars['action'] = 'none';
91
-          $vars['link_text'] = t('No abuse reports');
92
-          $vars['link_title'] = t('This content has no abuse reports. Link does nothing.');
90
+            $vars['action'] = 'none';
91
+            $vars['link_text'] = t('No abuse reports');
92
+            $vars['link_title'] = t('This content has no abuse reports. Link does nothing.');
93 93
         $vars['link'] = array();
94 94
         $vars['link_href'] = '';
95 95
         $vars['flag_classes'] = 'flag style-like-link';
96 96
         }
97
-      }
97
+        }
98
+    }
98 99
     }
99
-  }
100 100
 }
101 101
 
102 102
 /**
@@ -106,72 +106,72 @@  discard block
 block discarded – undo
106 106
  * we want to remove all flags. http://drupal.org/node/327901#comment-1085685
107 107
  */
108 108
 function flag_abuse_reason_flag($event, $flag, $content_id, $account) {
109
-  $metaflags = array('abuse_node_meta', 'abuse_comment_meta', 'abuse_user_meta');
109
+    $metaflags = array('abuse_node_meta', 'abuse_comment_meta', 'abuse_user_meta');
110 110
 
111
-  // For privileged users, check permissions and reset flags
112
-  // permission check instead of a role.
113
-  if (user_access('reset abuse flags', $account)) {
111
+    // For privileged users, check permissions and reset flags
112
+    // permission check instead of a role.
113
+    if (user_access('reset abuse flags', $account)) {
114 114
     // Is this one of our abuse flags?
115 115
     if (in_array($flag->name, $metaflags)) {
116 116
 
117
-      // Reset the flags completely.
118
-      if (variable_get($flag->name.'-'.$content_id, FALSE)) {
117
+        // Reset the flags completely.
118
+        if (variable_get($flag->name.'-'.$content_id, FALSE)) {
119 119
         // Since the user flags the content again, we need to unflag it.
120 120
         flag_reset_flag($flag, $content_id);
121 121
         drupal_set_message(bts('INFO: Reset everything. Users may reflag this content.', array(), NULL, 'boinc:flag-abuse-reset'), 'info');
122 122
         // unlock flag; effectively resets flags for this content
123 123
         variable_del($flag->name.'-'.$content_id);
124
-      }
125
-      else {
124
+        }
125
+        else {
126 126
         // Clear and Lock all flags on this content.
127 127
         $dbresult = db_query("SELECT DISTINCT fid FROM {flag_content} WHERE content_id = %d", $content_id);
128 128
         $rows = 0;
129 129
         while ($myfid = db_fetch_array($dbresult)) {
130
-          $myflag = flag_get_flag(NULL, array_pop($myfid));
131
-          $rows += flag_reset_flag($myflag, $content_id);
130
+            $myflag = flag_get_flag(NULL, array_pop($myfid));
131
+            $rows += flag_reset_flag($myflag, $content_id);
132 132
         }
133 133
         if ($rows) {
134
-          // This user actually flags the content as well, so it may
135
-          // confuse the user if they reset what they thought was one
136
-          // flag and we report two.
137
-          $rows--;
138
-          drupal_set_message(bts('INFO: Cleared !rows flags. Content is now locked and may not be reflagged.', array('!rows' => $rows), NULL, 'boinc:flag-abuse-reset'), 'info');
139
-
140
-          // This is the line which sets a Drupal variable which
141
-          // prevents the flag link from showing again for all
142
-          // users. Effectively preventing the content from being
143
-          // flagged again.
144
-          variable_set($flag->name.'-'.$content_id, TRUE);
134
+            // This user actually flags the content as well, so it may
135
+            // confuse the user if they reset what they thought was one
136
+            // flag and we report two.
137
+            $rows--;
138
+            drupal_set_message(bts('INFO: Cleared !rows flags. Content is now locked and may not be reflagged.', array('!rows' => $rows), NULL, 'boinc:flag-abuse-reset'), 'info');
139
+
140
+            // This is the line which sets a Drupal variable which
141
+            // prevents the flag link from showing again for all
142
+            // users. Effectively preventing the content from being
143
+            // flagged again.
144
+            variable_set($flag->name.'-'.$content_id, TRUE);
145
+        }
145 146
         }
146
-      }
147 147
 
148 148
     }
149
-  }
150
-  // Normal users may cancel their all their reported flags on this
151
-  // content.
152
-  else {
149
+    }
150
+    // Normal users may cancel their all their reported flags on this
151
+    // content.
152
+    else {
153 153
     if ( ($event=='unflag') && (in_array($flag->name, $metaflags)) ) {
154
-      $allflags = flag_get_user_flags($flag->content_type, $content_id, $account->uid);
155
-      foreach ($allflags as $subflag) {
154
+        $allflags = flag_get_user_flags($flag->content_type, $content_id, $account->uid);
155
+        foreach ($allflags as $subflag) {
156 156
         $myflag = flag_get_flag(NULL, $subflag->fid);
157 157
         $rc = $myflag->flag('unflag', $content_id, $account);
158
-      }
158
+        }
159
+    }
159 160
     }
160
-  }
161 161
 }
162 162
 
163 163
 /**
164 164
  * Implementation of hook_form_FORM_ID_alter().
165 165
  */
166 166
 function flag_abuse_reason_form_flag_confirm_alter(&$form, &$form_state) {
167
-  // Permmission check instead of a role.
168
-  if (user_access('reset abuse flags', $account)) {
167
+    // Permmission check instead of a role.
168
+    if (user_access('reset abuse flags', $account)) {
169 169
     $flag_name = $form['flag_name']['#value'];
170 170
     // Is this one of our abuse flags?
171 171
     if (in_array($flag_name, array('abuse_node_meta', 'abuse_comment_meta', 'abuse_user_meta'))) {
172
-      drupal_set_title(t('Flag reset'));
173
-      $form['description']['#value'] = t('Are you sure you want to reset all offensive flag on this content? Once doing so, users will not be able to flag this content again.');
174
-      $form['actions']['submit']['#value'] = t('Reset flags');
172
+        drupal_set_title(t('Flag reset'));
173
+        $form['description']['#value'] = t('Are you sure you want to reset all offensive flag on this content? Once doing so, users will not be able to flag this content again.');
174
+        $form['actions']['submit']['#value'] = t('Reset flags');
175
+    }
175 176
     }
176
-  }
177 177
 }
Please login to merge, or discard this patch.
boinc/modules/flag_abuse_reason/includes/flag_abuse_reason.flag_default.inc 1 patch
Indentation   +175 added lines, -175 removed lines patch added patch discarded remove patch
@@ -23,15 +23,15 @@  discard block
 block discarded – undo
23 23
  * Node Flags
24 24
  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
25 25
 function _flag_abuse_reason_abuse_node_flags(&$flags) {
26
-  // Exported flag: "Node Abuse 1 SPAM".
27
-  $flags['abuse_node_1'] = array(
26
+    // Exported flag: "Node Abuse 1 SPAM".
27
+    $flags['abuse_node_1'] = array(
28 28
     'content_type' => 'node',
29 29
     'title' => 'Node Abuse 1 SPAM',
30 30
     'global' => FALSE,
31 31
     'types' => array(
32
-      '0' => 'forum',
33
-      '1' => 'news',
34
-      '2' => 'team_forum',
32
+        '0' => 'forum',
33
+        '1' => 'news',
34
+        '2' => 'team_forum',
35 35
     ),
36 36
     'flag_short' => 'Flag as SPAM',
37 37
     'flag_long' => 'Flag this content SPAM.',
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
     'unflag_denied_text' => '',
43 43
     'link_type' => 'toggle',
44 44
     'roles' => array(
45
-      'flag' => array(
45
+        'flag' => array(
46 46
         '0' => 2,
47
-      ),
48
-      'unflag' => array(
47
+        ),
48
+        'unflag' => array(
49 49
         '0' => 2,
50
-      ),
50
+        ),
51 51
     ),
52 52
     'weight' => 0,
53 53
     'show_on_page' => 0,
@@ -57,19 +57,19 @@  discard block
 block discarded – undo
57 57
     'i18n' => '0',
58 58
     'module' => 'boinc_standard',
59 59
     'locked' => array(
60
-      '0' => 'name',
60
+        '0' => 'name',
61 61
     ),
62 62
     'api_version' => 2,
63
-  );
64
-  // Exported flag: "Node Abuse 2 Link".
65
-  $flags['abuse_node_2'] = array(
63
+    );
64
+    // Exported flag: "Node Abuse 2 Link".
65
+    $flags['abuse_node_2'] = array(
66 66
     'content_type' => 'node',
67 67
     'title' => 'Node Abuse 2 Link',
68 68
     'global' => FALSE,
69 69
     'types' => array(
70
-      '0' => 'forum',
71
-      '1' => 'news',
72
-      '2' => 'team_forum',
70
+        '0' => 'forum',
71
+        '1' => 'news',
72
+        '2' => 'team_forum',
73 73
     ),
74 74
     'flag_short' => 'Report as abusive link',
75 75
     'flag_long' => 'Flag this content as abusive link.',
@@ -80,12 +80,12 @@  discard block
 block discarded – undo
80 80
     'unflag_denied_text' => '',
81 81
     'link_type' => 'toggle',
82 82
     'roles' => array(
83
-      'flag' => array(
83
+        'flag' => array(
84 84
         '0' => 2,
85
-      ),
86
-      'unflag' => array(
85
+        ),
86
+        'unflag' => array(
87 87
         '0' => 2,
88
-      ),
88
+        ),
89 89
     ),
90 90
     'weight' => 0,
91 91
     'show_on_page' => 0,
@@ -95,19 +95,19 @@  discard block
 block discarded – undo
95 95
     'i18n' => '0',
96 96
     'module' => 'boinc_standard',
97 97
     'locked' => array(
98
-      '0' => 'name',
98
+        '0' => 'name',
99 99
     ),
100 100
     'api_version' => 2,
101
-  );
102
-  // Exported flag: "Node Abuse 3 Hostile".
103
-  $flags['abuse_node_3'] = array(
101
+    );
102
+    // Exported flag: "Node Abuse 3 Hostile".
103
+    $flags['abuse_node_3'] = array(
104 104
     'content_type' => 'node',
105 105
     'title' => 'Node Abuse 3 Hostile',
106 106
     'global' => FALSE,
107 107
     'types' => array(
108
-      '0' => 'forum',
109
-      '1' => 'news',
110
-      '2' => 'team_forum',
108
+        '0' => 'forum',
109
+        '1' => 'news',
110
+        '2' => 'team_forum',
111 111
     ),
112 112
     'flag_short' => 'Flag as hostile',
113 113
     'flag_long' => 'Flag this content as hostile.',
@@ -118,12 +118,12 @@  discard block
 block discarded – undo
118 118
     'unflag_denied_text' => '',
119 119
     'link_type' => 'toggle',
120 120
     'roles' => array(
121
-      'flag' => array(
121
+        'flag' => array(
122 122
         '0' => 2,
123
-      ),
124
-      'unflag' => array(
123
+        ),
124
+        'unflag' => array(
125 125
         '0' => 2,
126
-      ),
126
+        ),
127 127
     ),
128 128
     'weight' => 0,
129 129
     'show_on_page' => 0,
@@ -133,19 +133,19 @@  discard block
 block discarded – undo
133 133
     'i18n' => '0',
134 134
     'module' => 'boinc_standard',
135 135
     'locked' => array(
136
-      '0' => 'name',
136
+        '0' => 'name',
137 137
     ),
138 138
     'api_version' => 2,
139
-  );
140
-  // Exported flag: "Node Abuse 4 Not Kid Friendly".
141
-  $flags['abuse_node_4'] = array(
139
+    );
140
+    // Exported flag: "Node Abuse 4 Not Kid Friendly".
141
+    $flags['abuse_node_4'] = array(
142 142
     'content_type' => 'node',
143 143
     'title' => 'Node Abuse 4 Not Kid Friendly',
144 144
     'global' => FALSE,
145 145
     'types' => array(
146
-      '0' => 'forum',
147
-      '1' => 'news',
148
-      '2' => 'team_forum',
146
+        '0' => 'forum',
147
+        '1' => 'news',
148
+        '2' => 'team_forum',
149 149
     ),
150 150
     'flag_short' => 'Flag as not kid-friendly',
151 151
     'flag_long' => 'Flag this content as not kid-friendly.',
@@ -156,12 +156,12 @@  discard block
 block discarded – undo
156 156
     'unflag_denied_text' => '',
157 157
     'link_type' => 'toggle',
158 158
     'roles' => array(
159
-      'flag' => array(
159
+        'flag' => array(
160 160
         '0' => 2,
161
-      ),
162
-      'unflag' => array(
161
+        ),
162
+        'unflag' => array(
163 163
         '0' => 2,
164
-      ),
164
+        ),
165 165
     ),
166 166
     'weight' => 0,
167 167
     'show_on_page' => 0,
@@ -171,19 +171,19 @@  discard block
 block discarded – undo
171 171
     'i18n' => '0',
172 172
     'module' => 'boinc_standard',
173 173
     'locked' => array(
174
-      '0' => 'name',
174
+        '0' => 'name',
175 175
     ),
176 176
     'api_version' => 2,
177
-  );
178
-  // Exported flag: "Node Abuse 5 Other".
179
-  $flags['abuse_node_5'] = array(
177
+    );
178
+    // Exported flag: "Node Abuse 5 Other".
179
+    $flags['abuse_node_5'] = array(
180 180
     'content_type' => 'node',
181 181
     'title' => 'Node Abuse 5 Other',
182 182
     'global' => FALSE,
183 183
     'types' => array(
184
-      '0' => 'forum',
185
-      '1' => 'news',
186
-      '2' => 'team_forum',
184
+        '0' => 'forum',
185
+        '1' => 'news',
186
+        '2' => 'team_forum',
187 187
     ),
188 188
     'flag_short' => 'Flag as other',
189 189
     'flag_long' => 'Flag this content - other reason.',
@@ -194,12 +194,12 @@  discard block
 block discarded – undo
194 194
     'unflag_denied_text' => '',
195 195
     'link_type' => 'toggle',
196 196
     'roles' => array(
197
-      'flag' => array(
197
+        'flag' => array(
198 198
         '0' => 2,
199
-      ),
200
-      'unflag' => array(
199
+        ),
200
+        'unflag' => array(
201 201
         '0' => 2,
202
-      ),
202
+        ),
203 203
     ),
204 204
     'weight' => 0,
205 205
     'show_on_page' => 0,
@@ -209,19 +209,19 @@  discard block
 block discarded – undo
209 209
     'i18n' => '0',
210 210
     'module' => 'boinc_standard',
211 211
     'locked' => array(
212
-      '0' => 'name',
212
+        '0' => 'name',
213 213
     ),
214 214
     'api_version' => 2,
215
-  );
216
-  // Exported flag: "Node Abuse meta".
217
-  $flags['abuse_node_meta'] = array(
215
+    );
216
+    // Exported flag: "Node Abuse meta".
217
+    $flags['abuse_node_meta'] = array(
218 218
     'content_type' => 'node',
219 219
     'title' => 'Node Abuse meta',
220 220
     'global' => FALSE,
221 221
     'types' => array(
222
-      '0' => 'forum',
223
-      '1' => 'news',
224
-      '2' => 'team_forum',
222
+        '0' => 'forum',
223
+        '1' => 'news',
224
+        '2' => 'team_forum',
225 225
     ),
226 226
     'flag_short' => 'Report',
227 227
     'flag_long' => 'Report content',
@@ -232,12 +232,12 @@  discard block
 block discarded – undo
232 232
     'unflag_denied_text' => '',
233 233
     'link_type' => 'toggle',
234 234
     'roles' => array(
235
-      'flag' => array(
235
+        'flag' => array(
236 236
         '0' => 2,
237
-      ),
238
-      'unflag' => array(
237
+        ),
238
+        'unflag' => array(
239 239
         '0' => 2,
240
-      ),
240
+        ),
241 241
     ),
242 242
     'weight' => 0,
243 243
     'show_on_page' => 1,
@@ -247,27 +247,27 @@  discard block
 block discarded – undo
247 247
     'i18n' => '0',
248 248
     'module' => 'boinc_standard',
249 249
     'locked' => array(
250
-      '0' => 'name',
250
+        '0' => 'name',
251 251
     ),
252 252
     'api_version' => 2,
253
-  );
253
+    );
254 254
 
255
-  return $flags;
255
+    return $flags;
256 256
 }
257 257
 
258 258
 /*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  * *
259 259
  * Comment Flags
260 260
  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
261 261
 function _flag_abuse_reason_abuse_comment_flags(&$flags) {
262
-  // Exported flag: "Comment Abuse 1 SPAM".
263
-  $flags['abuse_comment_1'] = array(
262
+    // Exported flag: "Comment Abuse 1 SPAM".
263
+    $flags['abuse_comment_1'] = array(
264 264
     'content_type' => 'comment',
265 265
     'title' => 'Comment Abuse 1 SPAM',
266 266
     'global' => FALSE,
267 267
     'types' => array(
268
-      '0' => 'forum',
269
-      '1' => 'news',
270
-      '2' => 'team_forum',
268
+        '0' => 'forum',
269
+        '1' => 'news',
270
+        '2' => 'team_forum',
271 271
     ),
272 272
     'flag_short' => 'Flag as SPAM',
273 273
     'flag_long' => 'Flag this comment as SPAM.',
@@ -278,31 +278,31 @@  discard block
 block discarded – undo
278 278
     'unflag_denied_text' => '',
279 279
     'link_type' => 'toggle',
280 280
     'roles' => array(
281
-      'flag' => array(
281
+        'flag' => array(
282 282
         '0' => 2,
283
-      ),
284
-      'unflag' => array(
283
+        ),
284
+        'unflag' => array(
285 285
         '0' => 2,
286
-      ),
286
+        ),
287 287
     ),
288 288
     'weight' => 0,
289 289
     'access_author' => '',
290 290
     'show_on_comment' => 0,
291 291
     'module' => 'boinc_standard',
292 292
     'locked' => array(
293
-      '0' => 'name',
293
+        '0' => 'name',
294 294
     ),
295 295
     'api_version' => 2,
296
-  );
297
-  // Exported flag: "Comment Abuse 2 LINK".
298
-  $flags['abuse_comment_2'] = array(
296
+    );
297
+    // Exported flag: "Comment Abuse 2 LINK".
298
+    $flags['abuse_comment_2'] = array(
299 299
     'content_type' => 'comment',
300 300
     'title' => 'Comment Abuse 2 LINK',
301 301
     'global' => FALSE,
302 302
     'types' => array(
303
-      '0' => 'forum',
304
-      '1' => 'news',
305
-      '2' => 'team_forum',
303
+        '0' => 'forum',
304
+        '1' => 'news',
305
+        '2' => 'team_forum',
306 306
     ),
307 307
     'flag_short' => 'Flag as abusive link',
308 308
     'flag_long' => 'Flag this comment with abusive link.',
@@ -313,31 +313,31 @@  discard block
 block discarded – undo
313 313
     'unflag_denied_text' => '',
314 314
     'link_type' => 'toggle',
315 315
     'roles' => array(
316
-      'flag' => array(
316
+        'flag' => array(
317 317
         '0' => 2,
318
-      ),
319
-      'unflag' => array(
318
+        ),
319
+        'unflag' => array(
320 320
         '0' => 2,
321
-      ),
321
+        ),
322 322
     ),
323 323
     'weight' => 0,
324 324
     'access_author' => '',
325 325
     'show_on_comment' => 0,
326 326
     'module' => 'boinc_standard',
327 327
     'locked' => array(
328
-      '0' => 'name',
328
+        '0' => 'name',
329 329
     ),
330 330
     'api_version' => 2,
331
-  );
332
-  // Exported flag: "Comment Abuse 3 Hostile".
333
-  $flags['abuse_comment_3'] = array(
331
+    );
332
+    // Exported flag: "Comment Abuse 3 Hostile".
333
+    $flags['abuse_comment_3'] = array(
334 334
     'content_type' => 'comment',
335 335
     'title' => 'Comment Abuse 3 Hostile',
336 336
     'global' => FALSE,
337 337
     'types' => array(
338
-      '0' => 'forum',
339
-      '1' => 'news',
340
-      '2' => 'team_forum',
338
+        '0' => 'forum',
339
+        '1' => 'news',
340
+        '2' => 'team_forum',
341 341
     ),
342 342
     'flag_short' => 'Flag as hostile',
343 343
     'flag_long' => 'Flag this comment as hostile.',
@@ -348,31 +348,31 @@  discard block
 block discarded – undo
348 348
     'unflag_denied_text' => '',
349 349
     'link_type' => 'toggle',
350 350
     'roles' => array(
351
-      'flag' => array(
351
+        'flag' => array(
352 352
         '0' => 2,
353
-      ),
354
-      'unflag' => array(
353
+        ),
354
+        'unflag' => array(
355 355
         '0' => 2,
356
-      ),
356
+        ),
357 357
     ),
358 358
     'weight' => 0,
359 359
     'access_author' => '',
360 360
     'show_on_comment' => 0,
361 361
     'module' => 'boinc_standard',
362 362
     'locked' => array(
363
-      '0' => 'name',
363
+        '0' => 'name',
364 364
     ),
365 365
     'api_version' => 2,
366
-  );
367
-  // Exported flag: "Comment Abuse 4 Not Kid Friendly".
368
-  $flags['abuse_comment_4'] = array(
366
+    );
367
+    // Exported flag: "Comment Abuse 4 Not Kid Friendly".
368
+    $flags['abuse_comment_4'] = array(
369 369
     'content_type' => 'comment',
370 370
     'title' => 'Comment Abuse 4 Not Kid Friendly',
371 371
     'global' => FALSE,
372 372
     'types' => array(
373
-      '0' => 'forum',
374
-      '1' => 'news',
375
-      '2' => 'team_forum',
373
+        '0' => 'forum',
374
+        '1' => 'news',
375
+        '2' => 'team_forum',
376 376
     ),
377 377
     'flag_short' => 'Flag as not kid-friendly',
378 378
     'flag_long' => 'Flag this comment as not kid-friendly.',
@@ -383,31 +383,31 @@  discard block
 block discarded – undo
383 383
     'unflag_denied_text' => '',
384 384
     'link_type' => 'toggle',
385 385
     'roles' => array(
386
-      'flag' => array(
386
+        'flag' => array(
387 387
         '0' => 2,
388
-      ),
389
-      'unflag' => array(
388
+        ),
389
+        'unflag' => array(
390 390
         '0' => 2,
391
-      ),
391
+        ),
392 392
     ),
393 393
     'weight' => 0,
394 394
     'access_author' => '',
395 395
     'show_on_comment' => 0,
396 396
     'module' => 'boinc_standard',
397 397
     'locked' => array(
398
-      '0' => 'name',
398
+        '0' => 'name',
399 399
     ),
400 400
     'api_version' => 2,
401
-  );
402
-  // Exported flag: "Comment Abuse 5 Other".
403
-  $flags['abuse_comment_5'] = array(
401
+    );
402
+    // Exported flag: "Comment Abuse 5 Other".
403
+    $flags['abuse_comment_5'] = array(
404 404
     'content_type' => 'comment',
405 405
     'title' => 'Comment Abuse 5 Other',
406 406
     'global' => FALSE,
407 407
     'types' => array(
408
-      '0' => 'forum',
409
-      '1' => 'news',
410
-      '2' => 'team_forum',
408
+        '0' => 'forum',
409
+        '1' => 'news',
410
+        '2' => 'team_forum',
411 411
     ),
412 412
     'flag_short' => 'Flag as other',
413 413
     'flag_long' => 'Flag this comment - other reason',
@@ -418,31 +418,31 @@  discard block
 block discarded – undo
418 418
     'unflag_denied_text' => '',
419 419
     'link_type' => 'toggle',
420 420
     'roles' => array(
421
-      'flag' => array(
421
+        'flag' => array(
422 422
         '0' => 2,
423
-      ),
424
-      'unflag' => array(
423
+        ),
424
+        'unflag' => array(
425 425
         '0' => 2,
426
-      ),
426
+        ),
427 427
     ),
428 428
     'weight' => 0,
429 429
     'access_author' => '',
430 430
     'show_on_comment' => 0,
431 431
     'module' => 'boinc_standard',
432 432
     'locked' => array(
433
-      '0' => 'name',
433
+        '0' => 'name',
434 434
     ),
435 435
     'api_version' => 2,
436
-  );
437
-  // Exported flag: "Comment Abuse meta".
438
-  $flags['abuse_comment_meta'] = array(
436
+    );
437
+    // Exported flag: "Comment Abuse meta".
438
+    $flags['abuse_comment_meta'] = array(
439 439
     'content_type' => 'comment',
440 440
     'title' => 'Comment Abuse meta',
441 441
     'global' => '0',
442 442
     'types' => array(
443
-      '0' => 'forum',
444
-      '1' => 'news',
445
-      '2' => 'team_forum',
443
+        '0' => 'forum',
444
+        '1' => 'news',
445
+        '2' => 'team_forum',
446 446
     ),
447 447
     'flag_short' => 'Report',
448 448
     'flag_long' => 'Report comment.',
@@ -453,32 +453,32 @@  discard block
 block discarded – undo
453 453
     'unflag_denied_text' => '',
454 454
     'link_type' => 'toggle',
455 455
     'roles' => array(
456
-      'flag' => array(
456
+        'flag' => array(
457 457
         '0' => 2,
458
-      ),
459
-      'unflag' => array(
458
+        ),
459
+        'unflag' => array(
460 460
         '0' => 2,
461
-      ),
461
+        ),
462 462
     ),
463 463
     'weight' => 0,
464 464
     'access_author' => '',
465 465
     'show_on_comment' => 1,
466 466
     'module' => 'boinc_standard',
467 467
     'locked' => array(
468
-      '0' => 'name',
468
+        '0' => 'name',
469 469
     ),
470 470
     'api_version' => 2,
471
-  );
471
+    );
472 472
 
473
-  return $flags;
473
+    return $flags;
474 474
 }
475 475
 
476 476
 /*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  * *
477 477
  * User Flags
478 478
  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
479 479
 function _flag_abuse_reason_abuse_user_flags(&$flags) {
480
-  // Exported flag: "User Abuse 1 SPAM".
481
-  $flags['abuse_user_1'] = array(
480
+    // Exported flag: "User Abuse 1 SPAM".
481
+    $flags['abuse_user_1'] = array(
482 482
     'content_type' => 'user',
483 483
     'title' => 'User Abuse 1 SPAM',
484 484
     'global' => FALSE,
@@ -492,24 +492,24 @@  discard block
 block discarded – undo
492 492
     'unflag_denied_text' => '',
493 493
     'link_type' => 'toggle',
494 494
     'roles' => array(
495
-      'flag' => array(
495
+        'flag' => array(
496 496
         '0' => 2,
497
-      ),
498
-      'unflag' => array(
497
+        ),
498
+        'unflag' => array(
499 499
         '0' => 2,
500
-      ),
500
+        ),
501 501
     ),
502 502
     'weight' => 0,
503 503
     'show_on_profile' => 0,
504 504
     'access_uid' => '',
505 505
     'module' => 'boinc_standard',
506 506
     'locked' => array(
507
-      '0' => 'name',
507
+        '0' => 'name',
508 508
     ),
509 509
     'api_version' => 2,
510
-  );
511
-  // Exported flag: "User Abuse 2 Link".
512
-  $flags['abuse_user_2'] = array(
510
+    );
511
+    // Exported flag: "User Abuse 2 Link".
512
+    $flags['abuse_user_2'] = array(
513 513
     'content_type' => 'user',
514 514
     'title' => 'User Abuse 2 Link',
515 515
     'global' => FALSE,
@@ -523,24 +523,24 @@  discard block
 block discarded – undo
523 523
     'unflag_denied_text' => '',
524 524
     'link_type' => 'toggle',
525 525
     'roles' => array(
526
-      'flag' => array(
526
+        'flag' => array(
527 527
         '0' => 2,
528
-      ),
529
-      'unflag' => array(
528
+        ),
529
+        'unflag' => array(
530 530
         '0' => 2,
531
-      ),
531
+        ),
532 532
     ),
533 533
     'weight' => 0,
534 534
     'show_on_profile' => 0,
535 535
     'access_uid' => '',
536 536
     'module' => 'boinc_standard',
537 537
     'locked' => array(
538
-      '0' => 'name',
538
+        '0' => 'name',
539 539
     ),
540 540
     'api_version' => 2,
541
-  );
542
-  // Exported flag: "User Abuse 3 Not Kid Friendly".
543
-  $flags['abuse_user_3'] = array(
541
+    );
542
+    // Exported flag: "User Abuse 3 Not Kid Friendly".
543
+    $flags['abuse_user_3'] = array(
544 544
     'content_type' => 'user',
545 545
     'title' => 'User Abuse 3 Not Kid Friendly',
546 546
     'global' => FALSE,
@@ -554,24 +554,24 @@  discard block
 block discarded – undo
554 554
     'unflag_denied_text' => '',
555 555
     'link_type' => 'toggle',
556 556
     'roles' => array(
557
-      'flag' => array(
557
+        'flag' => array(
558 558
         '0' => 2,
559
-      ),
560
-      'unflag' => array(
559
+        ),
560
+        'unflag' => array(
561 561
         '0' => 2,
562
-      ),
562
+        ),
563 563
     ),
564 564
     'weight' => 0,
565 565
     'show_on_profile' => 0,
566 566
     'access_uid' => '',
567 567
     'module' => 'boinc_standard',
568 568
     'locked' => array(
569
-      '0' => 'name',
569
+        '0' => 'name',
570 570
     ),
571 571
     'api_version' => 2,
572
-  );
573
-  // Exported flag: "User Abuse 4 Other".
574
-  $flags['abuse_user_4'] = array(
572
+    );
573
+    // Exported flag: "User Abuse 4 Other".
574
+    $flags['abuse_user_4'] = array(
575 575
     'content_type' => 'user',
576 576
     'title' => 'User Abuse 4 Other',
577 577
     'global' => FALSE,
@@ -585,24 +585,24 @@  discard block
 block discarded – undo
585 585
     'unflag_denied_text' => '',
586 586
     'link_type' => 'toggle',
587 587
     'roles' => array(
588
-      'flag' => array(
588
+        'flag' => array(
589 589
         '0' => 2,
590
-      ),
591
-      'unflag' => array(
590
+        ),
591
+        'unflag' => array(
592 592
         '0' => 2,
593
-      ),
593
+        ),
594 594
     ),
595 595
     'weight' => 0,
596 596
     'show_on_profile' => 0,
597 597
     'access_uid' => '',
598 598
     'module' => 'boinc_standard',
599 599
     'locked' => array(
600
-      '0' => 'name',
600
+        '0' => 'name',
601 601
     ),
602 602
     'api_version' => 2,
603
-  );
604
-  // Exported flag: "User Abuse Meta".
605
-  $flags['abuse_user_meta'] = array(
603
+    );
604
+    // Exported flag: "User Abuse Meta".
605
+    $flags['abuse_user_meta'] = array(
606 606
     'content_type' => 'user',
607 607
     'title' => 'User Abuse Meta',
608 608
     'global' => FALSE,
@@ -616,22 +616,22 @@  discard block
 block discarded – undo
616 616
     'unflag_denied_text' => '',
617 617
     'link_type' => 'toggle',
618 618
     'roles' => array(
619
-      'flag' => array(
619
+        'flag' => array(
620 620
         '0' => 2,
621
-      ),
622
-      'unflag' => array(
621
+        ),
622
+        'unflag' => array(
623 623
         '0' => 2,
624
-      ),
624
+        ),
625 625
     ),
626 626
     'weight' => 0,
627 627
     'show_on_profile' => 1,
628 628
     'access_uid' => '',
629 629
     'module' => 'boinc_standard',
630 630
     'locked' => array(
631
-      '0' => 'name',
631
+        '0' => 'name',
632 632
     ),
633 633
     'api_version' => 2,
634
-  );
634
+    );
635 635
 
636
-  return $flags;
636
+    return $flags;
637 637
 }
Please login to merge, or discard this patch.
html/user/create_account.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
         }
107 107
         if (!$checkct) {
108 108
             error_log("Project configuration error! " .
109
-              "'CONSENT_TYPE_ENROLL' disabled while 'account_creation_rpc_require_consent' enabled!"
109
+                "'CONSENT_TYPE_ENROLL' disabled while 'account_creation_rpc_require_consent' enabled!"
110 110
             );
111 111
         }
112 112
 
Please login to merge, or discard this patch.
all/features/boinc_standard/boinc_standard.features.user_permission.inc 1 patch
Indentation   +318 added lines, -318 removed lines patch added patch discarded remove patch
@@ -4,621 +4,621 @@
 block discarded – undo
4 4
  * Implementation of hook_user_default_permissions().
5 5
  */
6 6
 function boinc_standard_user_default_permissions() {
7
-  $permissions = array();
7
+    $permissions = array();
8 8
 
9
-  // Exported permission: Use PHP input for field settings (dangerous - grant with care)
10
-  $permissions['Use PHP input for field settings (dangerous - grant with care)'] = array(
9
+    // Exported permission: Use PHP input for field settings (dangerous - grant with care)
10
+    $permissions['Use PHP input for field settings (dangerous - grant with care)'] = array(
11 11
     'name' => 'Use PHP input for field settings (dangerous - grant with care)',
12 12
     'roles' => array(
13
-      '0' => 'administrator',
13
+        '0' => 'administrator',
14 14
     ),
15
-  );
15
+    );
16 16
 
17
-  // Exported permission: access administration pages
18
-  $permissions['access administration pages'] = array(
17
+    // Exported permission: access administration pages
18
+    $permissions['access administration pages'] = array(
19 19
     'name' => 'access administration pages',
20 20
     'roles' => array(
21
-      '0' => 'administrator',
21
+        '0' => 'administrator',
22 22
     ),
23
-  );
23
+    );
24 24
 
25
-  // Exported permission: access all views
26
-  $permissions['access all views'] = array(
25
+    // Exported permission: access all views
26
+    $permissions['access all views'] = array(
27 27
     'name' => 'access all views',
28 28
     'roles' => array(
29
-      '0' => 'administrator',
29
+        '0' => 'administrator',
30 30
     ),
31
-  );
31
+    );
32 32
 
33
-  // Exported permission: access ckeditor
34
-  $permissions['access ckeditor'] = array(
33
+    // Exported permission: access ckeditor
34
+    $permissions['access ckeditor'] = array(
35 35
     'name' => 'access ckeditor',
36 36
     'roles' => array(
37
-      '0' => 'administrator',
38
-      '1' => 'anonymous user',
39
-      '2' => 'authenticated user',
40
-      '3' => 'community member',
41
-      '4' => 'content editor',
42
-      '5' => 'moderator',
43
-      '6' => 'verified contributor',
37
+        '0' => 'administrator',
38
+        '1' => 'anonymous user',
39
+        '2' => 'authenticated user',
40
+        '3' => 'community member',
41
+        '4' => 'content editor',
42
+        '5' => 'moderator',
43
+        '6' => 'verified contributor',
44 44
     ),
45
-  );
45
+    );
46 46
 
47
-  // Exported permission: access content
48
-  $permissions['access content'] = array(
47
+    // Exported permission: access content
48
+    $permissions['access content'] = array(
49 49
     'name' => 'access content',
50 50
     'roles' => array(
51
-      '0' => 'administrator',
52
-      '1' => 'anonymous user',
53
-      '2' => 'authenticated user',
51
+        '0' => 'administrator',
52
+        '1' => 'anonymous user',
53
+        '2' => 'authenticated user',
54 54
     ),
55
-  );
55
+    );
56 56
 
57
-  // Exported permission: access site reports
58
-  $permissions['access site reports'] = array(
57
+    // Exported permission: access site reports
58
+    $permissions['access site reports'] = array(
59 59
     'name' => 'access site reports',
60 60
     'roles' => array(
61
-      '0' => 'administrator',
61
+        '0' => 'administrator',
62 62
     ),
63
-  );
63
+    );
64 64
 
65
-  // Exported permission: administer actions
66
-  $permissions['administer actions'] = array(
65
+    // Exported permission: administer actions
66
+    $permissions['administer actions'] = array(
67 67
     'name' => 'administer actions',
68 68
     'roles' => array(
69
-      '0' => 'administrator',
69
+        '0' => 'administrator',
70 70
     ),
71
-  );
71
+    );
72 72
 
73
-  // Exported permission: administer advanced pane settings
74
-  $permissions['administer advanced pane settings'] = array(
73
+    // Exported permission: administer advanced pane settings
74
+    $permissions['administer advanced pane settings'] = array(
75 75
     'name' => 'administer advanced pane settings',
76 76
     'roles' => array(
77
-      '0' => 'administrator',
77
+        '0' => 'administrator',
78 78
     ),
79
-  );
79
+    );
80 80
 
81
-  // Exported permission: administer blocks
82
-  $permissions['administer blocks'] = array(
81
+    // Exported permission: administer blocks
82
+    $permissions['administer blocks'] = array(
83 83
     'name' => 'administer blocks',
84 84
     'roles' => array(
85
-      '0' => 'administrator',
85
+        '0' => 'administrator',
86 86
     ),
87
-  );
87
+    );
88 88
 
89
-  // Exported permission: administer ckeditor
90
-  $permissions['administer ckeditor'] = array(
89
+    // Exported permission: administer ckeditor
90
+    $permissions['administer ckeditor'] = array(
91 91
     'name' => 'administer ckeditor',
92 92
     'roles' => array(
93
-      '0' => 'administrator',
93
+        '0' => 'administrator',
94 94
     ),
95
-  );
95
+    );
96 96
 
97
-  // Exported permission: administer content types
98
-  $permissions['administer content types'] = array(
97
+    // Exported permission: administer content types
98
+    $permissions['administer content types'] = array(
99 99
     'name' => 'administer content types',
100 100
     'roles' => array(
101
-      '0' => 'administrator',
101
+        '0' => 'administrator',
102 102
     ),
103
-  );
103
+    );
104 104
 
105
-  // Exported permission: administer elysia_cron
106
-  $permissions['administer elysia_cron'] = array(
105
+    // Exported permission: administer elysia_cron
106
+    $permissions['administer elysia_cron'] = array(
107 107
     'name' => 'administer elysia_cron',
108 108
     'roles' => array(
109
-      '0' => 'administrator',
109
+        '0' => 'administrator',
110 110
     ),
111
-  );
111
+    );
112 112
 
113
-  // Exported permission: administer features
114
-  $permissions['administer features'] = array(
113
+    // Exported permission: administer features
114
+    $permissions['administer features'] = array(
115 115
     'name' => 'administer features',
116 116
     'roles' => array(
117
-      '0' => 'administrator',
117
+        '0' => 'administrator',
118 118
     ),
119
-  );
119
+    );
120 120
 
121
-  // Exported permission: administer files
122
-  $permissions['administer files'] = array(
121
+    // Exported permission: administer files
122
+    $permissions['administer files'] = array(
123 123
     'name' => 'administer files',
124 124
     'roles' => array(
125
-      '0' => 'administrator',
125
+        '0' => 'administrator',
126 126
     ),
127
-  );
127
+    );
128 128
 
129
-  // Exported permission: administer filters
130
-  $permissions['administer filters'] = array(
129
+    // Exported permission: administer filters
130
+    $permissions['administer filters'] = array(
131 131
     'name' => 'administer filters',
132 132
     'roles' => array(
133
-      '0' => 'administrator',
133
+        '0' => 'administrator',
134 134
     ),
135
-  );
135
+    );
136 136
 
137
-  // Exported permission: administer flags
138
-  $permissions['administer flags'] = array(
137
+    // Exported permission: administer flags
138
+    $permissions['administer flags'] = array(
139 139
     'name' => 'administer flags',
140 140
     'roles' => array(
141
-      '0' => 'administrator',
141
+        '0' => 'administrator',
142 142
     ),
143
-  );
143
+    );
144 144
 
145
-  // Exported permission: administer imce(execute PHP)
146
-  $permissions['administer imce(execute PHP)'] = array(
145
+    // Exported permission: administer imce(execute PHP)
146
+    $permissions['administer imce(execute PHP)'] = array(
147 147
     'name' => 'administer imce(execute PHP)',
148 148
     'roles' => array(
149
-      '0' => 'administrator',
149
+        '0' => 'administrator',
150 150
     ),
151
-  );
151
+    );
152 152
 
153
-  // Exported permission: administer menu
154
-  $permissions['administer menu'] = array(
153
+    // Exported permission: administer menu
154
+    $permissions['administer menu'] = array(
155 155
     'name' => 'administer menu',
156 156
     'roles' => array(
157
-      '0' => 'administrator',
158
-      '1' => 'content editor',
157
+        '0' => 'administrator',
158
+        '1' => 'content editor',
159 159
     ),
160
-  );
160
+    );
161 161
 
162
-  // Exported permission: administer mini panels
163
-  $permissions['administer mini panels'] = array(
162
+    // Exported permission: administer mini panels
163
+    $permissions['administer mini panels'] = array(
164 164
     'name' => 'administer mini panels',
165 165
     'roles' => array(
166
-      '0' => 'administrator',
166
+        '0' => 'administrator',
167 167
     ),
168
-  );
168
+    );
169 169
 
170
-  // Exported permission: administer nodes
171
-  $permissions['administer nodes'] = array(
170
+    // Exported permission: administer nodes
171
+    $permissions['administer nodes'] = array(
172 172
     'name' => 'administer nodes',
173 173
     'roles' => array(
174
-      '0' => 'administrator',
174
+        '0' => 'administrator',
175 175
     ),
176
-  );
176
+    );
177 177
 
178
-  // Exported permission: administer page manager
179
-  $permissions['administer page manager'] = array(
178
+    // Exported permission: administer page manager
179
+    $permissions['administer page manager'] = array(
180 180
     'name' => 'administer page manager',
181 181
     'roles' => array(
182
-      '0' => 'administrator',
182
+        '0' => 'administrator',
183 183
     ),
184
-  );
184
+    );
185 185
 
186
-  // Exported permission: administer pane access
187
-  $permissions['administer pane access'] = array(
186
+    // Exported permission: administer pane access
187
+    $permissions['administer pane access'] = array(
188 188
     'name' => 'administer pane access',
189 189
     'roles' => array(
190
-      '0' => 'administrator',
190
+        '0' => 'administrator',
191 191
     ),
192
-  );
192
+    );
193 193
 
194
-  // Exported permission: administer pane visibility
195
-  $permissions['administer pane visibility'] = array(
194
+    // Exported permission: administer pane visibility
195
+    $permissions['administer pane visibility'] = array(
196 196
     'name' => 'administer pane visibility',
197 197
     'roles' => array(
198
-      '0' => 'administrator',
198
+        '0' => 'administrator',
199 199
     ),
200
-  );
200
+    );
201 201
 
202
-  // Exported permission: administer panel-nodes
203
-  $permissions['administer panel-nodes'] = array(
202
+    // Exported permission: administer panel-nodes
203
+    $permissions['administer panel-nodes'] = array(
204 204
     'name' => 'administer panel-nodes',
205 205
     'roles' => array(
206
-      '0' => 'administrator',
206
+        '0' => 'administrator',
207 207
     ),
208
-  );
208
+    );
209 209
 
210
-  // Exported permission: administer panels layouts
211
-  $permissions['administer panels layouts'] = array(
210
+    // Exported permission: administer panels layouts
211
+    $permissions['administer panels layouts'] = array(
212 212
     'name' => 'administer panels layouts',
213 213
     'roles' => array(
214
-      '0' => 'administrator',
214
+        '0' => 'administrator',
215 215
     ),
216
-  );
216
+    );
217 217
 
218
-  // Exported permission: administer pathauto
219
-  $permissions['administer pathauto'] = array(
218
+    // Exported permission: administer pathauto
219
+    $permissions['administer pathauto'] = array(
220 220
     'name' => 'administer pathauto',
221 221
     'roles' => array(
222
-      '0' => 'administrator',
222
+        '0' => 'administrator',
223 223
     ),
224
-  );
224
+    );
225 225
 
226
-  // Exported permission: administer permissions
227
-  $permissions['administer permissions'] = array(
226
+    // Exported permission: administer permissions
227
+    $permissions['administer permissions'] = array(
228 228
     'name' => 'administer permissions',
229 229
     'roles' => array(
230
-      '0' => 'administrator',
230
+        '0' => 'administrator',
231 231
     ),
232
-  );
232
+    );
233 233
 
234
-  // Exported permission: administer rules
235
-  $permissions['administer rules'] = array(
234
+    // Exported permission: administer rules
235
+    $permissions['administer rules'] = array(
236 236
     'name' => 'administer rules',
237 237
     'roles' => array(
238
-      '0' => 'administrator',
238
+        '0' => 'administrator',
239 239
     ),
240
-  );
240
+    );
241 241
 
242
-  // Exported permission: administer site configuration
243
-  $permissions['administer site configuration'] = array(
242
+    // Exported permission: administer site configuration
243
+    $permissions['administer site configuration'] = array(
244 244
     'name' => 'administer site configuration',
245 245
     'roles' => array(
246
-      '0' => 'administrator',
246
+        '0' => 'administrator',
247 247
     ),
248
-  );
248
+    );
249 249
 
250
-  // Exported permission: administer smtp module
251
-  $permissions['administer smtp module'] = array(
250
+    // Exported permission: administer smtp module
251
+    $permissions['administer smtp module'] = array(
252 252
     'name' => 'administer smtp module',
253 253
     'roles' => array(
254
-      '0' => 'administrator',
254
+        '0' => 'administrator',
255 255
     ),
256
-  );
256
+    );
257 257
 
258
-  // Exported permission: administer tabtamer
259
-  $permissions['administer tabtamer'] = array(
258
+    // Exported permission: administer tabtamer
259
+    $permissions['administer tabtamer'] = array(
260 260
     'name' => 'administer tabtamer',
261 261
     'roles' => array(
262
-      '0' => 'administrator',
262
+        '0' => 'administrator',
263 263
     ),
264
-  );
264
+    );
265 265
 
266
-  // Exported permission: administer taxonomy
267
-  $permissions['administer taxonomy'] = array(
266
+    // Exported permission: administer taxonomy
267
+    $permissions['administer taxonomy'] = array(
268 268
     'name' => 'administer taxonomy',
269 269
     'roles' => array(
270
-      '0' => 'administrator',
270
+        '0' => 'administrator',
271 271
     ),
272
-  );
272
+    );
273 273
 
274
-  // Exported permission: administer url aliases
275
-  $permissions['administer url aliases'] = array(
274
+    // Exported permission: administer url aliases
275
+    $permissions['administer url aliases'] = array(
276 276
     'name' => 'administer url aliases',
277 277
     'roles' => array(
278
-      '0' => 'administrator',
278
+        '0' => 'administrator',
279 279
     ),
280
-  );
280
+    );
281 281
 
282
-  // Exported permission: administer users
283
-  $permissions['administer users'] = array(
282
+    // Exported permission: administer users
283
+    $permissions['administer users'] = array(
284 284
     'name' => 'administer users',
285 285
     'roles' => array(
286
-      '0' => 'administrator',
286
+        '0' => 'administrator',
287 287
     ),
288
-  );
288
+    );
289 289
 
290
-  // Exported permission: administer views
291
-  $permissions['administer views'] = array(
290
+    // Exported permission: administer views
291
+    $permissions['administer views'] = array(
292 292
     'name' => 'administer views',
293 293
     'roles' => array(
294
-      '0' => 'administrator',
294
+        '0' => 'administrator',
295 295
     ),
296
-  );
296
+    );
297 297
 
298
-  // Exported permission: assign all roles
299
-  $permissions['assign all roles'] = array(
298
+    // Exported permission: assign all roles
299
+    $permissions['assign all roles'] = array(
300 300
     'name' => 'assign all roles',
301 301
     'roles' => array(
302
-      '0' => 'administrator',
302
+        '0' => 'administrator',
303 303
     ),
304
-  );
304
+    );
305 305
 
306
-  // Exported permission: change own username
307
-  $permissions['change own username'] = array(
306
+    // Exported permission: change own username
307
+    $permissions['change own username'] = array(
308 308
     'name' => 'change own username',
309 309
     'roles' => array(
310
-      '0' => 'administrator',
310
+        '0' => 'administrator',
311 311
     ),
312
-  );
312
+    );
313 313
 
314
-  // Exported permission: create mini panels
315
-  $permissions['create mini panels'] = array(
314
+    // Exported permission: create mini panels
315
+    $permissions['create mini panels'] = array(
316 316
     'name' => 'create mini panels',
317 317
     'roles' => array(
318
-      '0' => 'administrator',
318
+        '0' => 'administrator',
319 319
     ),
320
-  );
320
+    );
321 321
 
322
-  // Exported permission: create page content
323
-  $permissions['create page content'] = array(
322
+    // Exported permission: create page content
323
+    $permissions['create page content'] = array(
324 324
     'name' => 'create page content',
325 325
     'roles' => array(
326
-      '0' => 'administrator',
327
-      '1' => 'content editor',
326
+        '0' => 'administrator',
327
+        '1' => 'content editor',
328 328
     ),
329
-  );
329
+    );
330 330
 
331
-  // Exported permission: create panel-nodes
332
-  $permissions['create panel-nodes'] = array(
331
+    // Exported permission: create panel-nodes
332
+    $permissions['create panel-nodes'] = array(
333 333
     'name' => 'create panel-nodes',
334 334
     'roles' => array(
335
-      '0' => 'administrator',
335
+        '0' => 'administrator',
336 336
     ),
337
-  );
337
+    );
338 338
 
339
-  // Exported permission: create story content
340
-  $permissions['create story content'] = array(
339
+    // Exported permission: create story content
340
+    $permissions['create story content'] = array(
341 341
     'name' => 'create story content',
342 342
     'roles' => array(
343
-      '0' => 'administrator',
343
+        '0' => 'administrator',
344 344
     ),
345
-  );
345
+    );
346 346
 
347
-  // Exported permission: create url aliases
348
-  $permissions['create url aliases'] = array(
347
+    // Exported permission: create url aliases
348
+    $permissions['create url aliases'] = array(
349 349
     'name' => 'create url aliases',
350 350
     'roles' => array(
351
-      '0' => 'administrator',
351
+        '0' => 'administrator',
352 352
     ),
353
-  );
353
+    );
354 354
 
355
-  // Exported permission: delete any page content
356
-  $permissions['delete any page content'] = array(
355
+    // Exported permission: delete any page content
356
+    $permissions['delete any page content'] = array(
357 357
     'name' => 'delete any page content',
358 358
     'roles' => array(
359
-      '0' => 'administrator',
360
-      '1' => 'content editor',
359
+        '0' => 'administrator',
360
+        '1' => 'content editor',
361 361
     ),
362
-  );
362
+    );
363 363
 
364
-  // Exported permission: delete any panel-nodes
365
-  $permissions['delete any panel-nodes'] = array(
364
+    // Exported permission: delete any panel-nodes
365
+    $permissions['delete any panel-nodes'] = array(
366 366
     'name' => 'delete any panel-nodes',
367 367
     'roles' => array(
368
-      '0' => 'administrator',
368
+        '0' => 'administrator',
369 369
     ),
370
-  );
370
+    );
371 371
 
372
-  // Exported permission: delete any story content
373
-  $permissions['delete any story content'] = array(
372
+    // Exported permission: delete any story content
373
+    $permissions['delete any story content'] = array(
374 374
     'name' => 'delete any story content',
375 375
     'roles' => array(
376
-      '0' => 'administrator',
376
+        '0' => 'administrator',
377 377
     ),
378
-  );
378
+    );
379 379
 
380
-  // Exported permission: delete own account
381
-  $permissions['delete own account'] = array(
380
+    // Exported permission: delete own account
381
+    $permissions['delete own account'] = array(
382 382
     'name' => 'delete own account',
383 383
     'roles' => array(
384
-      '0' => 'administrator',
385
-      '1' => 'authenticated user',
384
+        '0' => 'administrator',
385
+        '1' => 'authenticated user',
386 386
     ),
387
-  );
387
+    );
388 388
 
389
-  // Exported permission: delete own page content
390
-  $permissions['delete own page content'] = array(
389
+    // Exported permission: delete own page content
390
+    $permissions['delete own page content'] = array(
391 391
     'name' => 'delete own page content',
392 392
     'roles' => array(
393
-      '0' => 'administrator',
393
+        '0' => 'administrator',
394 394
     ),
395
-  );
395
+    );
396 396
 
397
-  // Exported permission: delete own panel-nodes
398
-  $permissions['delete own panel-nodes'] = array(
397
+    // Exported permission: delete own panel-nodes
398
+    $permissions['delete own panel-nodes'] = array(
399 399
     'name' => 'delete own panel-nodes',
400 400
     'roles' => array(
401
-      '0' => 'administrator',
401
+        '0' => 'administrator',
402 402
     ),
403
-  );
403
+    );
404 404
 
405
-  // Exported permission: delete own story content
406
-  $permissions['delete own story content'] = array(
405
+    // Exported permission: delete own story content
406
+    $permissions['delete own story content'] = array(
407 407
     'name' => 'delete own story content',
408 408
     'roles' => array(
409
-      '0' => 'administrator',
409
+        '0' => 'administrator',
410 410
     ),
411
-  );
411
+    );
412 412
 
413
-  // Exported permission: delete revisions
414
-  $permissions['delete revisions'] = array(
413
+    // Exported permission: delete revisions
414
+    $permissions['delete revisions'] = array(
415 415
     'name' => 'delete revisions',
416 416
     'roles' => array(
417
-      '0' => 'administrator',
418
-      '1' => 'content editor',
417
+        '0' => 'administrator',
418
+        '1' => 'content editor',
419 419
     ),
420
-  );
420
+    );
421 421
 
422
-  // Exported permission: edit any page content
423
-  $permissions['edit any page content'] = array(
422
+    // Exported permission: edit any page content
423
+    $permissions['edit any page content'] = array(
424 424
     'name' => 'edit any page content',
425 425
     'roles' => array(
426
-      '0' => 'administrator',
427
-      '1' => 'content editor',
426
+        '0' => 'administrator',
427
+        '1' => 'content editor',
428 428
     ),
429
-  );
429
+    );
430 430
 
431
-  // Exported permission: edit any panel-nodes
432
-  $permissions['edit any panel-nodes'] = array(
431
+    // Exported permission: edit any panel-nodes
432
+    $permissions['edit any panel-nodes'] = array(
433 433
     'name' => 'edit any panel-nodes',
434 434
     'roles' => array(
435
-      '0' => 'administrator',
435
+        '0' => 'administrator',
436 436
     ),
437
-  );
437
+    );
438 438
 
439
-  // Exported permission: edit any story content
440
-  $permissions['edit any story content'] = array(
439
+    // Exported permission: edit any story content
440
+    $permissions['edit any story content'] = array(
441 441
     'name' => 'edit any story content',
442 442
     'roles' => array(
443
-      '0' => 'administrator',
443
+        '0' => 'administrator',
444 444
     ),
445
-  );
445
+    );
446 446
 
447
-  // Exported permission: edit own page content
448
-  $permissions['edit own page content'] = array(
447
+    // Exported permission: edit own page content
448
+    $permissions['edit own page content'] = array(
449 449
     'name' => 'edit own page content',
450 450
     'roles' => array(
451
-      '0' => 'administrator',
451
+        '0' => 'administrator',
452 452
     ),
453
-  );
453
+    );
454 454
 
455
-  // Exported permission: edit own panel-nodes
456
-  $permissions['edit own panel-nodes'] = array(
455
+    // Exported permission: edit own panel-nodes
456
+    $permissions['edit own panel-nodes'] = array(
457 457
     'name' => 'edit own panel-nodes',
458 458
     'roles' => array(
459
-      '0' => 'administrator',
459
+        '0' => 'administrator',
460 460
     ),
461
-  );
461
+    );
462 462
 
463
-  // Exported permission: edit own story content
464
-  $permissions['edit own story content'] = array(
463
+    // Exported permission: edit own story content
464
+    $permissions['edit own story content'] = array(
465 465
     'name' => 'edit own story content',
466 466
     'roles' => array(
467
-      '0' => 'administrator',
467
+        '0' => 'administrator',
468 468
     ),
469
-  );
469
+    );
470 470
 
471
-  // Exported permission: ignore user
472
-  $permissions['ignore user'] = array(
471
+    // Exported permission: ignore user
472
+    $permissions['ignore user'] = array(
473 473
     'name' => 'ignore user',
474 474
     'roles' => array(
475
-      '0' => 'authenticated user',
475
+        '0' => 'authenticated user',
476 476
     ),
477
-  );
477
+    );
478 478
 
479
-  // Exported permission: import input formats
480
-  $permissions['import input formats'] = array(
479
+    // Exported permission: import input formats
480
+    $permissions['import input formats'] = array(
481 481
     'name' => 'import input formats',
482 482
     'roles' => array(),
483
-  );
483
+    );
484 484
 
485
-  // Exported permission: manage features
486
-  $permissions['manage features'] = array(
485
+    // Exported permission: manage features
486
+    $permissions['manage features'] = array(
487 487
     'name' => 'manage features',
488 488
     'roles' => array(
489
-      '0' => 'administrator',
489
+        '0' => 'administrator',
490 490
     ),
491
-  );
491
+    );
492 492
 
493
-  // Exported permission: notify of path changes
494
-  $permissions['notify of path changes'] = array(
493
+    // Exported permission: notify of path changes
494
+    $permissions['notify of path changes'] = array(
495 495
     'name' => 'notify of path changes',
496 496
     'roles' => array(
497
-      '0' => 'administrator',
497
+        '0' => 'administrator',
498 498
     ),
499
-  );
499
+    );
500 500
 
501
-  // Exported permission: reset abuse flags
502
-  $permissions['reset abuse flags'] = array(
501
+    // Exported permission: reset abuse flags
502
+    $permissions['reset abuse flags'] = array(
503 503
     'name' => 'reset abuse flags',
504 504
     'roles' => array(
505
-      '0' => 'administrator',
506
-      '1' => 'moderator',
505
+        '0' => 'administrator',
506
+        '1' => 'moderator',
507 507
     ),
508
-  );
508
+    );
509 509
 
510
-  // Exported permission: revert revisions
511
-  $permissions['revert revisions'] = array(
510
+    // Exported permission: revert revisions
511
+    $permissions['revert revisions'] = array(
512 512
     'name' => 'revert revisions',
513 513
     'roles' => array(
514
-      '0' => 'administrator',
515
-      '1' => 'content editor',
514
+        '0' => 'administrator',
515
+        '1' => 'content editor',
516 516
     ),
517
-  );
517
+    );
518 518
 
519
-  // Exported permission: select different theme
520
-  $permissions['select different theme'] = array(
519
+    // Exported permission: select different theme
520
+    $permissions['select different theme'] = array(
521 521
     'name' => 'select different theme',
522 522
     'roles' => array(
523
-      '0' => 'administrator',
523
+        '0' => 'administrator',
524 524
     ),
525
-  );
525
+    );
526 526
 
527
-  // Exported permission: upload files
528
-  $permissions['upload files'] = array(
527
+    // Exported permission: upload files
528
+    $permissions['upload files'] = array(
529 529
     'name' => 'upload files',
530 530
     'roles' => array(
531
-      '0' => 'administrator',
532
-      '1' => 'content editor',
531
+        '0' => 'administrator',
532
+        '1' => 'content editor',
533 533
     ),
534
-  );
534
+    );
535 535
 
536
-  // Exported permission: view uploaded files
537
-  $permissions['view uploaded files'] = array(
536
+    // Exported permission: view uploaded files
537
+    $permissions['view uploaded files'] = array(
538 538
     'name' => 'view uploaded files',
539 539
     'roles' => array(),
540
-  );
540
+    );
541 541
 
542
-  // Exported permission: use PHP for block visibility
543
-  $permissions['use PHP for block visibility'] = array(
542
+    // Exported permission: use PHP for block visibility
543
+    $permissions['use PHP for block visibility'] = array(
544 544
     'name' => 'use PHP for block visibility',
545 545
     'roles' => array(
546
-      '0' => 'administrator',
546
+        '0' => 'administrator',
547 547
     ),
548
-  );
548
+    );
549 549
 
550
-  // Exported permission: use PHP for me alias paths
551
-  $permissions['use PHP for me alias paths'] = array(
550
+    // Exported permission: use PHP for me alias paths
551
+    $permissions['use PHP for me alias paths'] = array(
552 552
     'name' => 'use PHP for me alias paths',
553 553
     'roles' => array(
554
-      '0' => 'administrator',
554
+        '0' => 'administrator',
555 555
     ),
556
-  );
556
+    );
557 557
 
558
-  // Exported permission: use flag import
559
-  $permissions['use flag import'] = array(
558
+    // Exported permission: use flag import
559
+    $permissions['use flag import'] = array(
560 560
     'name' => 'use flag import',
561 561
     'roles' => array(
562
-      '0' => 'administrator',
562
+        '0' => 'administrator',
563 563
     ),
564
-  );
564
+    );
565 565
 
566
-  // Exported permission: use page manager
567
-  $permissions['use page manager'] = array(
566
+    // Exported permission: use page manager
567
+    $permissions['use page manager'] = array(
568 568
     'name' => 'use page manager',
569 569
     'roles' => array(
570
-      '0' => 'administrator',
570
+        '0' => 'administrator',
571 571
     ),
572
-  );
572
+    );
573 573
 
574
-  // Exported permission: use panels caching features
575
-  $permissions['use panels caching features'] = array(
574
+    // Exported permission: use panels caching features
575
+    $permissions['use panels caching features'] = array(
576 576
     'name' => 'use panels caching features',
577 577
     'roles' => array(
578
-      '0' => 'administrator',
578
+        '0' => 'administrator',
579 579
     ),
580
-  );
580
+    );
581 581
 
582
-  // Exported permission: use panels dashboard
583
-  $permissions['use panels dashboard'] = array(
582
+    // Exported permission: use panels dashboard
583
+    $permissions['use panels dashboard'] = array(
584 584
     'name' => 'use panels dashboard',
585 585
     'roles' => array(
586
-      '0' => 'administrator',
586
+        '0' => 'administrator',
587 587
     ),
588
-  );
588
+    );
589 589
 
590
-  // Exported permission: use panels in place editing
591
-  $permissions['use panels in place editing'] = array(
590
+    // Exported permission: use panels in place editing
591
+    $permissions['use panels in place editing'] = array(
592 592
     'name' => 'use panels in place editing',
593 593
     'roles' => array(
594
-      '0' => 'administrator',
594
+        '0' => 'administrator',
595 595
     ),
596
-  );
596
+    );
597 597
 
598
-  // Exported permission: view all panes
599
-  $permissions['view all panes'] = array(
598
+    // Exported permission: view all panes
599
+    $permissions['view all panes'] = array(
600 600
     'name' => 'view all panes',
601 601
     'roles' => array(
602
-      '0' => 'administrator',
602
+        '0' => 'administrator',
603 603
     ),
604
-  );
604
+    );
605 605
 
606
-  // Exported permission: view pane admin links
607
-  $permissions['view pane admin links'] = array(
606
+    // Exported permission: view pane admin links
607
+    $permissions['view pane admin links'] = array(
608 608
     'name' => 'view pane admin links',
609 609
     'roles' => array(
610
-      '0' => 'administrator',
610
+        '0' => 'administrator',
611 611
     ),
612
-  );
612
+    );
613 613
 
614
-  // Exported permission: view revisions
615
-  $permissions['view revisions'] = array(
614
+    // Exported permission: view revisions
615
+    $permissions['view revisions'] = array(
616 616
     'name' => 'view revisions',
617 617
     'roles' => array(
618
-      '0' => 'administrator',
619
-      '1' => 'content editor',
618
+        '0' => 'administrator',
619
+        '1' => 'content editor',
620 620
     ),
621
-  );
621
+    );
622 622
 
623
-  return $permissions;
623
+    return $permissions;
624 624
 }
Please login to merge, or discard this patch.
sites/all/features/boinc_standard/boinc_standard.features.user_role.inc 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -4,42 +4,42 @@
 block discarded – undo
4 4
  * Implementation of hook_user_default_roles().
5 5
  */
6 6
 function boinc_standard_user_default_roles() {
7
-  $roles = array();
7
+    $roles = array();
8 8
 
9
-  // Exported role: administrator
10
-  $roles['administrator'] = array(
9
+    // Exported role: administrator
10
+    $roles['administrator'] = array(
11 11
     'name' => 'administrator',
12
-  );
12
+    );
13 13
 
14
-  // Exported role: anonymous user
15
-  $roles['anonymous user'] = array(
14
+    // Exported role: anonymous user
15
+    $roles['anonymous user'] = array(
16 16
     'name' => 'anonymous user',
17
-  );
17
+    );
18 18
 
19
-  // Exported role: authenticated user
20
-  $roles['authenticated user'] = array(
19
+    // Exported role: authenticated user
20
+    $roles['authenticated user'] = array(
21 21
     'name' => 'authenticated user',
22
-  );
22
+    );
23 23
 
24
-  // Exported role: community member
25
-  $roles['community member'] = array(
24
+    // Exported role: community member
25
+    $roles['community member'] = array(
26 26
     'name' => 'community member',
27
-  );
27
+    );
28 28
 
29
-  // Exported role: content editor
30
-  $roles['content editor'] = array(
29
+    // Exported role: content editor
30
+    $roles['content editor'] = array(
31 31
     'name' => 'content editor',
32
-  );
32
+    );
33 33
 
34
-  // Exported role: moderator
35
-  $roles['moderator'] = array(
34
+    // Exported role: moderator
35
+    $roles['moderator'] = array(
36 36
     'name' => 'moderator',
37
-  );
37
+    );
38 38
 
39
-  // Exported role: verified contributor
40
-  $roles['verified contributor'] = array(
39
+    // Exported role: verified contributor
40
+    $roles['verified contributor'] = array(
41 41
     'name' => 'verified contributor',
42
-  );
42
+    );
43 43
 
44
-  return $roles;
44
+    return $roles;
45 45
 }
Please login to merge, or discard this patch.
all/features/boinc_standard/boinc_standard.features.ckeditor_profile.inc 1 patch
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -4,20 +4,20 @@  discard block
 block discarded – undo
4 4
  * Implementation of hook_ckeditor_profile_defaults().
5 5
  */
6 6
 function boinc_standard_ckeditor_profile_defaults() {
7
-  $data = array(
7
+    $data = array(
8 8
     'Advanced' => array(
9
-      'name' => 'Advanced',
10
-      'settings' => array(
9
+        'name' => 'Advanced',
10
+        'settings' => array(
11 11
         'allow_user_conf' => 'f',
12 12
         'filters' => array(
13
-          'boinctranslate/0' => 0,
14
-          'htmlpurifier/0' => 0,
15
-          'htmlpurifier/1' => 0,
16
-          'filter/3' => 0,
17
-          'filter/0' => 1,
18
-          'image_caption_filter/0' => 0,
19
-          'input_formats/0' => 0,
20
-          'pathologic/0' => 0,
13
+            'boinctranslate/0' => 0,
14
+            'htmlpurifier/0' => 0,
15
+            'htmlpurifier/1' => 0,
16
+            'filter/3' => 0,
17
+            'filter/0' => 1,
18
+            'image_caption_filter/0' => 0,
19
+            'input_formats/0' => 0,
20
+            'pathologic/0' => 0,
21 21
         ),
22 22
         'ss' => '2',
23 23
         'min_rows' => '1',
@@ -56,14 +56,14 @@  discard block
 block discarded – undo
56 56
         'font_format' => 'p;div;pre;address;h1;h2;h3;h4;h5;h6',
57 57
         'custom_formatting' => 'f',
58 58
         'formatting' => array(
59
-          'custom_formatting_options' => array(
59
+            'custom_formatting_options' => array(
60 60
             'indent' => 'indent',
61 61
             'breakBeforeOpen' => 'breakBeforeOpen',
62 62
             'breakAfterOpen' => 'breakAfterOpen',
63 63
             'breakAfterClose' => 'breakAfterClose',
64 64
             'breakBeforeClose' => 0,
65 65
             'pre_indent' => 0,
66
-          ),
66
+            ),
67 67
         ),
68 68
         'css_mode' => 'theme',
69 69
         'css_path' => '',
@@ -80,35 +80,35 @@  discard block
 block discarded – undo
80 80
         'theme_config_js' => 'f',
81 81
         'js_conf' => '',
82 82
         'loadPlugins' => array(
83
-          'drupalbreaks' => array(
83
+            'drupalbreaks' => array(
84 84
             'name' => 'drupalbreaks',
85 85
             'desc' => 'Plugin for inserting Drupal teaser and page breaks.',
86 86
             'path' => '%base_path%%plugin_dir%drupalbreaks/',
87 87
             'buttons' => array(
88
-              'DrupalBreak' => array(
88
+                'DrupalBreak' => array(
89 89
                 'label' => 'DrupalBreak',
90 90
                 'icon' => 'images/drupalbreak.png',
91
-              ),
91
+                ),
92 92
             ),
93 93
             'default' => 't',
94
-          ),
94
+            ),
95 95
         ),
96 96
         'excl_regex' => '',
97 97
         'simple_incl_regex' => '',
98
-      ),
99
-      'roles' => array(),
98
+        ),
99
+        'roles' => array(),
100 100
     ),
101 101
     'CKEditor Global Profile' => array(
102
-      'name' => 'CKEditor Global Profile',
103
-      'settings' => array(
102
+        'name' => 'CKEditor Global Profile',
103
+        'settings' => array(
104 104
         'rank' => array(
105
-          '0' => '3519698132',
106
-          '1' => '2938987599',
107
-          '2' => '1271379760',
108
-          '3' => '1110965548',
109
-          '4' => '933038561',
110
-          '5' => '2',
111
-          '6' => '1',
105
+            '0' => '3519698132',
106
+            '1' => '2938987599',
107
+            '2' => '1271379760',
108
+            '3' => '1110965548',
109
+            '4' => '933038561',
110
+            '5' => '2',
111
+            '6' => '1',
112 112
         ),
113 113
         'excl_mode' => '0',
114 114
         'excl' => 'admin/user/settings.edit-user-mail-*
@@ -159,22 +159,22 @@  discard block
 block discarded – undo
159 159
         'loadPlugins' => array(),
160 160
         'excl_regex' => '#(?:^.*:.*@admin/user/settings\\.edit\\-user\\-mail\\-.*$)|(?:^.*:.*@.*\\.edit\\-pages$)|(?:^.*:.*@.*\\.edit\\-pathauto\\-ignore\\-words$)|(?:^.*:.*@.*\\.edit\\-recipients$)|(?:^.*:.*@.*\\.edit\\-reply$)|(?:^.*:.*@.*\\.edit\\-description$)|(?:^.*:.*@.*\\.edit\\-synonyms$)|(?:^.*:.*@.*\\.edit\\-img\\-assist\\-textareas$)|(?:^.*:.*@.*\\.edit\\-img\\-assist\\-paths$)|(?:^.*:.*@.*\\.edit\\-nodewords\\-description$)|(?:^.*:.*@.*\\.edit\\-nodewords\\-description\\-value$)|(?:^.*:.*@admin/content/nodewords/global.*\\..*$)|(?:^.*:.*@.*\\.edit\\-relatedlinks\\-fieldset\\-relatedlinks$)|(?:^.*:.*@.*\\.edit\\-allowed\\-values\\-php$)|(?:^.*:.*@.*\\.edit\\-allowed\\-values$)|(?:^.*:.*@.*\\.edit\\-update\\-notify\\-emails$)|(?:^.*:.*@.*\\.edit\\-googleanalytics\\-.*$)|(?:^.*:.*@.*\\.edit\\-piwik\\-.*$)|(?:^.*:.*@.*\\.edit\\-feedburner\\-useragents$)|(?:^.*:.*@.*\\.edit\\-webform\\-.*$)|(?:^.*:webform@.*\\.edit\\-extra\\-items$)|(?:^.*:.*@admin/.*/logintoboggan\\..*$)|(?:^.*:.*@admin/settings/actions/configure/.*\\..*$)|(?:^.*:.*@.*\\.edit\\-target$)|(?:^.*:.*@.*\\.edit\\-wysiwyg\\-filter\\-.*$)|(?:^.*:.*@admin/build/views.*\\..*$)#',
161 161
         'simple_incl_regex' => '#(?:^.*:.*@.*\\.edit\\-signature$)|(?:^.*:.*@admin/settings/site\\-information\\..*$)|(?:^.*:.*@admin/settings/site\\-maintenance\\..*$)|(?:^.*:.*@.*\\.edit\\-page\\-help$)|(?:^.*:.*@.*\\.edit\\-user\\-registration\\-help$)|(?:^.*:.*@.*\\.edit\\-user\\-picture\\-guidelines$)#',
162
-      ),
163
-      'roles' => array(),
162
+        ),
163
+        'roles' => array(),
164 164
     ),
165 165
     'Default' => array(
166
-      'name' => 'Default',
167
-      'settings' => array(
166
+        'name' => 'Default',
167
+        'settings' => array(
168 168
         'allow_user_conf' => 'f',
169 169
         'filters' => array(
170
-          'boinctranslate/0' => 0,
171
-          'htmlpurifier/0' => 1,
172
-          'htmlpurifier/1' => 0,
173
-          'filter/3' => 0,
174
-          'filter/0' => 0,
175
-          'image_caption_filter/0' => 1,
176
-          'input_formats/0' => 0,
177
-          'pathologic/0' => 1,
170
+            'boinctranslate/0' => 0,
171
+            'htmlpurifier/0' => 1,
172
+            'htmlpurifier/1' => 0,
173
+            'filter/3' => 0,
174
+            'filter/0' => 0,
175
+            'image_caption_filter/0' => 1,
176
+            'input_formats/0' => 0,
177
+            'pathologic/0' => 1,
178 178
         ),
179 179
         'ss' => '2',
180 180
         'min_rows' => '1',
@@ -213,14 +213,14 @@  discard block
 block discarded – undo
213 213
         'font_format' => 'p;div;pre;address;h1;h2;h3;h4;h5;h6',
214 214
         'custom_formatting' => 'f',
215 215
         'formatting' => array(
216
-          'custom_formatting_options' => array(
216
+            'custom_formatting_options' => array(
217 217
             'indent' => 'indent',
218 218
             'breakBeforeOpen' => 'breakBeforeOpen',
219 219
             'breakAfterOpen' => 'breakAfterOpen',
220 220
             'breakAfterClose' => 'breakAfterClose',
221 221
             'breakBeforeClose' => 0,
222 222
             'pre_indent' => 0,
223
-          ),
223
+            ),
224 224
         ),
225 225
         'css_mode' => 'theme',
226 226
         'css_path' => '',
@@ -237,30 +237,30 @@  discard block
 block discarded – undo
237 237
         'theme_config_js' => 'f',
238 238
         'js_conf' => '',
239 239
         'loadPlugins' => array(
240
-          'drupalbreaks' => array(
240
+            'drupalbreaks' => array(
241 241
             'name' => 'drupalbreaks',
242 242
             'desc' => 'Plugin for inserting Drupal teaser and page breaks.',
243 243
             'path' => '%base_path%%plugin_dir%drupalbreaks/',
244 244
             'buttons' => array(
245
-              'DrupalBreak' => array(
245
+                'DrupalBreak' => array(
246 246
                 'label' => 'DrupalBreak',
247 247
                 'icon' => 'images/drupalbreak.png',
248
-              ),
248
+                ),
249 249
             ),
250 250
             'default' => 't',
251
-          ),
251
+            ),
252 252
         ),
253 253
         'excl_regex' => '',
254 254
         'simple_incl_regex' => '',
255
-      ),
256
-      'roles' => array(
255
+        ),
256
+        'roles' => array(
257 257
         'anonymous user' => 'anonymous user',
258 258
         'authenticated user' => 'authenticated user',
259 259
         'verified contributor' => 'verified contributor',
260 260
         'community member' => 'community member',
261 261
         'moderator' => 'moderator',
262
-      ),
262
+        ),
263 263
     ),
264
-  );
265
-  return $data;
264
+    );
265
+    return $data;
266 266
 }
Please login to merge, or discard this patch.
drupal/sites/all/features/boinc_standard/boinc_standard.input_formats.inc 1 patch
Indentation   +146 added lines, -146 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@  discard block
 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(
9
+    $input_format = new stdClass;
10
+    $input_format->api_version = 1;
11
+    $input_format->name = 'Rich text';
12
+    $input_format->roles = array(
13 13
     1 => 'anonymous user',
14 14
     2 => 'authenticated user',
15 15
     3519698132 => 'administrator',
@@ -18,48 +18,48 @@  discard block
 block discarded – undo
18 18
     268174006 => 'forum control (system use only)',
19 19
     1271379760 => 'moderator',
20 20
     933038561 => 'verified contributor',
21
-  );
22
-  $input_format->cache = FALSE;
23
-  $input_format->settings = array(
21
+    );
22
+    $input_format->cache = FALSE;
23
+    $input_format->settings = array(
24 24
     // Settings for: boinctranslate module
25 25
     'boinctranslate' => array(
26
-      // Print debugging info
27
-      'boinctranslate_filter_debug' => '0',
26
+        // Print debugging info
27
+        'boinctranslate_filter_debug' => '0',
28 28
     ),
29 29
     // Settings for: pathologic module
30 30
     'pathologic' => array(
31
-      // Also considered local
32
-      'filter_pathologic_local_paths' => '/
31
+        // Also considered local
32
+        'filter_pathologic_local_paths' => '/
33 33
 ',
34
-      // Output full absolute URLs
35
-      'filter_pathologic_absolute' => 1,
34
+        // Output full absolute URLs
35
+        'filter_pathologic_absolute' => 1,
36 36
     ),
37 37
     // Settings for: bbcode module
38 38
     'bbcode' => array(
39
-      // Convert addresses to links
40
-      'bbcode_make_links' => '1',
41
-      // Spam link deterrent
42
-      'bbcode_filter_nofollow' => '0',
43
-      // Email address encoding
44
-      'bbcode_encode_mailto' => '0',
45
-      // Email address rewrite
46
-      'bbcode_rewrite_email' => '1',
47
-      // Smart paragraph and line breaks
48
-      'bbcode_paragraph_breaks' => '2',
49
-      // Print debugging info
50
-      'bbcode_debug' => '0',
39
+        // Convert addresses to links
40
+        'bbcode_make_links' => '1',
41
+        // Spam link deterrent
42
+        'bbcode_filter_nofollow' => '0',
43
+        // Email address encoding
44
+        'bbcode_encode_mailto' => '0',
45
+        // Email address rewrite
46
+        'bbcode_rewrite_email' => '1',
47
+        // Smart paragraph and line breaks
48
+        'bbcode_paragraph_breaks' => '2',
49
+        // Print debugging info
50
+        'bbcode_debug' => '0',
51 51
     ),
52 52
     // Settings for: htmlpurifier module
53 53
     'htmlpurifier' => array(
54
-      'htmlpurifier_clear_cac' => array(
55
-          '#description' => NULL,
56
-          '#value' => 'Clear cache (Warning: Can result in performance degradation)',
54
+        'htmlpurifier_clear_cac' => array(
55
+            '#description' => NULL,
56
+            '#value' => 'Clear cache (Warning: Can result in performance degradation)',
57 57
         ),
58
-      // Display help text
59
-      'htmlpurifier_help' => 1,
60
-      'htmlpurifier_config' => array(
61
-          '#description' => NULL,
62
-          '#value' => array(
58
+        // Display help text
59
+        'htmlpurifier_help' => 1,
60
+        'htmlpurifier_config' => array(
61
+            '#description' => NULL,
62
+            '#value' => array(
63 63
             'Attr.EnableID' => '0',
64 64
             'AutoFormat.AutoParagraph' => '1',
65 65
             'AutoFormat.Linkify' => '1',
@@ -72,145 +72,145 @@  discard block
 block discarded – undo
72 72
             'URI.DisableExternalResources' => '0',
73 73
             'URI.DisableResources' => '0',
74 74
             'Null_URI.Munge' => '1',
75
-          ),
75
+            ),
76 76
         ),
77 77
     ),
78 78
     // Settings for: tableofcontents module
79 79
     'tableofcontents' => array(
80
-      // Hide the table of contents tags
81
-      'tableofcontents_hide_table' => 0,
82
-      // Whether an automatic table of content should be added
83
-      'tableofcontents_automatic' => '0',
84
-      // Number of headers before an automatic table of content is added
85
-      'tableofcontents_min_limit' => '5',
86
-      // Remove Table of Contents tags from teasers
87
-      'tableofcontents_remove_teaser' => 1,
88
-      // Allow users to override the settings within the table of contents tag itself
89
-      'tableofcontents_allow_override' => 1,
90
-      // Ensure title is safe (i.e. use check_plain() to avoid XSS attacks.)
91
-      'tableofcontents_safe_title' => 1,
92
-      // Table of Contents Title
93
-      'tableofcontents_title' => 'Table of Contents',
94
-      // Minimum heading level
95
-      'tableofcontents_minlevel' => '2',
96
-      // Maximum heading level
97
-      'tableofcontents_maxlevel' => '3',
98
-      // Include link to hide/show table of contents
99
-      'tableofcontents_hide_show' => 1,
100
-      // Start with the table of content collapsed
101
-      'tableofcontents_collapsed' => 0,
102
-      // Select what is stripped from the header titles
103
-      'tableofcontents_id_stripping' => array(
104
-          'digits' => 0,
105
-          'dashes' => 0,
106
-          'periods' => 0,
107
-          'underscores' => 0,
108
-          'colons' => 0,
80
+        // Hide the table of contents tags
81
+        'tableofcontents_hide_table' => 0,
82
+        // Whether an automatic table of content should be added
83
+        'tableofcontents_automatic' => '0',
84
+        // Number of headers before an automatic table of content is added
85
+        'tableofcontents_min_limit' => '5',
86
+        // Remove Table of Contents tags from teasers
87
+        'tableofcontents_remove_teaser' => 1,
88
+        // Allow users to override the settings within the table of contents tag itself
89
+        'tableofcontents_allow_override' => 1,
90
+        // Ensure title is safe (i.e. use check_plain() to avoid XSS attacks.)
91
+        'tableofcontents_safe_title' => 1,
92
+        // Table of Contents Title
93
+        'tableofcontents_title' => 'Table of Contents',
94
+        // Minimum heading level
95
+        'tableofcontents_minlevel' => '2',
96
+        // Maximum heading level
97
+        'tableofcontents_maxlevel' => '3',
98
+        // Include link to hide/show table of contents
99
+        'tableofcontents_hide_show' => 1,
100
+        // Start with the table of content collapsed
101
+        'tableofcontents_collapsed' => 0,
102
+        // Select what is stripped from the header titles
103
+        'tableofcontents_id_stripping' => array(
104
+            'digits' => 0,
105
+            'dashes' => 0,
106
+            'periods' => 0,
107
+            'underscores' => 0,
108
+            'colons' => 0,
109 109
         ),
110
-      // Identifier introducer
111
-      'tableofcontents_identifier_introducer' => 'header',
112
-      // Identifier and number separator
113
-      'tableofcontents_id_separator' => '-',
114
-      // How to generate missing header identifiers
115
-      'tableofcontents_id_generator' => 'title',
116
-      // List of tags allowed in table headers
117
-      '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>',
118
-      // Show attachments in the table of contents
119
-      'tableofcontents_attachments' => 0,
120
-      // Add the comments to the table of contents
121
-      'tableofcontents_comments' => 0,
122
-      // Select header level at which comments start
123
-      'tableofcontents_comments_level' => '3',
124
-      // Back to top label
125
-      'tableofcontents_back_to_top' => '',
126
-      // Back to top location
127
-      'tableofcontents_back_to_top_location' => 'bottom',
128
-      // Minimum level where Back to Top appears
129
-      'tableofcontents_back_to_top_minlevel' => '2',
130
-      // Maximum level where Back to Top appears
131
-      'tableofcontents_back_to_top_maxlevel' => '4',
132
-      // Back to top anchor
133
-      'tableofcontents_back_to_top_anchor' => 'toc',
134
-      // Scroll back to the table of contents
135
-      'tableofcontents_scroll_back_to_top' => 0,
136
-      // Numbering method
137
-      'tableofcontents_numbering' => '0',
138
-      // Add the number to the headers
139
-      'tableofcontents_number_headers' => 0,
140
-      // Numbering mode
141
-      'tableofcontents_number_mode' => '0',
142
-      // Numbering prefix
143
-      'tableofcontents_number_start_letter' => '',
144
-      // Numbering separator
145
-      'tableofcontents_number_separator' => '.',
146
-      // Numbering suffix
147
-      'tableofcontents_number_end_letter' => '.',
110
+        // Identifier introducer
111
+        'tableofcontents_identifier_introducer' => 'header',
112
+        // Identifier and number separator
113
+        'tableofcontents_id_separator' => '-',
114
+        // How to generate missing header identifiers
115
+        'tableofcontents_id_generator' => 'title',
116
+        // List of tags allowed in table headers
117
+        '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>',
118
+        // Show attachments in the table of contents
119
+        'tableofcontents_attachments' => 0,
120
+        // Add the comments to the table of contents
121
+        'tableofcontents_comments' => 0,
122
+        // Select header level at which comments start
123
+        'tableofcontents_comments_level' => '3',
124
+        // Back to top label
125
+        'tableofcontents_back_to_top' => '',
126
+        // Back to top location
127
+        'tableofcontents_back_to_top_location' => 'bottom',
128
+        // Minimum level where Back to Top appears
129
+        'tableofcontents_back_to_top_minlevel' => '2',
130
+        // Maximum level where Back to Top appears
131
+        'tableofcontents_back_to_top_maxlevel' => '4',
132
+        // Back to top anchor
133
+        'tableofcontents_back_to_top_anchor' => 'toc',
134
+        // Scroll back to the table of contents
135
+        'tableofcontents_scroll_back_to_top' => 0,
136
+        // Numbering method
137
+        'tableofcontents_numbering' => '0',
138
+        // Add the number to the headers
139
+        'tableofcontents_number_headers' => 0,
140
+        // Numbering mode
141
+        'tableofcontents_number_mode' => '0',
142
+        // Numbering prefix
143
+        'tableofcontents_number_start_letter' => '',
144
+        // Numbering separator
145
+        'tableofcontents_number_separator' => '.',
146
+        // Numbering suffix
147
+        'tableofcontents_number_end_letter' => '.',
148 148
     ),
149
-  );
150
-  $input_format->filters = array(
149
+    );
150
+    $input_format->filters = array(
151 151
     'boinctranslate' => array(
152
-      // Delta => Weight for: BOINC translation filter to help split content into chunks for translations.
153
-      '0' => '-10',
152
+        // Delta => Weight for: BOINC translation filter to help split content into chunks for translations.
153
+        '0' => '-10',
154 154
     ),
155 155
     'pathologic' => array(
156
-      // Delta => Weight for: Pathologic
157
-      '0' => '-9',
156
+        // Delta => Weight for: Pathologic
157
+        '0' => '-9',
158 158
     ),
159 159
     'bbcode' => array(
160
-      // Delta => Weight for: BBCode
161
-      '0' => '-8',
160
+        // Delta => Weight for: BBCode
161
+        '0' => '-8',
162 162
     ),
163 163
     'htmlpurifier' => array(
164
-      // Delta => Weight for: HTML Purifier
165
-      '0' => '-7',
164
+        // Delta => Weight for: HTML Purifier
165
+        '0' => '-7',
166 166
     ),
167 167
     'tableofcontents' => array(
168
-      // Delta => Weight for: Table of contents
169
-      '0' => '-6',
168
+        // Delta => Weight for: Table of contents
169
+        '0' => '-6',
170 170
     ),
171 171
     'image_caption_filter' => array(
172
-      // Delta => Weight for: Image caption filter
173
-      '0' => '-5',
172
+        // Delta => Weight for: Image caption filter
173
+        '0' => '-5',
174 174
     ),
175
-  );
176
-  $input_format->machine = 'rich_text';
177
-  $input_formats['rich_text'] = $input_format;
175
+    );
176
+    $input_format->machine = 'rich_text';
177
+    $input_formats['rich_text'] = $input_format;
178 178
 
179
-  $input_format = new stdClass;
180
-  $input_format->api_version = 1;
181
-  $input_format->name = 'Plain text';
182
-  $input_format->roles = array(
179
+    $input_format = new stdClass;
180
+    $input_format->api_version = 1;
181
+    $input_format->name = 'Plain text';
182
+    $input_format->roles = array(
183 183
     3519698132 => 'administrator',
184
-  );
185
-  $input_format->cache = FALSE;
186
-  $input_format->settings = array(
187
-  );
188
-  $input_format->filters = array(
184
+    );
185
+    $input_format->cache = FALSE;
186
+    $input_format->settings = array(
187
+    );
188
+    $input_format->filters = array(
189 189
     'boinctranslate' => array(
190
-      '0' => '10',
190
+        '0' => '10',
191 191
     ),
192 192
     'filter' => array(
193
-      '0' => '10',
193
+        '0' => '10',
194 194
     ),
195
-  );
196
-  $input_format->machine = 'plain_text';
197
-  $input_formats['plain_text'] = $input_format;
195
+    );
196
+    $input_format->machine = 'plain_text';
197
+    $input_formats['plain_text'] = $input_format;
198 198
 
199
-  $input_format = new stdClass;
200
-  $input_format->api_version = 1;
201
-  $input_format->name = 'PHP code';
202
-  $input_format->roles = array();
203
-  $input_format->cache = FALSE;
204
-  $input_format->settings = array(
205
-  );
206
-  $input_format->filters = array(
199
+    $input_format = new stdClass;
200
+    $input_format->api_version = 1;
201
+    $input_format->name = 'PHP code';
202
+    $input_format->roles = array();
203
+    $input_format->cache = FALSE;
204
+    $input_format->settings = array(
205
+    );
206
+    $input_format->filters = array(
207 207
     'php' => array(
208
-      '0' => '0',
208
+        '0' => '0',
209 209
     ),
210
-  );
211
-  $input_format->machine = 'php_code';
212
-  $input_formats['php_code'] = $input_format;
210
+    );
211
+    $input_format->machine = 'php_code';
212
+    $input_formats['php_code'] = $input_format;
213 213
 
214
-  return $input_formats;
214
+    return $input_formats;
215 215
 
216 216
 }
Please login to merge, or discard this patch.
drupal/sites/all/features/boinc_standard/boinc_standard.strongarm.inc 1 patch
Indentation   +1906 added lines, -1906 removed lines patch added patch discarded remove patch
@@ -4,185 +4,185 @@  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 = '0';
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 = '0';
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 = 'bbcode_rewrite_email_4';
90
-  $strongarm->value = '1';
91
-  $export['bbcode_rewrite_email_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 = 'bbcode_rewrite_email_6';
97
-  $strongarm->value = '1';
98
-  $export['bbcode_rewrite_email_6'] = $strongarm;
99
-
100
-  $strongarm = new stdClass;
101
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
102
-  $strongarm->api_version = 1;
103
-  $strongarm->name = 'boinctranslate_filter_debug_4';
104
-  $strongarm->value = '0';
105
-  $export['boinctranslate_filter_debug_4'] = $strongarm;
106
-
107
-  $strongarm = new stdClass;
108
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
109
-  $strongarm->api_version = 1;
110
-  $strongarm->name = 'boinctranslate_filter_nodetypes';
111
-  $strongarm->value = array(
7
+    $export = array();
8
+
9
+    $strongarm = new stdClass;
10
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
11
+    $strongarm->api_version = 1;
12
+    $strongarm->name = 'admin_theme';
13
+    $strongarm->value = 'garland';
14
+    $export['admin_theme'] = $strongarm;
15
+
16
+    $strongarm = new stdClass;
17
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
18
+    $strongarm->api_version = 1;
19
+    $strongarm->name = '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 = '0';
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 = '0';
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 = 'bbcode_rewrite_email_4';
90
+    $strongarm->value = '1';
91
+    $export['bbcode_rewrite_email_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 = 'bbcode_rewrite_email_6';
97
+    $strongarm->value = '1';
98
+    $export['bbcode_rewrite_email_6'] = $strongarm;
99
+
100
+    $strongarm = new stdClass;
101
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
102
+    $strongarm->api_version = 1;
103
+    $strongarm->name = 'boinctranslate_filter_debug_4';
104
+    $strongarm->value = '0';
105
+    $export['boinctranslate_filter_debug_4'] = $strongarm;
106
+
107
+    $strongarm = new stdClass;
108
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
109
+    $strongarm->api_version = 1;
110
+    $strongarm->name = 'boinctranslate_filter_nodetypes';
111
+    $strongarm->value = array(
112 112
     'page' => 'page',
113 113
     'story' => 'story',
114 114
     'news' => 0,
115
-  );
116
-  $export['boinctranslate_filter_nodetypes'] = $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_anonymous_page';
122
-  $strongarm->value = 0;
123
-  $export['comment_anonymous_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_controls_page';
129
-  $strongarm->value = '3';
130
-  $export['comment_controls_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_mode_page';
136
-  $strongarm->value = '4';
137
-  $export['comment_default_mode_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_default_order_page';
143
-  $strongarm->value = '1';
144
-  $export['comment_default_order_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_default_per_page_page';
150
-  $strongarm->value = '50';
151
-  $export['comment_default_per_page_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_form_location_page';
157
-  $strongarm->value = '0';
158
-  $export['comment_form_location_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_page';
164
-  $strongarm->value = 0;
165
-  $export['comment_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 = 'comment_preview_page';
171
-  $strongarm->value = '1';
172
-  $export['comment_preview_page'] = $strongarm;
173
-
174
-  $strongarm = new stdClass;
175
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
176
-  $strongarm->api_version = 1;
177
-  $strongarm->name = 'comment_subject_field_page';
178
-  $strongarm->value = '1';
179
-  $export['comment_subject_field_page'] = $strongarm;
180
-
181
-  $strongarm = new stdClass;
182
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
183
-  $strongarm->api_version = 1;
184
-  $strongarm->name = 'content_extra_weights_page';
185
-  $strongarm->value = array(
115
+    );
116
+    $export['boinctranslate_filter_nodetypes'] = $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_anonymous_page';
122
+    $strongarm->value = 0;
123
+    $export['comment_anonymous_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_controls_page';
129
+    $strongarm->value = '3';
130
+    $export['comment_controls_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_mode_page';
136
+    $strongarm->value = '4';
137
+    $export['comment_default_mode_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_default_order_page';
143
+    $strongarm->value = '1';
144
+    $export['comment_default_order_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_default_per_page_page';
150
+    $strongarm->value = '50';
151
+    $export['comment_default_per_page_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_form_location_page';
157
+    $strongarm->value = '0';
158
+    $export['comment_form_location_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_page';
164
+    $strongarm->value = 0;
165
+    $export['comment_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 = 'comment_preview_page';
171
+    $strongarm->value = '1';
172
+    $export['comment_preview_page'] = $strongarm;
173
+
174
+    $strongarm = new stdClass;
175
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
176
+    $strongarm->api_version = 1;
177
+    $strongarm->name = 'comment_subject_field_page';
178
+    $strongarm->value = '1';
179
+    $export['comment_subject_field_page'] = $strongarm;
180
+
181
+    $strongarm = new stdClass;
182
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
183
+    $strongarm->api_version = 1;
184
+    $strongarm->name = 'content_extra_weights_page';
185
+    $strongarm->value = array(
186 186
     'apachesolr' => '100',
187 187
     'title' => '-5',
188 188
     'body_field' => '0',
@@ -195,71 +195,71 @@  discard block
 block discarded – undo
195 195
     'menu' => '-2',
196 196
     'path' => '30',
197 197
     'attachments' => '30',
198
-  );
199
-  $export['content_extra_weights_page'] = $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 = 'error_level';
205
-  $strongarm->value = '0';
206
-  $export['error_level'] = $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_default_format';
212
-  $strongarm->value = '4';
213
-  $export['filter_default_format'] = $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_absolute_4';
219
-  $strongarm->value = 1;
220
-  $export['filter_pathologic_absolute_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_absolute_6';
226
-  $strongarm->value = 1;
227
-  $export['filter_pathologic_absolute_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 = 'filter_pathologic_local_paths_4';
233
-  $strongarm->value = '/
198
+    );
199
+    $export['content_extra_weights_page'] = $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 = 'error_level';
205
+    $strongarm->value = '0';
206
+    $export['error_level'] = $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_default_format';
212
+    $strongarm->value = '4';
213
+    $export['filter_default_format'] = $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_absolute_4';
219
+    $strongarm->value = 1;
220
+    $export['filter_pathologic_absolute_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_absolute_6';
226
+    $strongarm->value = 1;
227
+    $export['filter_pathologic_absolute_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 = 'filter_pathologic_local_paths_4';
233
+    $strongarm->value = '/
234 234
 ';
235
-  $export['filter_pathologic_local_paths_4'] = $strongarm;
236
-
237
-  $strongarm = new stdClass;
238
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
239
-  $strongarm->api_version = 1;
240
-  $strongarm->name = 'filter_pathologic_local_paths_6';
241
-  $strongarm->value = '/';
242
-  $export['filter_pathologic_local_paths_6'] = $strongarm;
243
-
244
-  $strongarm = new stdClass;
245
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
246
-  $strongarm->api_version = 1;
247
-  $strongarm->name = 'format';
248
-  $strongarm->value = '4';
249
-  $export['format'] = $strongarm;
250
-
251
-  $strongarm = new stdClass;
252
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
253
-  $strongarm->api_version = 1;
254
-  $strongarm->name = 'htmlpurifier_clear_cache';
255
-  $strongarm->value = 'Clear cache (Warning: Can result in performance degradation)';
256
-  $export['htmlpurifier_clear_cache'] = $strongarm;
257
-
258
-  $strongarm = new stdClass;
259
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
260
-  $strongarm->api_version = 1;
261
-  $strongarm->name = 'htmlpurifier_config_4';
262
-  $strongarm->value = array(
235
+    $export['filter_pathologic_local_paths_4'] = $strongarm;
236
+
237
+    $strongarm = new stdClass;
238
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
239
+    $strongarm->api_version = 1;
240
+    $strongarm->name = 'filter_pathologic_local_paths_6';
241
+    $strongarm->value = '/';
242
+    $export['filter_pathologic_local_paths_6'] = $strongarm;
243
+
244
+    $strongarm = new stdClass;
245
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
246
+    $strongarm->api_version = 1;
247
+    $strongarm->name = 'format';
248
+    $strongarm->value = '4';
249
+    $export['format'] = $strongarm;
250
+
251
+    $strongarm = new stdClass;
252
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
253
+    $strongarm->api_version = 1;
254
+    $strongarm->name = 'htmlpurifier_clear_cache';
255
+    $strongarm->value = 'Clear cache (Warning: Can result in performance degradation)';
256
+    $export['htmlpurifier_clear_cache'] = $strongarm;
257
+
258
+    $strongarm = new stdClass;
259
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
260
+    $strongarm->api_version = 1;
261
+    $strongarm->name = 'htmlpurifier_config_4';
262
+    $strongarm->value = array(
263 263
     'Attr.EnableID' => '0',
264 264
     'AutoFormat.AutoParagraph' => '1',
265 265
     'AutoFormat.Linkify' => '1',
@@ -272,1553 +272,1553 @@  discard block
 block discarded – undo
272 272
     'URI.DisableExternalResources' => '0',
273 273
     'URI.DisableResources' => '0',
274 274
     'Null_URI.Munge' => '1',
275
-  );
276
-  $export['htmlpurifier_config_4'] = $strongarm;
277
-
278
-  $strongarm = new stdClass;
279
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
280
-  $strongarm->api_version = 1;
281
-  $strongarm->name = 'htmlpurifier_help_4';
282
-  $strongarm->value = 1;
283
-  $export['htmlpurifier_help_4'] = $strongarm;
284
-
285
-  $strongarm = new stdClass;
286
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
287
-  $strongarm->api_version = 1;
288
-  $strongarm->name = 'htmlpurifier_help_6';
289
-  $strongarm->value = 1;
290
-  $export['htmlpurifier_help_6'] = $strongarm;
291
-
292
-  $strongarm = new stdClass;
293
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
294
-  $strongarm->api_version = 1;
295
-  $strongarm->name = 'htmlpurifier_version_check_failed';
296
-  $strongarm->value = FALSE;
297
-  $export['htmlpurifier_version_check_failed'] = $strongarm;
298
-
299
-  $strongarm = new stdClass;
300
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
301
-  $strongarm->api_version = 1;
302
-  $strongarm->name = 'htmlpurifier_version_current';
303
-  $strongarm->value = '4.9.1';
304
-  $export['htmlpurifier_version_current'] = $strongarm;
305
-
306
-  $strongarm = new stdClass;
307
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
308
-  $strongarm->api_version = 1;
309
-  $strongarm->name = 'htmlpurifier_version_ours';
310
-  $strongarm->value = '4.10.0';
311
-  $export['htmlpurifier_version_ours'] = $strongarm;
312
-
313
-  $strongarm = new stdClass;
314
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
315
-  $strongarm->api_version = 1;
316
-  $strongarm->name = 'imce_profiles';
317
-  $strongarm->value = array(
275
+    );
276
+    $export['htmlpurifier_config_4'] = $strongarm;
277
+
278
+    $strongarm = new stdClass;
279
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
280
+    $strongarm->api_version = 1;
281
+    $strongarm->name = 'htmlpurifier_help_4';
282
+    $strongarm->value = 1;
283
+    $export['htmlpurifier_help_4'] = $strongarm;
284
+
285
+    $strongarm = new stdClass;
286
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
287
+    $strongarm->api_version = 1;
288
+    $strongarm->name = 'htmlpurifier_help_6';
289
+    $strongarm->value = 1;
290
+    $export['htmlpurifier_help_6'] = $strongarm;
291
+
292
+    $strongarm = new stdClass;
293
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
294
+    $strongarm->api_version = 1;
295
+    $strongarm->name = 'htmlpurifier_version_check_failed';
296
+    $strongarm->value = FALSE;
297
+    $export['htmlpurifier_version_check_failed'] = $strongarm;
298
+
299
+    $strongarm = new stdClass;
300
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
301
+    $strongarm->api_version = 1;
302
+    $strongarm->name = 'htmlpurifier_version_current';
303
+    $strongarm->value = '4.9.1';
304
+    $export['htmlpurifier_version_current'] = $strongarm;
305
+
306
+    $strongarm = new stdClass;
307
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
308
+    $strongarm->api_version = 1;
309
+    $strongarm->name = 'htmlpurifier_version_ours';
310
+    $strongarm->value = '4.10.0';
311
+    $export['htmlpurifier_version_ours'] = $strongarm;
312
+
313
+    $strongarm = new stdClass;
314
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
315
+    $strongarm->api_version = 1;
316
+    $strongarm->name = 'imce_profiles';
317
+    $strongarm->value = array(
318 318
     1 => array(
319
-      'name' => 'User-1',
320
-      'usertab' => 1,
321
-      'filesize' => 0,
322
-      'quota' => 0,
323
-      'tuquota' => 0,
324
-      'extensions' => '*',
325
-      'dimensions' => '1200x1200',
326
-      'filenum' => 0,
327
-      'directories' => array(
319
+        'name' => 'User-1',
320
+        'usertab' => 1,
321
+        'filesize' => 0,
322
+        'quota' => 0,
323
+        'tuquota' => 0,
324
+        'extensions' => '*',
325
+        'dimensions' => '1200x1200',
326
+        'filenum' => 0,
327
+        'directories' => array(
328 328
         0 => array(
329
-          'name' => '.',
330
-          'subnav' => 1,
331
-          'browse' => 1,
332
-          'upload' => 1,
333
-          'thumb' => 1,
334
-          'delete' => 1,
335
-          'resize' => 1,
329
+            'name' => '.',
330
+            'subnav' => 1,
331
+            'browse' => 1,
332
+            'upload' => 1,
333
+            'thumb' => 1,
334
+            'delete' => 1,
335
+            'resize' => 1,
336 336
         ),
337
-      ),
338
-      'thumbnails' => array(
337
+        ),
338
+        'thumbnails' => array(
339 339
         0 => array(
340
-          'name' => 'Small',
341
-          'dimensions' => '90x90',
342
-          'prefix' => 'small_',
343
-          'suffix' => '',
340
+            'name' => 'Small',
341
+            'dimensions' => '90x90',
342
+            'prefix' => 'small_',
343
+            'suffix' => '',
344 344
         ),
345 345
         1 => array(
346
-          'name' => 'Medium',
347
-          'dimensions' => '120x120',
348
-          'prefix' => 'medium_',
349
-          'suffix' => '',
346
+            'name' => 'Medium',
347
+            'dimensions' => '120x120',
348
+            'prefix' => 'medium_',
349
+            'suffix' => '',
350 350
         ),
351 351
         2 => array(
352
-          'name' => 'Large',
353
-          'dimensions' => '180x180',
354
-          'prefix' => 'large_',
355
-          'suffix' => '',
352
+            'name' => 'Large',
353
+            'dimensions' => '180x180',
354
+            'prefix' => 'large_',
355
+            'suffix' => '',
356
+        ),
356 357
         ),
357
-      ),
358 358
     ),
359 359
     2 => array(
360
-      'name' => 'Sample profile',
361
-      'usertab' => 1,
362
-      'filesize' => 1,
363
-      'quota' => 2,
364
-      'tuquota' => 0,
365
-      'extensions' => 'gif png jpg jpeg',
366
-      'dimensions' => '800x600',
367
-      'filenum' => 1,
368
-      'directories' => array(
360
+        'name' => 'Sample profile',
361
+        'usertab' => 1,
362
+        'filesize' => 1,
363
+        'quota' => 2,
364
+        'tuquota' => 0,
365
+        'extensions' => 'gif png jpg jpeg',
366
+        'dimensions' => '800x600',
367
+        'filenum' => 1,
368
+        'directories' => array(
369 369
         0 => array(
370
-          'name' => 'u%uid',
371
-          'subnav' => 0,
372
-          'browse' => 1,
373
-          'upload' => 1,
374
-          'thumb' => 1,
375
-          'delete' => 0,
376
-          'resize' => 0,
370
+            'name' => 'u%uid',
371
+            'subnav' => 0,
372
+            'browse' => 1,
373
+            'upload' => 1,
374
+            'thumb' => 1,
375
+            'delete' => 0,
376
+            'resize' => 0,
377
+        ),
377 378
         ),
378
-      ),
379
-      'thumbnails' => array(
379
+        'thumbnails' => array(
380 380
         0 => array(
381
-          'name' => 'Thumb',
382
-          'dimensions' => '90x90',
383
-          'prefix' => 'thumb_',
384
-          'suffix' => '',
381
+            'name' => 'Thumb',
382
+            'dimensions' => '90x90',
383
+            'prefix' => 'thumb_',
384
+            'suffix' => '',
385
+        ),
385 386
         ),
386
-      ),
387 387
     ),
388 388
     3 => array(
389
-      'name' => 'Editor',
390
-      'usertab' => 1,
391
-      'filesize' => '1',
392
-      'quota' => '2',
393
-      'tuquota' => '0',
394
-      'extensions' => 'gif png jpg jpeg',
395
-      'dimensions' => '800x600',
396
-      'filenum' => '1',
397
-      'directories' => array(
389
+        'name' => 'Editor',
390
+        'usertab' => 1,
391
+        'filesize' => '1',
392
+        'quota' => '2',
393
+        'tuquota' => '0',
394
+        'extensions' => 'gif png jpg jpeg',
395
+        'dimensions' => '800x600',
396
+        'filenum' => '1',
397
+        'directories' => array(
398 398
         0 => array(
399
-          'name' => 'u%uid',
400
-          'subnav' => 0,
401
-          'browse' => 1,
402
-          'upload' => 1,
403
-          'thumb' => 1,
404
-          'delete' => 0,
405
-          'resize' => 0,
399
+            'name' => 'u%uid',
400
+            'subnav' => 0,
401
+            'browse' => 1,
402
+            'upload' => 1,
403
+            'thumb' => 1,
404
+            'delete' => 0,
405
+            'resize' => 0,
406
+        ),
406 407
         ),
407
-      ),
408
-      'thumbnails' => array(
408
+        'thumbnails' => array(
409 409
         0 => array(
410
-          'name' => 'Small',
411
-          'dimensions' => '90x90',
412
-          'prefix' => 'small_',
413
-          'suffix' => '',
410
+            'name' => 'Small',
411
+            'dimensions' => '90x90',
412
+            'prefix' => 'small_',
413
+            'suffix' => '',
414 414
         ),
415 415
         1 => array(
416
-          'name' => 'Medium',
417
-          'dimensions' => '120x120',
418
-          'prefix' => 'medium_',
419
-          'suffix' => '',
416
+            'name' => 'Medium',
417
+            'dimensions' => '120x120',
418
+            'prefix' => 'medium_',
419
+            'suffix' => '',
420 420
         ),
421 421
         2 => array(
422
-          'name' => 'Large',
423
-          'dimensions' => '180x180',
424
-          'prefix' => 'large_',
425
-          'suffix' => '',
422
+            'name' => 'Large',
423
+            'dimensions' => '180x180',
424
+            'prefix' => 'large_',
425
+            'suffix' => '',
426
+        ),
426 427
         ),
427
-      ),
428 428
     ),
429
-  );
430
-  $export['imce_profiles'] = $strongarm;
429
+    );
430
+    $export['imce_profiles'] = $strongarm;
431 431
 
432
-  $strongarm = new stdClass;
433
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
434
-  $strongarm->api_version = 1;
435
-  $strongarm->name = 'imce_roles_profiles';
436
-  $strongarm->value = array(
432
+    $strongarm = new stdClass;
433
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
434
+    $strongarm->api_version = 1;
435
+    $strongarm->name = 'imce_roles_profiles';
436
+    $strongarm->value = array(
437 437
     3519698132 => array(
438
-      'weight' => '0',
439
-      'pid' => '0',
438
+        'weight' => '0',
439
+        'pid' => '0',
440 440
     ),
441 441
     1110965548 => array(
442
-      'weight' => '0',
443
-      'pid' => '0',
442
+        'weight' => '0',
443
+        'pid' => '0',
444 444
     ),
445 445
     268174006 => array(
446
-      'weight' => '0',
447
-      'pid' => '0',
446
+        'weight' => '0',
447
+        'pid' => '0',
448 448
     ),
449 449
     2938987599 => array(
450
-      'weight' => '0',
451
-      'pid' => '3',
450
+        'weight' => '0',
451
+        'pid' => '3',
452 452
     ),
453 453
     1257454314 => array(
454
-      'weight' => '0',
455
-      'pid' => '0',
454
+        'weight' => '0',
455
+        'pid' => '0',
456 456
     ),
457 457
     1271379760 => array(
458
-      'weight' => '0',
459
-      'pid' => '0',
458
+        'weight' => '0',
459
+        'pid' => '0',
460 460
     ),
461 461
     933038561 => array(
462
-      'weight' => '0',
463
-      'pid' => '0',
462
+        'weight' => '0',
463
+        'pid' => '0',
464 464
     ),
465 465
     2 => array(
466
-      'weight' => 11,
467
-      'pid' => '0',
466
+        'weight' => 11,
467
+        'pid' => '0',
468 468
     ),
469 469
     1 => array(
470
-      'weight' => 12,
471
-      'pid' => '0',
472
-    ),
473
-  );
474
-  $export['imce_roles_profiles'] = $strongarm;
475
-
476
-  $strongarm = new stdClass;
477
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
478
-  $strongarm->api_version = 1;
479
-  $strongarm->name = 'language_content_type_page';
480
-  $strongarm->value = '2';
481
-  $export['language_content_type_page'] = $strongarm;
482
-
483
-  $strongarm = new stdClass;
484
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
485
-  $strongarm->api_version = 1;
486
-  $strongarm->name = 'menu_block_1_admin_title';
487
-  $strongarm->value = 'Tertiary menu';
488
-  $export['menu_block_1_admin_title'] = $strongarm;
489
-
490
-  $strongarm = new stdClass;
491
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
492
-  $strongarm->api_version = 1;
493
-  $strongarm->name = 'menu_block_1_depth';
494
-  $strongarm->value = '0';
495
-  $export['menu_block_1_depth'] = $strongarm;
496
-
497
-  $strongarm = new stdClass;
498
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
499
-  $strongarm->api_version = 1;
500
-  $strongarm->name = 'menu_block_1_expanded';
501
-  $strongarm->value = 0;
502
-  $export['menu_block_1_expanded'] = $strongarm;
503
-
504
-  $strongarm = new stdClass;
505
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
506
-  $strongarm->api_version = 1;
507
-  $strongarm->name = 'menu_block_1_follow';
508
-  $strongarm->value = 0;
509
-  $export['menu_block_1_follow'] = $strongarm;
510
-
511
-  $strongarm = new stdClass;
512
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
513
-  $strongarm->api_version = 1;
514
-  $strongarm->name = 'menu_block_1_level';
515
-  $strongarm->value = '3';
516
-  $export['menu_block_1_level'] = $strongarm;
517
-
518
-  $strongarm = new stdClass;
519
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
520
-  $strongarm->api_version = 1;
521
-  $strongarm->name = 'menu_block_1_parent';
522
-  $strongarm->value = 'primary-links:0';
523
-  $export['menu_block_1_parent'] = $strongarm;
524
-
525
-  $strongarm = new stdClass;
526
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
527
-  $strongarm->api_version = 1;
528
-  $strongarm->name = 'menu_block_1_sort';
529
-  $strongarm->value = 0;
530
-  $export['menu_block_1_sort'] = $strongarm;
531
-
532
-  $strongarm = new stdClass;
533
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
534
-  $strongarm->api_version = 1;
535
-  $strongarm->name = 'menu_block_1_title_link';
536
-  $strongarm->value = 0;
537
-  $export['menu_block_1_title_link'] = $strongarm;
538
-
539
-  $strongarm = new stdClass;
540
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
541
-  $strongarm->api_version = 1;
542
-  $strongarm->name = 'menu_block_ids';
543
-  $strongarm->value = array(
470
+        'weight' => 12,
471
+        'pid' => '0',
472
+    ),
473
+    );
474
+    $export['imce_roles_profiles'] = $strongarm;
475
+
476
+    $strongarm = new stdClass;
477
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
478
+    $strongarm->api_version = 1;
479
+    $strongarm->name = 'language_content_type_page';
480
+    $strongarm->value = '2';
481
+    $export['language_content_type_page'] = $strongarm;
482
+
483
+    $strongarm = new stdClass;
484
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
485
+    $strongarm->api_version = 1;
486
+    $strongarm->name = 'menu_block_1_admin_title';
487
+    $strongarm->value = 'Tertiary menu';
488
+    $export['menu_block_1_admin_title'] = $strongarm;
489
+
490
+    $strongarm = new stdClass;
491
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
492
+    $strongarm->api_version = 1;
493
+    $strongarm->name = 'menu_block_1_depth';
494
+    $strongarm->value = '0';
495
+    $export['menu_block_1_depth'] = $strongarm;
496
+
497
+    $strongarm = new stdClass;
498
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
499
+    $strongarm->api_version = 1;
500
+    $strongarm->name = 'menu_block_1_expanded';
501
+    $strongarm->value = 0;
502
+    $export['menu_block_1_expanded'] = $strongarm;
503
+
504
+    $strongarm = new stdClass;
505
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
506
+    $strongarm->api_version = 1;
507
+    $strongarm->name = 'menu_block_1_follow';
508
+    $strongarm->value = 0;
509
+    $export['menu_block_1_follow'] = $strongarm;
510
+
511
+    $strongarm = new stdClass;
512
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
513
+    $strongarm->api_version = 1;
514
+    $strongarm->name = 'menu_block_1_level';
515
+    $strongarm->value = '3';
516
+    $export['menu_block_1_level'] = $strongarm;
517
+
518
+    $strongarm = new stdClass;
519
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
520
+    $strongarm->api_version = 1;
521
+    $strongarm->name = 'menu_block_1_parent';
522
+    $strongarm->value = 'primary-links:0';
523
+    $export['menu_block_1_parent'] = $strongarm;
524
+
525
+    $strongarm = new stdClass;
526
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
527
+    $strongarm->api_version = 1;
528
+    $strongarm->name = 'menu_block_1_sort';
529
+    $strongarm->value = 0;
530
+    $export['menu_block_1_sort'] = $strongarm;
531
+
532
+    $strongarm = new stdClass;
533
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
534
+    $strongarm->api_version = 1;
535
+    $strongarm->name = 'menu_block_1_title_link';
536
+    $strongarm->value = 0;
537
+    $export['menu_block_1_title_link'] = $strongarm;
538
+
539
+    $strongarm = new stdClass;
540
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
541
+    $strongarm->api_version = 1;
542
+    $strongarm->name = 'menu_block_ids';
543
+    $strongarm->value = array(
544 544
     0 => 1,
545
-  );
546
-  $export['menu_block_ids'] = $strongarm;
547
-
548
-  $strongarm = new stdClass;
549
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
550
-  $strongarm->api_version = 1;
551
-  $strongarm->name = 'menu_default_node_menu';
552
-  $strongarm->value = 'primary-links';
553
-  $export['menu_default_node_menu'] = $strongarm;
554
-
555
-  $strongarm = new stdClass;
556
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
557
-  $strongarm->api_version = 1;
558
-  $strongarm->name = 'menu_expanded';
559
-  $strongarm->value = array(
545
+    );
546
+    $export['menu_block_ids'] = $strongarm;
547
+
548
+    $strongarm = new stdClass;
549
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
550
+    $strongarm->api_version = 1;
551
+    $strongarm->name = 'menu_default_node_menu';
552
+    $strongarm->value = 'primary-links';
553
+    $export['menu_default_node_menu'] = $strongarm;
554
+
555
+    $strongarm = new stdClass;
556
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
557
+    $strongarm->api_version = 1;
558
+    $strongarm->name = 'menu_expanded';
559
+    $strongarm->value = array(
560 560
     0 => 'primary-links',
561
-  );
562
-  $export['menu_expanded'] = $strongarm;
563
-
564
-  $strongarm = new stdClass;
565
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
566
-  $strongarm->api_version = 1;
567
-  $strongarm->name = 'menu_primary_links_source';
568
-  $strongarm->value = 'primary-links';
569
-  $export['menu_primary_links_source'] = $strongarm;
570
-
571
-  $strongarm = new stdClass;
572
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
573
-  $strongarm->api_version = 1;
574
-  $strongarm->name = 'menu_secondary_links_source';
575
-  $strongarm->value = 'primary-links';
576
-  $export['menu_secondary_links_source'] = $strongarm;
577
-
578
-  $strongarm = new stdClass;
579
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
580
-  $strongarm->api_version = 1;
581
-  $strongarm->name = 'node_admin_theme';
582
-  $strongarm->value = 0;
583
-  $export['node_admin_theme'] = $strongarm;
584
-
585
-  $strongarm = new stdClass;
586
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
587
-  $strongarm->api_version = 1;
588
-  $strongarm->name = 'node_options_page';
589
-  $strongarm->value = array(
561
+    );
562
+    $export['menu_expanded'] = $strongarm;
563
+
564
+    $strongarm = new stdClass;
565
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
566
+    $strongarm->api_version = 1;
567
+    $strongarm->name = 'menu_primary_links_source';
568
+    $strongarm->value = 'primary-links';
569
+    $export['menu_primary_links_source'] = $strongarm;
570
+
571
+    $strongarm = new stdClass;
572
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
573
+    $strongarm->api_version = 1;
574
+    $strongarm->name = 'menu_secondary_links_source';
575
+    $strongarm->value = 'primary-links';
576
+    $export['menu_secondary_links_source'] = $strongarm;
577
+
578
+    $strongarm = new stdClass;
579
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
580
+    $strongarm->api_version = 1;
581
+    $strongarm->name = 'node_admin_theme';
582
+    $strongarm->value = 0;
583
+    $export['node_admin_theme'] = $strongarm;
584
+
585
+    $strongarm = new stdClass;
586
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
587
+    $strongarm->api_version = 1;
588
+    $strongarm->name = 'node_options_page';
589
+    $strongarm->value = array(
590 590
     0 => 'status',
591
-  );
592
-  $export['node_options_page'] = $strongarm;
593
-
594
-  $strongarm = new stdClass;
595
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
596
-  $strongarm->api_version = 1;
597
-  $strongarm->name = 'page_manager_user_view_disabled';
598
-  $strongarm->value = FALSE;
599
-  $export['page_manager_user_view_disabled'] = $strongarm;
600
-
601
-  $strongarm = new stdClass;
602
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
603
-  $strongarm->api_version = 1;
604
-  $strongarm->name = 'panels_legacy_rendering_mode';
605
-  $strongarm->value = FALSE;
606
-  $export['panels_legacy_rendering_mode'] = $strongarm;
607
-
608
-  $strongarm = new stdClass;
609
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
610
-  $strongarm->api_version = 1;
611
-  $strongarm->name = 'pathauto_ignore_words';
612
-  $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';
613
-  $export['pathauto_ignore_words'] = $strongarm;
614
-
615
-  $strongarm = new stdClass;
616
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
617
-  $strongarm->api_version = 1;
618
-  $strongarm->name = 'pathauto_indexaliases';
619
-  $strongarm->value = FALSE;
620
-  $export['pathauto_indexaliases'] = $strongarm;
621
-
622
-  $strongarm = new stdClass;
623
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
624
-  $strongarm->api_version = 1;
625
-  $strongarm->name = 'pathauto_indexaliases_bulkupdate';
626
-  $strongarm->value = FALSE;
627
-  $export['pathauto_indexaliases_bulkupdate'] = $strongarm;
628
-
629
-  $strongarm = new stdClass;
630
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
631
-  $strongarm->api_version = 1;
632
-  $strongarm->name = 'pathauto_max_component_length';
633
-  $strongarm->value = '100';
634
-  $export['pathauto_max_component_length'] = $strongarm;
635
-
636
-  $strongarm = new stdClass;
637
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
638
-  $strongarm->api_version = 1;
639
-  $strongarm->name = 'pathauto_max_length';
640
-  $strongarm->value = '100';
641
-  $export['pathauto_max_length'] = $strongarm;
642
-
643
-  $strongarm = new stdClass;
644
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
645
-  $strongarm->api_version = 1;
646
-  $strongarm->name = 'pathauto_modulelist';
647
-  $strongarm->value = array(
591
+    );
592
+    $export['node_options_page'] = $strongarm;
593
+
594
+    $strongarm = new stdClass;
595
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
596
+    $strongarm->api_version = 1;
597
+    $strongarm->name = 'page_manager_user_view_disabled';
598
+    $strongarm->value = FALSE;
599
+    $export['page_manager_user_view_disabled'] = $strongarm;
600
+
601
+    $strongarm = new stdClass;
602
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
603
+    $strongarm->api_version = 1;
604
+    $strongarm->name = 'panels_legacy_rendering_mode';
605
+    $strongarm->value = FALSE;
606
+    $export['panels_legacy_rendering_mode'] = $strongarm;
607
+
608
+    $strongarm = new stdClass;
609
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
610
+    $strongarm->api_version = 1;
611
+    $strongarm->name = 'pathauto_ignore_words';
612
+    $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';
613
+    $export['pathauto_ignore_words'] = $strongarm;
614
+
615
+    $strongarm = new stdClass;
616
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
617
+    $strongarm->api_version = 1;
618
+    $strongarm->name = 'pathauto_indexaliases';
619
+    $strongarm->value = FALSE;
620
+    $export['pathauto_indexaliases'] = $strongarm;
621
+
622
+    $strongarm = new stdClass;
623
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
624
+    $strongarm->api_version = 1;
625
+    $strongarm->name = 'pathauto_indexaliases_bulkupdate';
626
+    $strongarm->value = FALSE;
627
+    $export['pathauto_indexaliases_bulkupdate'] = $strongarm;
628
+
629
+    $strongarm = new stdClass;
630
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
631
+    $strongarm->api_version = 1;
632
+    $strongarm->name = 'pathauto_max_component_length';
633
+    $strongarm->value = '100';
634
+    $export['pathauto_max_component_length'] = $strongarm;
635
+
636
+    $strongarm = new stdClass;
637
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
638
+    $strongarm->api_version = 1;
639
+    $strongarm->name = 'pathauto_max_length';
640
+    $strongarm->value = '100';
641
+    $export['pathauto_max_length'] = $strongarm;
642
+
643
+    $strongarm = new stdClass;
644
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
645
+    $strongarm->api_version = 1;
646
+    $strongarm->name = 'pathauto_modulelist';
647
+    $strongarm->value = array(
648 648
     0 => 'node',
649 649
     1 => 'user',
650 650
     2 => 'taxonomy',
651
-  );
652
-  $export['pathauto_modulelist'] = $strongarm;
653
-
654
-  $strongarm = new stdClass;
655
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
656
-  $strongarm->api_version = 1;
657
-  $strongarm->name = 'pathauto_node_applytofeeds';
658
-  $strongarm->value = '';
659
-  $export['pathauto_node_applytofeeds'] = $strongarm;
660
-
661
-  $strongarm = new stdClass;
662
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
663
-  $strongarm->api_version = 1;
664
-  $strongarm->name = 'pathauto_node_bulkupdate';
665
-  $strongarm->value = FALSE;
666
-  $export['pathauto_node_bulkupdate'] = $strongarm;
667
-
668
-  $strongarm = new stdClass;
669
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
670
-  $strongarm->api_version = 1;
671
-  $strongarm->name = 'pathauto_node_image_pattern';
672
-  $strongarm->value = '';
673
-  $export['pathauto_node_image_pattern'] = $strongarm;
674
-
675
-  $strongarm = new stdClass;
676
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
677
-  $strongarm->api_version = 1;
678
-  $strongarm->name = 'pathauto_node_page_pattern';
679
-  $strongarm->value = '';
680
-  $export['pathauto_node_page_pattern'] = $strongarm;
681
-
682
-  $strongarm = new stdClass;
683
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
684
-  $strongarm->api_version = 1;
685
-  $strongarm->name = 'pathauto_node_pattern';
686
-  $strongarm->value = 'content/[title-raw]';
687
-  $export['pathauto_node_pattern'] = $strongarm;
688
-
689
-  $strongarm = new stdClass;
690
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
691
-  $strongarm->api_version = 1;
692
-  $strongarm->name = 'pathauto_node_story_pattern';
693
-  $strongarm->value = '';
694
-  $export['pathauto_node_story_pattern'] = $strongarm;
695
-
696
-  $strongarm = new stdClass;
697
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
698
-  $strongarm->api_version = 1;
699
-  $strongarm->name = 'pathauto_punctuation_hyphen';
700
-  $strongarm->value = 1;
701
-  $export['pathauto_punctuation_hyphen'] = $strongarm;
702
-
703
-  $strongarm = new stdClass;
704
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
705
-  $strongarm->api_version = 1;
706
-  $strongarm->name = 'pathauto_punctuation_quotes';
707
-  $strongarm->value = 0;
708
-  $export['pathauto_punctuation_quotes'] = $strongarm;
709
-
710
-  $strongarm = new stdClass;
711
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
712
-  $strongarm->api_version = 1;
713
-  $strongarm->name = 'pathauto_separator';
714
-  $strongarm->value = '-';
715
-  $export['pathauto_separator'] = $strongarm;
716
-
717
-  $strongarm = new stdClass;
718
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
719
-  $strongarm->api_version = 1;
720
-  $strongarm->name = 'pathauto_taxonomy_2_pattern';
721
-  $strongarm->value = '';
722
-  $export['pathauto_taxonomy_2_pattern'] = $strongarm;
723
-
724
-  $strongarm = new stdClass;
725
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
726
-  $strongarm->api_version = 1;
727
-  $strongarm->name = 'pathauto_taxonomy_applytofeeds';
728
-  $strongarm->value = FALSE;
729
-  $export['pathauto_taxonomy_applytofeeds'] = $strongarm;
730
-
731
-  $strongarm = new stdClass;
732
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
733
-  $strongarm->api_version = 1;
734
-  $strongarm->name = 'pathauto_taxonomy_bulkupdate';
735
-  $strongarm->value = FALSE;
736
-  $export['pathauto_taxonomy_bulkupdate'] = $strongarm;
737
-
738
-  $strongarm = new stdClass;
739
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
740
-  $strongarm->api_version = 1;
741
-  $strongarm->name = 'pathauto_taxonomy_pattern';
742
-  $strongarm->value = 'category/[vocab-raw]/[catpath-raw]';
743
-  $export['pathauto_taxonomy_pattern'] = $strongarm;
744
-
745
-  $strongarm = new stdClass;
746
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
747
-  $strongarm->api_version = 1;
748
-  $strongarm->name = 'pathauto_taxonomy_supportsfeeds';
749
-  $strongarm->value = '0/feed';
750
-  $export['pathauto_taxonomy_supportsfeeds'] = $strongarm;
751
-
752
-  $strongarm = new stdClass;
753
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
754
-  $strongarm->api_version = 1;
755
-  $strongarm->name = 'pathauto_update_action';
756
-  $strongarm->value = '2';
757
-  $export['pathauto_update_action'] = $strongarm;
758
-
759
-  $strongarm = new stdClass;
760
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
761
-  $strongarm->api_version = 1;
762
-  $strongarm->name = 'pathauto_user_bulkupdate';
763
-  $strongarm->value = FALSE;
764
-  $export['pathauto_user_bulkupdate'] = $strongarm;
765
-
766
-  $strongarm = new stdClass;
767
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
768
-  $strongarm->api_version = 1;
769
-  $strongarm->name = 'pathauto_user_pattern';
770
-  $strongarm->value = 'users/[user-raw]';
771
-  $export['pathauto_user_pattern'] = $strongarm;
772
-
773
-  $strongarm = new stdClass;
774
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
775
-  $strongarm->api_version = 1;
776
-  $strongarm->name = 'pathauto_user_supportsfeeds';
777
-  $strongarm->value = '';
778
-  $export['pathauto_user_supportsfeeds'] = $strongarm;
779
-
780
-  $strongarm = new stdClass;
781
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
782
-  $strongarm->api_version = 1;
783
-  $strongarm->name = 'pathauto_verbose';
784
-  $strongarm->value = FALSE;
785
-  $export['pathauto_verbose'] = $strongarm;
786
-
787
-  $strongarm = new stdClass;
788
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
789
-  $strongarm->api_version = 1;
790
-  $strongarm->name = 'site_frontpage';
791
-  $strongarm->value = 'home';
792
-  $export['site_frontpage'] = $strongarm;
793
-
794
-  $strongarm = new stdClass;
795
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
796
-  $strongarm->api_version = 1;
797
-  $strongarm->name = 'tableofcontents_allowed_tags_4';
798
-  $strongarm->value = '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>';
799
-  $export['tableofcontents_allowed_tags_4'] = $strongarm;
800
-
801
-  $strongarm = new stdClass;
802
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
803
-  $strongarm->api_version = 1;
804
-  $strongarm->name = 'tableofcontents_allowed_tags_6';
805
-  $strongarm->value = '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>';
806
-  $export['tableofcontents_allowed_tags_6'] = $strongarm;
807
-
808
-  $strongarm = new stdClass;
809
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
810
-  $strongarm->api_version = 1;
811
-  $strongarm->name = 'tableofcontents_allow_override_4';
812
-  $strongarm->value = 1;
813
-  $export['tableofcontents_allow_override_4'] = $strongarm;
814
-
815
-  $strongarm = new stdClass;
816
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
817
-  $strongarm->api_version = 1;
818
-  $strongarm->name = 'tableofcontents_allow_override_6';
819
-  $strongarm->value = 1;
820
-  $export['tableofcontents_allow_override_6'] = $strongarm;
821
-
822
-  $strongarm = new stdClass;
823
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
824
-  $strongarm->api_version = 1;
825
-  $strongarm->name = 'tableofcontents_attachments_4';
826
-  $strongarm->value = 0;
827
-  $export['tableofcontents_attachments_4'] = $strongarm;
828
-
829
-  $strongarm = new stdClass;
830
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
831
-  $strongarm->api_version = 1;
832
-  $strongarm->name = 'tableofcontents_automatic_4';
833
-  $strongarm->value = '0';
834
-  $export['tableofcontents_automatic_4'] = $strongarm;
835
-
836
-  $strongarm = new stdClass;
837
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
838
-  $strongarm->api_version = 1;
839
-  $strongarm->name = 'tableofcontents_automatic_6';
840
-  $strongarm->value = '0';
841
-  $export['tableofcontents_automatic_6'] = $strongarm;
842
-
843
-  $strongarm = new stdClass;
844
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
845
-  $strongarm->api_version = 1;
846
-  $strongarm->name = 'tableofcontents_back_to_top_4';
847
-  $strongarm->value = '';
848
-  $export['tableofcontents_back_to_top_4'] = $strongarm;
849
-
850
-  $strongarm = new stdClass;
851
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
852
-  $strongarm->api_version = 1;
853
-  $strongarm->name = 'tableofcontents_back_to_top_6';
854
-  $strongarm->value = '';
855
-  $export['tableofcontents_back_to_top_6'] = $strongarm;
856
-
857
-  $strongarm = new stdClass;
858
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
859
-  $strongarm->api_version = 1;
860
-  $strongarm->name = 'tableofcontents_back_to_top_anchor_4';
861
-  $strongarm->value = 'toc';
862
-  $export['tableofcontents_back_to_top_anchor_4'] = $strongarm;
863
-
864
-  $strongarm = new stdClass;
865
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
866
-  $strongarm->api_version = 1;
867
-  $strongarm->name = 'tableofcontents_back_to_top_anchor_6';
868
-  $strongarm->value = 'toc';
869
-  $export['tableofcontents_back_to_top_anchor_6'] = $strongarm;
870
-
871
-  $strongarm = new stdClass;
872
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
873
-  $strongarm->api_version = 1;
874
-  $strongarm->name = 'tableofcontents_back_to_top_location_4';
875
-  $strongarm->value = 'bottom';
876
-  $export['tableofcontents_back_to_top_location_4'] = $strongarm;
877
-
878
-  $strongarm = new stdClass;
879
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
880
-  $strongarm->api_version = 1;
881
-  $strongarm->name = 'tableofcontents_back_to_top_location_6';
882
-  $strongarm->value = 'bottom';
883
-  $export['tableofcontents_back_to_top_location_6'] = $strongarm;
884
-
885
-  $strongarm = new stdClass;
886
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
887
-  $strongarm->api_version = 1;
888
-  $strongarm->name = 'tableofcontents_back_to_top_maxlevel_4';
889
-  $strongarm->value = '4';
890
-  $export['tableofcontents_back_to_top_maxlevel_4'] = $strongarm;
891
-
892
-  $strongarm = new stdClass;
893
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
894
-  $strongarm->api_version = 1;
895
-  $strongarm->name = 'tableofcontents_back_to_top_maxlevel_6';
896
-  $strongarm->value = '4';
897
-  $export['tableofcontents_back_to_top_maxlevel_6'] = $strongarm;
898
-
899
-  $strongarm = new stdClass;
900
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
901
-  $strongarm->api_version = 1;
902
-  $strongarm->name = 'tableofcontents_back_to_top_minlevel_4';
903
-  $strongarm->value = '2';
904
-  $export['tableofcontents_back_to_top_minlevel_4'] = $strongarm;
905
-
906
-  $strongarm = new stdClass;
907
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
908
-  $strongarm->api_version = 1;
909
-  $strongarm->name = 'tableofcontents_back_to_top_minlevel_6';
910
-  $strongarm->value = '2';
911
-  $export['tableofcontents_back_to_top_minlevel_6'] = $strongarm;
912
-
913
-  $strongarm = new stdClass;
914
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
915
-  $strongarm->api_version = 1;
916
-  $strongarm->name = 'tableofcontents_collapsed_4';
917
-  $strongarm->value = 0;
918
-  $export['tableofcontents_collapsed_4'] = $strongarm;
919
-
920
-  $strongarm = new stdClass;
921
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
922
-  $strongarm->api_version = 1;
923
-  $strongarm->name = 'tableofcontents_collapsed_6';
924
-  $strongarm->value = 0;
925
-  $export['tableofcontents_collapsed_6'] = $strongarm;
926
-
927
-  $strongarm = new stdClass;
928
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
929
-  $strongarm->api_version = 1;
930
-  $strongarm->name = 'tableofcontents_comments_4';
931
-  $strongarm->value = 0;
932
-  $export['tableofcontents_comments_4'] = $strongarm;
933
-
934
-  $strongarm = new stdClass;
935
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
936
-  $strongarm->api_version = 1;
937
-  $strongarm->name = 'tableofcontents_comments_6';
938
-  $strongarm->value = 0;
939
-  $export['tableofcontents_comments_6'] = $strongarm;
940
-
941
-  $strongarm = new stdClass;
942
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
943
-  $strongarm->api_version = 1;
944
-  $strongarm->name = 'tableofcontents_comments_level_4';
945
-  $strongarm->value = '3';
946
-  $export['tableofcontents_comments_level_4'] = $strongarm;
947
-
948
-  $strongarm = new stdClass;
949
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
950
-  $strongarm->api_version = 1;
951
-  $strongarm->name = 'tableofcontents_comments_level_6';
952
-  $strongarm->value = '3';
953
-  $export['tableofcontents_comments_level_6'] = $strongarm;
954
-
955
-  $strongarm = new stdClass;
956
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
957
-  $strongarm->api_version = 1;
958
-  $strongarm->name = 'tableofcontents_hide_show_4';
959
-  $strongarm->value = 1;
960
-  $export['tableofcontents_hide_show_4'] = $strongarm;
961
-
962
-  $strongarm = new stdClass;
963
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
964
-  $strongarm->api_version = 1;
965
-  $strongarm->name = 'tableofcontents_hide_show_6';
966
-  $strongarm->value = 1;
967
-  $export['tableofcontents_hide_show_6'] = $strongarm;
968
-
969
-  $strongarm = new stdClass;
970
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
971
-  $strongarm->api_version = 1;
972
-  $strongarm->name = 'tableofcontents_hide_table_4';
973
-  $strongarm->value = 0;
974
-  $export['tableofcontents_hide_table_4'] = $strongarm;
975
-
976
-  $strongarm = new stdClass;
977
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
978
-  $strongarm->api_version = 1;
979
-  $strongarm->name = 'tableofcontents_hide_table_6';
980
-  $strongarm->value = 0;
981
-  $export['tableofcontents_hide_table_6'] = $strongarm;
982
-
983
-  $strongarm = new stdClass;
984
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
985
-  $strongarm->api_version = 1;
986
-  $strongarm->name = 'tableofcontents_identifier_introducer_4';
987
-  $strongarm->value = 'header';
988
-  $export['tableofcontents_identifier_introducer_4'] = $strongarm;
989
-
990
-  $strongarm = new stdClass;
991
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
992
-  $strongarm->api_version = 1;
993
-  $strongarm->name = 'tableofcontents_identifier_introducer_6';
994
-  $strongarm->value = 'header';
995
-  $export['tableofcontents_identifier_introducer_6'] = $strongarm;
996
-
997
-  $strongarm = new stdClass;
998
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
999
-  $strongarm->api_version = 1;
1000
-  $strongarm->name = 'tableofcontents_id_generator_4';
1001
-  $strongarm->value = 'title';
1002
-  $export['tableofcontents_id_generator_4'] = $strongarm;
1003
-
1004
-  $strongarm = new stdClass;
1005
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1006
-  $strongarm->api_version = 1;
1007
-  $strongarm->name = 'tableofcontents_id_generator_6';
1008
-  $strongarm->value = 'title';
1009
-  $export['tableofcontents_id_generator_6'] = $strongarm;
1010
-
1011
-  $strongarm = new stdClass;
1012
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1013
-  $strongarm->api_version = 1;
1014
-  $strongarm->name = 'tableofcontents_id_separator_4';
1015
-  $strongarm->value = '-';
1016
-  $export['tableofcontents_id_separator_4'] = $strongarm;
1017
-
1018
-  $strongarm = new stdClass;
1019
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1020
-  $strongarm->api_version = 1;
1021
-  $strongarm->name = 'tableofcontents_id_separator_6';
1022
-  $strongarm->value = '-';
1023
-  $export['tableofcontents_id_separator_6'] = $strongarm;
1024
-
1025
-  $strongarm = new stdClass;
1026
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1027
-  $strongarm->api_version = 1;
1028
-  $strongarm->name = 'tableofcontents_id_stripping_4';
1029
-  $strongarm->value = array(
651
+    );
652
+    $export['pathauto_modulelist'] = $strongarm;
653
+
654
+    $strongarm = new stdClass;
655
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
656
+    $strongarm->api_version = 1;
657
+    $strongarm->name = 'pathauto_node_applytofeeds';
658
+    $strongarm->value = '';
659
+    $export['pathauto_node_applytofeeds'] = $strongarm;
660
+
661
+    $strongarm = new stdClass;
662
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
663
+    $strongarm->api_version = 1;
664
+    $strongarm->name = 'pathauto_node_bulkupdate';
665
+    $strongarm->value = FALSE;
666
+    $export['pathauto_node_bulkupdate'] = $strongarm;
667
+
668
+    $strongarm = new stdClass;
669
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
670
+    $strongarm->api_version = 1;
671
+    $strongarm->name = 'pathauto_node_image_pattern';
672
+    $strongarm->value = '';
673
+    $export['pathauto_node_image_pattern'] = $strongarm;
674
+
675
+    $strongarm = new stdClass;
676
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
677
+    $strongarm->api_version = 1;
678
+    $strongarm->name = 'pathauto_node_page_pattern';
679
+    $strongarm->value = '';
680
+    $export['pathauto_node_page_pattern'] = $strongarm;
681
+
682
+    $strongarm = new stdClass;
683
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
684
+    $strongarm->api_version = 1;
685
+    $strongarm->name = 'pathauto_node_pattern';
686
+    $strongarm->value = 'content/[title-raw]';
687
+    $export['pathauto_node_pattern'] = $strongarm;
688
+
689
+    $strongarm = new stdClass;
690
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
691
+    $strongarm->api_version = 1;
692
+    $strongarm->name = 'pathauto_node_story_pattern';
693
+    $strongarm->value = '';
694
+    $export['pathauto_node_story_pattern'] = $strongarm;
695
+
696
+    $strongarm = new stdClass;
697
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
698
+    $strongarm->api_version = 1;
699
+    $strongarm->name = 'pathauto_punctuation_hyphen';
700
+    $strongarm->value = 1;
701
+    $export['pathauto_punctuation_hyphen'] = $strongarm;
702
+
703
+    $strongarm = new stdClass;
704
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
705
+    $strongarm->api_version = 1;
706
+    $strongarm->name = 'pathauto_punctuation_quotes';
707
+    $strongarm->value = 0;
708
+    $export['pathauto_punctuation_quotes'] = $strongarm;
709
+
710
+    $strongarm = new stdClass;
711
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
712
+    $strongarm->api_version = 1;
713
+    $strongarm->name = 'pathauto_separator';
714
+    $strongarm->value = '-';
715
+    $export['pathauto_separator'] = $strongarm;
716
+
717
+    $strongarm = new stdClass;
718
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
719
+    $strongarm->api_version = 1;
720
+    $strongarm->name = 'pathauto_taxonomy_2_pattern';
721
+    $strongarm->value = '';
722
+    $export['pathauto_taxonomy_2_pattern'] = $strongarm;
723
+
724
+    $strongarm = new stdClass;
725
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
726
+    $strongarm->api_version = 1;
727
+    $strongarm->name = 'pathauto_taxonomy_applytofeeds';
728
+    $strongarm->value = FALSE;
729
+    $export['pathauto_taxonomy_applytofeeds'] = $strongarm;
730
+
731
+    $strongarm = new stdClass;
732
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
733
+    $strongarm->api_version = 1;
734
+    $strongarm->name = 'pathauto_taxonomy_bulkupdate';
735
+    $strongarm->value = FALSE;
736
+    $export['pathauto_taxonomy_bulkupdate'] = $strongarm;
737
+
738
+    $strongarm = new stdClass;
739
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
740
+    $strongarm->api_version = 1;
741
+    $strongarm->name = 'pathauto_taxonomy_pattern';
742
+    $strongarm->value = 'category/[vocab-raw]/[catpath-raw]';
743
+    $export['pathauto_taxonomy_pattern'] = $strongarm;
744
+
745
+    $strongarm = new stdClass;
746
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
747
+    $strongarm->api_version = 1;
748
+    $strongarm->name = 'pathauto_taxonomy_supportsfeeds';
749
+    $strongarm->value = '0/feed';
750
+    $export['pathauto_taxonomy_supportsfeeds'] = $strongarm;
751
+
752
+    $strongarm = new stdClass;
753
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
754
+    $strongarm->api_version = 1;
755
+    $strongarm->name = 'pathauto_update_action';
756
+    $strongarm->value = '2';
757
+    $export['pathauto_update_action'] = $strongarm;
758
+
759
+    $strongarm = new stdClass;
760
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
761
+    $strongarm->api_version = 1;
762
+    $strongarm->name = 'pathauto_user_bulkupdate';
763
+    $strongarm->value = FALSE;
764
+    $export['pathauto_user_bulkupdate'] = $strongarm;
765
+
766
+    $strongarm = new stdClass;
767
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
768
+    $strongarm->api_version = 1;
769
+    $strongarm->name = 'pathauto_user_pattern';
770
+    $strongarm->value = 'users/[user-raw]';
771
+    $export['pathauto_user_pattern'] = $strongarm;
772
+
773
+    $strongarm = new stdClass;
774
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
775
+    $strongarm->api_version = 1;
776
+    $strongarm->name = 'pathauto_user_supportsfeeds';
777
+    $strongarm->value = '';
778
+    $export['pathauto_user_supportsfeeds'] = $strongarm;
779
+
780
+    $strongarm = new stdClass;
781
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
782
+    $strongarm->api_version = 1;
783
+    $strongarm->name = 'pathauto_verbose';
784
+    $strongarm->value = FALSE;
785
+    $export['pathauto_verbose'] = $strongarm;
786
+
787
+    $strongarm = new stdClass;
788
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
789
+    $strongarm->api_version = 1;
790
+    $strongarm->name = 'site_frontpage';
791
+    $strongarm->value = 'home';
792
+    $export['site_frontpage'] = $strongarm;
793
+
794
+    $strongarm = new stdClass;
795
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
796
+    $strongarm->api_version = 1;
797
+    $strongarm->name = 'tableofcontents_allowed_tags_4';
798
+    $strongarm->value = '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>';
799
+    $export['tableofcontents_allowed_tags_4'] = $strongarm;
800
+
801
+    $strongarm = new stdClass;
802
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
803
+    $strongarm->api_version = 1;
804
+    $strongarm->name = 'tableofcontents_allowed_tags_6';
805
+    $strongarm->value = '<em> <i> <strong> <b> <u> <del> <ins> <sub> <sup> <cite> <strike> <s> <tt> <span> <font> <abbr> <acronym> <dfn> <q> <bdo> <big> <small>';
806
+    $export['tableofcontents_allowed_tags_6'] = $strongarm;
807
+
808
+    $strongarm = new stdClass;
809
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
810
+    $strongarm->api_version = 1;
811
+    $strongarm->name = 'tableofcontents_allow_override_4';
812
+    $strongarm->value = 1;
813
+    $export['tableofcontents_allow_override_4'] = $strongarm;
814
+
815
+    $strongarm = new stdClass;
816
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
817
+    $strongarm->api_version = 1;
818
+    $strongarm->name = 'tableofcontents_allow_override_6';
819
+    $strongarm->value = 1;
820
+    $export['tableofcontents_allow_override_6'] = $strongarm;
821
+
822
+    $strongarm = new stdClass;
823
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
824
+    $strongarm->api_version = 1;
825
+    $strongarm->name = 'tableofcontents_attachments_4';
826
+    $strongarm->value = 0;
827
+    $export['tableofcontents_attachments_4'] = $strongarm;
828
+
829
+    $strongarm = new stdClass;
830
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
831
+    $strongarm->api_version = 1;
832
+    $strongarm->name = 'tableofcontents_automatic_4';
833
+    $strongarm->value = '0';
834
+    $export['tableofcontents_automatic_4'] = $strongarm;
835
+
836
+    $strongarm = new stdClass;
837
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
838
+    $strongarm->api_version = 1;
839
+    $strongarm->name = 'tableofcontents_automatic_6';
840
+    $strongarm->value = '0';
841
+    $export['tableofcontents_automatic_6'] = $strongarm;
842
+
843
+    $strongarm = new stdClass;
844
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
845
+    $strongarm->api_version = 1;
846
+    $strongarm->name = 'tableofcontents_back_to_top_4';
847
+    $strongarm->value = '';
848
+    $export['tableofcontents_back_to_top_4'] = $strongarm;
849
+
850
+    $strongarm = new stdClass;
851
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
852
+    $strongarm->api_version = 1;
853
+    $strongarm->name = 'tableofcontents_back_to_top_6';
854
+    $strongarm->value = '';
855
+    $export['tableofcontents_back_to_top_6'] = $strongarm;
856
+
857
+    $strongarm = new stdClass;
858
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
859
+    $strongarm->api_version = 1;
860
+    $strongarm->name = 'tableofcontents_back_to_top_anchor_4';
861
+    $strongarm->value = 'toc';
862
+    $export['tableofcontents_back_to_top_anchor_4'] = $strongarm;
863
+
864
+    $strongarm = new stdClass;
865
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
866
+    $strongarm->api_version = 1;
867
+    $strongarm->name = 'tableofcontents_back_to_top_anchor_6';
868
+    $strongarm->value = 'toc';
869
+    $export['tableofcontents_back_to_top_anchor_6'] = $strongarm;
870
+
871
+    $strongarm = new stdClass;
872
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
873
+    $strongarm->api_version = 1;
874
+    $strongarm->name = 'tableofcontents_back_to_top_location_4';
875
+    $strongarm->value = 'bottom';
876
+    $export['tableofcontents_back_to_top_location_4'] = $strongarm;
877
+
878
+    $strongarm = new stdClass;
879
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
880
+    $strongarm->api_version = 1;
881
+    $strongarm->name = 'tableofcontents_back_to_top_location_6';
882
+    $strongarm->value = 'bottom';
883
+    $export['tableofcontents_back_to_top_location_6'] = $strongarm;
884
+
885
+    $strongarm = new stdClass;
886
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
887
+    $strongarm->api_version = 1;
888
+    $strongarm->name = 'tableofcontents_back_to_top_maxlevel_4';
889
+    $strongarm->value = '4';
890
+    $export['tableofcontents_back_to_top_maxlevel_4'] = $strongarm;
891
+
892
+    $strongarm = new stdClass;
893
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
894
+    $strongarm->api_version = 1;
895
+    $strongarm->name = 'tableofcontents_back_to_top_maxlevel_6';
896
+    $strongarm->value = '4';
897
+    $export['tableofcontents_back_to_top_maxlevel_6'] = $strongarm;
898
+
899
+    $strongarm = new stdClass;
900
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
901
+    $strongarm->api_version = 1;
902
+    $strongarm->name = 'tableofcontents_back_to_top_minlevel_4';
903
+    $strongarm->value = '2';
904
+    $export['tableofcontents_back_to_top_minlevel_4'] = $strongarm;
905
+
906
+    $strongarm = new stdClass;
907
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
908
+    $strongarm->api_version = 1;
909
+    $strongarm->name = 'tableofcontents_back_to_top_minlevel_6';
910
+    $strongarm->value = '2';
911
+    $export['tableofcontents_back_to_top_minlevel_6'] = $strongarm;
912
+
913
+    $strongarm = new stdClass;
914
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
915
+    $strongarm->api_version = 1;
916
+    $strongarm->name = 'tableofcontents_collapsed_4';
917
+    $strongarm->value = 0;
918
+    $export['tableofcontents_collapsed_4'] = $strongarm;
919
+
920
+    $strongarm = new stdClass;
921
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
922
+    $strongarm->api_version = 1;
923
+    $strongarm->name = 'tableofcontents_collapsed_6';
924
+    $strongarm->value = 0;
925
+    $export['tableofcontents_collapsed_6'] = $strongarm;
926
+
927
+    $strongarm = new stdClass;
928
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
929
+    $strongarm->api_version = 1;
930
+    $strongarm->name = 'tableofcontents_comments_4';
931
+    $strongarm->value = 0;
932
+    $export['tableofcontents_comments_4'] = $strongarm;
933
+
934
+    $strongarm = new stdClass;
935
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
936
+    $strongarm->api_version = 1;
937
+    $strongarm->name = 'tableofcontents_comments_6';
938
+    $strongarm->value = 0;
939
+    $export['tableofcontents_comments_6'] = $strongarm;
940
+
941
+    $strongarm = new stdClass;
942
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
943
+    $strongarm->api_version = 1;
944
+    $strongarm->name = 'tableofcontents_comments_level_4';
945
+    $strongarm->value = '3';
946
+    $export['tableofcontents_comments_level_4'] = $strongarm;
947
+
948
+    $strongarm = new stdClass;
949
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
950
+    $strongarm->api_version = 1;
951
+    $strongarm->name = 'tableofcontents_comments_level_6';
952
+    $strongarm->value = '3';
953
+    $export['tableofcontents_comments_level_6'] = $strongarm;
954
+
955
+    $strongarm = new stdClass;
956
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
957
+    $strongarm->api_version = 1;
958
+    $strongarm->name = 'tableofcontents_hide_show_4';
959
+    $strongarm->value = 1;
960
+    $export['tableofcontents_hide_show_4'] = $strongarm;
961
+
962
+    $strongarm = new stdClass;
963
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
964
+    $strongarm->api_version = 1;
965
+    $strongarm->name = 'tableofcontents_hide_show_6';
966
+    $strongarm->value = 1;
967
+    $export['tableofcontents_hide_show_6'] = $strongarm;
968
+
969
+    $strongarm = new stdClass;
970
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
971
+    $strongarm->api_version = 1;
972
+    $strongarm->name = 'tableofcontents_hide_table_4';
973
+    $strongarm->value = 0;
974
+    $export['tableofcontents_hide_table_4'] = $strongarm;
975
+
976
+    $strongarm = new stdClass;
977
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
978
+    $strongarm->api_version = 1;
979
+    $strongarm->name = 'tableofcontents_hide_table_6';
980
+    $strongarm->value = 0;
981
+    $export['tableofcontents_hide_table_6'] = $strongarm;
982
+
983
+    $strongarm = new stdClass;
984
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
985
+    $strongarm->api_version = 1;
986
+    $strongarm->name = 'tableofcontents_identifier_introducer_4';
987
+    $strongarm->value = 'header';
988
+    $export['tableofcontents_identifier_introducer_4'] = $strongarm;
989
+
990
+    $strongarm = new stdClass;
991
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
992
+    $strongarm->api_version = 1;
993
+    $strongarm->name = 'tableofcontents_identifier_introducer_6';
994
+    $strongarm->value = 'header';
995
+    $export['tableofcontents_identifier_introducer_6'] = $strongarm;
996
+
997
+    $strongarm = new stdClass;
998
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
999
+    $strongarm->api_version = 1;
1000
+    $strongarm->name = 'tableofcontents_id_generator_4';
1001
+    $strongarm->value = 'title';
1002
+    $export['tableofcontents_id_generator_4'] = $strongarm;
1003
+
1004
+    $strongarm = new stdClass;
1005
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1006
+    $strongarm->api_version = 1;
1007
+    $strongarm->name = 'tableofcontents_id_generator_6';
1008
+    $strongarm->value = 'title';
1009
+    $export['tableofcontents_id_generator_6'] = $strongarm;
1010
+
1011
+    $strongarm = new stdClass;
1012
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1013
+    $strongarm->api_version = 1;
1014
+    $strongarm->name = 'tableofcontents_id_separator_4';
1015
+    $strongarm->value = '-';
1016
+    $export['tableofcontents_id_separator_4'] = $strongarm;
1017
+
1018
+    $strongarm = new stdClass;
1019
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1020
+    $strongarm->api_version = 1;
1021
+    $strongarm->name = 'tableofcontents_id_separator_6';
1022
+    $strongarm->value = '-';
1023
+    $export['tableofcontents_id_separator_6'] = $strongarm;
1024
+
1025
+    $strongarm = new stdClass;
1026
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1027
+    $strongarm->api_version = 1;
1028
+    $strongarm->name = 'tableofcontents_id_stripping_4';
1029
+    $strongarm->value = array(
1030 1030
     'digits' => 0,
1031 1031
     'dashes' => 0,
1032 1032
     'periods' => 0,
1033 1033
     'underscores' => 0,
1034 1034
     'colons' => 0,
1035
-  );
1036
-  $export['tableofcontents_id_stripping_4'] = $strongarm;
1037
-
1038
-  $strongarm = new stdClass;
1039
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1040
-  $strongarm->api_version = 1;
1041
-  $strongarm->name = 'tableofcontents_id_stripping_6';
1042
-  $strongarm->value = array(
1035
+    );
1036
+    $export['tableofcontents_id_stripping_4'] = $strongarm;
1037
+
1038
+    $strongarm = new stdClass;
1039
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1040
+    $strongarm->api_version = 1;
1041
+    $strongarm->name = 'tableofcontents_id_stripping_6';
1042
+    $strongarm->value = array(
1043 1043
     'digits' => 0,
1044 1044
     'dashes' => 0,
1045 1045
     'periods' => 0,
1046 1046
     'underscores' => 0,
1047 1047
     'colons' => 0,
1048
-  );
1049
-  $export['tableofcontents_id_stripping_6'] = $strongarm;
1050
-
1051
-  $strongarm = new stdClass;
1052
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1053
-  $strongarm->api_version = 1;
1054
-  $strongarm->name = 'tableofcontents_maxlevel_4';
1055
-  $strongarm->value = '3';
1056
-  $export['tableofcontents_maxlevel_4'] = $strongarm;
1057
-
1058
-  $strongarm = new stdClass;
1059
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1060
-  $strongarm->api_version = 1;
1061
-  $strongarm->name = 'tableofcontents_maxlevel_6';
1062
-  $strongarm->value = '3';
1063
-  $export['tableofcontents_maxlevel_6'] = $strongarm;
1064
-
1065
-  $strongarm = new stdClass;
1066
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1067
-  $strongarm->api_version = 1;
1068
-  $strongarm->name = 'tableofcontents_minlevel_4';
1069
-  $strongarm->value = '2';
1070
-  $export['tableofcontents_minlevel_4'] = $strongarm;
1071
-
1072
-  $strongarm = new stdClass;
1073
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1074
-  $strongarm->api_version = 1;
1075
-  $strongarm->name = 'tableofcontents_minlevel_6';
1076
-  $strongarm->value = '2';
1077
-  $export['tableofcontents_minlevel_6'] = $strongarm;
1078
-
1079
-  $strongarm = new stdClass;
1080
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1081
-  $strongarm->api_version = 1;
1082
-  $strongarm->name = 'tableofcontents_min_limit_4';
1083
-  $strongarm->value = '5';
1084
-  $export['tableofcontents_min_limit_4'] = $strongarm;
1085
-
1086
-  $strongarm = new stdClass;
1087
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1088
-  $strongarm->api_version = 1;
1089
-  $strongarm->name = 'tableofcontents_min_limit_6';
1090
-  $strongarm->value = '5';
1091
-  $export['tableofcontents_min_limit_6'] = $strongarm;
1092
-
1093
-  $strongarm = new stdClass;
1094
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1095
-  $strongarm->api_version = 1;
1096
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_';
1097
-  $strongarm->value = '0';
1098
-  $export['tableofcontents_nodetype_toc_automatic_'] = $strongarm;
1099
-
1100
-  $strongarm = new stdClass;
1101
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1102
-  $strongarm->api_version = 1;
1103
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_forum';
1104
-  $strongarm->value = '0';
1105
-  $export['tableofcontents_nodetype_toc_automatic_forum'] = $strongarm;
1106
-
1107
-  $strongarm = new stdClass;
1108
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1109
-  $strongarm->api_version = 1;
1110
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_profile';
1111
-  $strongarm->value = '0';
1112
-  $export['tableofcontents_nodetype_toc_automatic_profile'] = $strongarm;
1113
-
1114
-  $strongarm = new stdClass;
1115
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1116
-  $strongarm->api_version = 1;
1117
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_team';
1118
-  $strongarm->value = '0';
1119
-  $export['tableofcontents_nodetype_toc_automatic_team'] = $strongarm;
1120
-
1121
-  $strongarm = new stdClass;
1122
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1123
-  $strongarm->api_version = 1;
1124
-  $strongarm->name = 'tableofcontents_nodetype_toc_automatic_team_forum';
1125
-  $strongarm->value = '0';
1126
-  $export['tableofcontents_nodetype_toc_automatic_team_forum'] = $strongarm;
1127
-
1128
-  $strongarm = new stdClass;
1129
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1130
-  $strongarm->api_version = 1;
1131
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_';
1132
-  $strongarm->value = 1;
1133
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_'] = $strongarm;
1134
-
1135
-  $strongarm = new stdClass;
1136
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1137
-  $strongarm->api_version = 1;
1138
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_forum';
1139
-  $strongarm->value = 1;
1140
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_forum'] = $strongarm;
1141
-
1142
-  $strongarm = new stdClass;
1143
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1144
-  $strongarm->api_version = 1;
1145
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_profile';
1146
-  $strongarm->value = 1;
1147
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_profile'] = $strongarm;
1148
-
1149
-  $strongarm = new stdClass;
1150
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1151
-  $strongarm->api_version = 1;
1152
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_team';
1153
-  $strongarm->value = 1;
1154
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_team'] = $strongarm;
1155
-
1156
-  $strongarm = new stdClass;
1157
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1158
-  $strongarm->api_version = 1;
1159
-  $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_team_forum';
1160
-  $strongarm->value = 1;
1161
-  $export['tableofcontents_nodetype_toc_remove_from_teaser_team_forum'] = $strongarm;
1162
-
1163
-  $strongarm = new stdClass;
1164
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1165
-  $strongarm->api_version = 1;
1166
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_';
1167
-  $strongarm->value = 0;
1168
-  $export['tableofcontents_nodetype_toc_vtoc_'] = $strongarm;
1169
-
1170
-  $strongarm = new stdClass;
1171
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1172
-  $strongarm->api_version = 1;
1173
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_forum';
1174
-  $strongarm->value = 0;
1175
-  $export['tableofcontents_nodetype_toc_vtoc_forum'] = $strongarm;
1176
-
1177
-  $strongarm = new stdClass;
1178
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1179
-  $strongarm->api_version = 1;
1180
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_profile';
1181
-  $strongarm->value = 0;
1182
-  $export['tableofcontents_nodetype_toc_vtoc_profile'] = $strongarm;
1183
-
1184
-  $strongarm = new stdClass;
1185
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1186
-  $strongarm->api_version = 1;
1187
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_team';
1188
-  $strongarm->value = 0;
1189
-  $export['tableofcontents_nodetype_toc_vtoc_team'] = $strongarm;
1190
-
1191
-  $strongarm = new stdClass;
1192
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1193
-  $strongarm->api_version = 1;
1194
-  $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_team_forum';
1195
-  $strongarm->value = 0;
1196
-  $export['tableofcontents_nodetype_toc_vtoc_team_forum'] = $strongarm;
1197
-
1198
-  $strongarm = new stdClass;
1199
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1200
-  $strongarm->api_version = 1;
1201
-  $strongarm->name = 'tableofcontents_numbering_4';
1202
-  $strongarm->value = '0';
1203
-  $export['tableofcontents_numbering_4'] = $strongarm;
1204
-
1205
-  $strongarm = new stdClass;
1206
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1207
-  $strongarm->api_version = 1;
1208
-  $strongarm->name = 'tableofcontents_numbering_6';
1209
-  $strongarm->value = '0';
1210
-  $export['tableofcontents_numbering_6'] = $strongarm;
1211
-
1212
-  $strongarm = new stdClass;
1213
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1214
-  $strongarm->api_version = 1;
1215
-  $strongarm->name = 'tableofcontents_number_end_letter_4';
1216
-  $strongarm->value = '.';
1217
-  $export['tableofcontents_number_end_letter_4'] = $strongarm;
1218
-
1219
-  $strongarm = new stdClass;
1220
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1221
-  $strongarm->api_version = 1;
1222
-  $strongarm->name = 'tableofcontents_number_end_letter_6';
1223
-  $strongarm->value = '.';
1224
-  $export['tableofcontents_number_end_letter_6'] = $strongarm;
1225
-
1226
-  $strongarm = new stdClass;
1227
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1228
-  $strongarm->api_version = 1;
1229
-  $strongarm->name = 'tableofcontents_number_headers_4';
1230
-  $strongarm->value = 0;
1231
-  $export['tableofcontents_number_headers_4'] = $strongarm;
1232
-
1233
-  $strongarm = new stdClass;
1234
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1235
-  $strongarm->api_version = 1;
1236
-  $strongarm->name = 'tableofcontents_number_headers_6';
1237
-  $strongarm->value = 0;
1238
-  $export['tableofcontents_number_headers_6'] = $strongarm;
1239
-
1240
-  $strongarm = new stdClass;
1241
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1242
-  $strongarm->api_version = 1;
1243
-  $strongarm->name = 'tableofcontents_number_mode_4';
1244
-  $strongarm->value = '0';
1245
-  $export['tableofcontents_number_mode_4'] = $strongarm;
1246
-
1247
-  $strongarm = new stdClass;
1248
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1249
-  $strongarm->api_version = 1;
1250
-  $strongarm->name = 'tableofcontents_number_mode_6';
1251
-  $strongarm->value = '0';
1252
-  $export['tableofcontents_number_mode_6'] = $strongarm;
1253
-
1254
-  $strongarm = new stdClass;
1255
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1256
-  $strongarm->api_version = 1;
1257
-  $strongarm->name = 'tableofcontents_number_separator_4';
1258
-  $strongarm->value = '.';
1259
-  $export['tableofcontents_number_separator_4'] = $strongarm;
1260
-
1261
-  $strongarm = new stdClass;
1262
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1263
-  $strongarm->api_version = 1;
1264
-  $strongarm->name = 'tableofcontents_number_separator_6';
1265
-  $strongarm->value = '.';
1266
-  $export['tableofcontents_number_separator_6'] = $strongarm;
1267
-
1268
-  $strongarm = new stdClass;
1269
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1270
-  $strongarm->api_version = 1;
1271
-  $strongarm->name = 'tableofcontents_number_start_letter_4';
1272
-  $strongarm->value = '';
1273
-  $export['tableofcontents_number_start_letter_4'] = $strongarm;
1274
-
1275
-  $strongarm = new stdClass;
1276
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1277
-  $strongarm->api_version = 1;
1278
-  $strongarm->name = 'tableofcontents_number_start_letter_6';
1279
-  $strongarm->value = '';
1280
-  $export['tableofcontents_number_start_letter_6'] = $strongarm;
1281
-
1282
-  $strongarm = new stdClass;
1283
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1284
-  $strongarm->api_version = 1;
1285
-  $strongarm->name = 'tableofcontents_remove_from_teaser_admin_forum';
1286
-  $strongarm->value = 1;
1287
-  $export['tableofcontents_remove_from_teaser_admin_forum'] = $strongarm;
1288
-
1289
-  $strongarm = new stdClass;
1290
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1291
-  $strongarm->api_version = 1;
1292
-  $strongarm->name = 'tableofcontents_remove_from_teaser_forum';
1293
-  $strongarm->value = 1;
1294
-  $export['tableofcontents_remove_from_teaser_forum'] = $strongarm;
1295
-
1296
-  $strongarm = new stdClass;
1297
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1298
-  $strongarm->api_version = 1;
1299
-  $strongarm->name = 'tableofcontents_remove_from_teaser_profile';
1300
-  $strongarm->value = 1;
1301
-  $export['tableofcontents_remove_from_teaser_profile'] = $strongarm;
1302
-
1303
-  $strongarm = new stdClass;
1304
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1305
-  $strongarm->api_version = 1;
1306
-  $strongarm->name = 'tableofcontents_remove_from_teaser_team';
1307
-  $strongarm->value = 1;
1308
-  $export['tableofcontents_remove_from_teaser_team'] = $strongarm;
1309
-
1310
-  $strongarm = new stdClass;
1311
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1312
-  $strongarm->api_version = 1;
1313
-  $strongarm->name = 'tableofcontents_remove_from_teaser_team_forum';
1314
-  $strongarm->value = 1;
1315
-  $export['tableofcontents_remove_from_teaser_team_forum'] = $strongarm;
1316
-
1317
-  $strongarm = new stdClass;
1318
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1319
-  $strongarm->api_version = 1;
1320
-  $strongarm->name = 'tableofcontents_remove_teaser_4';
1321
-  $strongarm->value = 1;
1322
-  $export['tableofcontents_remove_teaser_4'] = $strongarm;
1323
-
1324
-  $strongarm = new stdClass;
1325
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1326
-  $strongarm->api_version = 1;
1327
-  $strongarm->name = 'tableofcontents_remove_teaser_6';
1328
-  $strongarm->value = 1;
1329
-  $export['tableofcontents_remove_teaser_6'] = $strongarm;
1330
-
1331
-  $strongarm = new stdClass;
1332
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1333
-  $strongarm->api_version = 1;
1334
-  $strongarm->name = 'tableofcontents_safe_title_4';
1335
-  $strongarm->value = 1;
1336
-  $export['tableofcontents_safe_title_4'] = $strongarm;
1337
-
1338
-  $strongarm = new stdClass;
1339
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1340
-  $strongarm->api_version = 1;
1341
-  $strongarm->name = 'tableofcontents_safe_title_6';
1342
-  $strongarm->value = 1;
1343
-  $export['tableofcontents_safe_title_6'] = $strongarm;
1344
-
1345
-  $strongarm = new stdClass;
1346
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1347
-  $strongarm->api_version = 1;
1348
-  $strongarm->name = 'tableofcontents_scroll_back_to_top_4';
1349
-  $strongarm->value = 0;
1350
-  $export['tableofcontents_scroll_back_to_top_4'] = $strongarm;
1351
-
1352
-  $strongarm = new stdClass;
1353
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1354
-  $strongarm->api_version = 1;
1355
-  $strongarm->name = 'tableofcontents_scroll_back_to_top_6';
1356
-  $strongarm->value = 0;
1357
-  $export['tableofcontents_scroll_back_to_top_6'] = $strongarm;
1358
-
1359
-  $strongarm = new stdClass;
1360
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1361
-  $strongarm->api_version = 1;
1362
-  $strongarm->name = 'tableofcontents_title_4';
1363
-  $strongarm->value = 'Table of Contents';
1364
-  $export['tableofcontents_title_4'] = $strongarm;
1365
-
1366
-  $strongarm = new stdClass;
1367
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1368
-  $strongarm->api_version = 1;
1369
-  $strongarm->name = 'tableofcontents_title_6';
1370
-  $strongarm->value = 'Table of Contents';
1371
-  $export['tableofcontents_title_6'] = $strongarm;
1372
-
1373
-  $strongarm = new stdClass;
1374
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1375
-  $strongarm->api_version = 1;
1376
-  $strongarm->name = 'tableofcontents_toc_automatic_admin_forum';
1377
-  $strongarm->value = '0';
1378
-  $export['tableofcontents_toc_automatic_admin_forum'] = $strongarm;
1379
-
1380
-  $strongarm = new stdClass;
1381
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1382
-  $strongarm->api_version = 1;
1383
-  $strongarm->name = 'tableofcontents_toc_automatic_forum';
1384
-  $strongarm->value = '0';
1385
-  $export['tableofcontents_toc_automatic_forum'] = $strongarm;
1386
-
1387
-  $strongarm = new stdClass;
1388
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1389
-  $strongarm->api_version = 1;
1390
-  $strongarm->name = 'tableofcontents_toc_automatic_profile';
1391
-  $strongarm->value = '0';
1392
-  $export['tableofcontents_toc_automatic_profile'] = $strongarm;
1393
-
1394
-  $strongarm = new stdClass;
1395
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1396
-  $strongarm->api_version = 1;
1397
-  $strongarm->name = 'tableofcontents_toc_automatic_team';
1398
-  $strongarm->value = '0';
1399
-  $export['tableofcontents_toc_automatic_team'] = $strongarm;
1400
-
1401
-  $strongarm = new stdClass;
1402
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1403
-  $strongarm->api_version = 1;
1404
-  $strongarm->name = 'tableofcontents_toc_automatic_team_forum';
1405
-  $strongarm->value = '0';
1406
-  $export['tableofcontents_toc_automatic_team_forum'] = $strongarm;
1407
-
1408
-  $strongarm = new stdClass;
1409
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1410
-  $strongarm->api_version = 1;
1411
-  $strongarm->name = 'tableofcontents_vtoc_admin_forum';
1412
-  $strongarm->value = 0;
1413
-  $export['tableofcontents_vtoc_admin_forum'] = $strongarm;
1414
-
1415
-  $strongarm = new stdClass;
1416
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1417
-  $strongarm->api_version = 1;
1418
-  $strongarm->name = 'tableofcontents_vtoc_forum';
1419
-  $strongarm->value = 0;
1420
-  $export['tableofcontents_vtoc_forum'] = $strongarm;
1421
-
1422
-  $strongarm = new stdClass;
1423
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1424
-  $strongarm->api_version = 1;
1425
-  $strongarm->name = 'tableofcontents_vtoc_profile';
1426
-  $strongarm->value = 0;
1427
-  $export['tableofcontents_vtoc_profile'] = $strongarm;
1428
-
1429
-  $strongarm = new stdClass;
1430
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1431
-  $strongarm->api_version = 1;
1432
-  $strongarm->name = 'tableofcontents_vtoc_team';
1433
-  $strongarm->value = 0;
1434
-  $export['tableofcontents_vtoc_team'] = $strongarm;
1435
-
1436
-  $strongarm = new stdClass;
1437
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1438
-  $strongarm->api_version = 1;
1439
-  $strongarm->name = 'tableofcontents_vtoc_team_forum';
1440
-  $strongarm->value = 0;
1441
-  $export['tableofcontents_vtoc_team_forum'] = $strongarm;
1442
-
1443
-  $strongarm = new stdClass;
1444
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1445
-  $strongarm->api_version = 1;
1446
-  $strongarm->name = 'tabtamer_tab_settings';
1447
-  $strongarm->value = array(
1048
+    );
1049
+    $export['tableofcontents_id_stripping_6'] = $strongarm;
1050
+
1051
+    $strongarm = new stdClass;
1052
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1053
+    $strongarm->api_version = 1;
1054
+    $strongarm->name = 'tableofcontents_maxlevel_4';
1055
+    $strongarm->value = '3';
1056
+    $export['tableofcontents_maxlevel_4'] = $strongarm;
1057
+
1058
+    $strongarm = new stdClass;
1059
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1060
+    $strongarm->api_version = 1;
1061
+    $strongarm->name = 'tableofcontents_maxlevel_6';
1062
+    $strongarm->value = '3';
1063
+    $export['tableofcontents_maxlevel_6'] = $strongarm;
1064
+
1065
+    $strongarm = new stdClass;
1066
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1067
+    $strongarm->api_version = 1;
1068
+    $strongarm->name = 'tableofcontents_minlevel_4';
1069
+    $strongarm->value = '2';
1070
+    $export['tableofcontents_minlevel_4'] = $strongarm;
1071
+
1072
+    $strongarm = new stdClass;
1073
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1074
+    $strongarm->api_version = 1;
1075
+    $strongarm->name = 'tableofcontents_minlevel_6';
1076
+    $strongarm->value = '2';
1077
+    $export['tableofcontents_minlevel_6'] = $strongarm;
1078
+
1079
+    $strongarm = new stdClass;
1080
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1081
+    $strongarm->api_version = 1;
1082
+    $strongarm->name = 'tableofcontents_min_limit_4';
1083
+    $strongarm->value = '5';
1084
+    $export['tableofcontents_min_limit_4'] = $strongarm;
1085
+
1086
+    $strongarm = new stdClass;
1087
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1088
+    $strongarm->api_version = 1;
1089
+    $strongarm->name = 'tableofcontents_min_limit_6';
1090
+    $strongarm->value = '5';
1091
+    $export['tableofcontents_min_limit_6'] = $strongarm;
1092
+
1093
+    $strongarm = new stdClass;
1094
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1095
+    $strongarm->api_version = 1;
1096
+    $strongarm->name = 'tableofcontents_nodetype_toc_automatic_';
1097
+    $strongarm->value = '0';
1098
+    $export['tableofcontents_nodetype_toc_automatic_'] = $strongarm;
1099
+
1100
+    $strongarm = new stdClass;
1101
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1102
+    $strongarm->api_version = 1;
1103
+    $strongarm->name = 'tableofcontents_nodetype_toc_automatic_forum';
1104
+    $strongarm->value = '0';
1105
+    $export['tableofcontents_nodetype_toc_automatic_forum'] = $strongarm;
1106
+
1107
+    $strongarm = new stdClass;
1108
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1109
+    $strongarm->api_version = 1;
1110
+    $strongarm->name = 'tableofcontents_nodetype_toc_automatic_profile';
1111
+    $strongarm->value = '0';
1112
+    $export['tableofcontents_nodetype_toc_automatic_profile'] = $strongarm;
1113
+
1114
+    $strongarm = new stdClass;
1115
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1116
+    $strongarm->api_version = 1;
1117
+    $strongarm->name = 'tableofcontents_nodetype_toc_automatic_team';
1118
+    $strongarm->value = '0';
1119
+    $export['tableofcontents_nodetype_toc_automatic_team'] = $strongarm;
1120
+
1121
+    $strongarm = new stdClass;
1122
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1123
+    $strongarm->api_version = 1;
1124
+    $strongarm->name = 'tableofcontents_nodetype_toc_automatic_team_forum';
1125
+    $strongarm->value = '0';
1126
+    $export['tableofcontents_nodetype_toc_automatic_team_forum'] = $strongarm;
1127
+
1128
+    $strongarm = new stdClass;
1129
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1130
+    $strongarm->api_version = 1;
1131
+    $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_';
1132
+    $strongarm->value = 1;
1133
+    $export['tableofcontents_nodetype_toc_remove_from_teaser_'] = $strongarm;
1134
+
1135
+    $strongarm = new stdClass;
1136
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1137
+    $strongarm->api_version = 1;
1138
+    $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_forum';
1139
+    $strongarm->value = 1;
1140
+    $export['tableofcontents_nodetype_toc_remove_from_teaser_forum'] = $strongarm;
1141
+
1142
+    $strongarm = new stdClass;
1143
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1144
+    $strongarm->api_version = 1;
1145
+    $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_profile';
1146
+    $strongarm->value = 1;
1147
+    $export['tableofcontents_nodetype_toc_remove_from_teaser_profile'] = $strongarm;
1148
+
1149
+    $strongarm = new stdClass;
1150
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1151
+    $strongarm->api_version = 1;
1152
+    $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_team';
1153
+    $strongarm->value = 1;
1154
+    $export['tableofcontents_nodetype_toc_remove_from_teaser_team'] = $strongarm;
1155
+
1156
+    $strongarm = new stdClass;
1157
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1158
+    $strongarm->api_version = 1;
1159
+    $strongarm->name = 'tableofcontents_nodetype_toc_remove_from_teaser_team_forum';
1160
+    $strongarm->value = 1;
1161
+    $export['tableofcontents_nodetype_toc_remove_from_teaser_team_forum'] = $strongarm;
1162
+
1163
+    $strongarm = new stdClass;
1164
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1165
+    $strongarm->api_version = 1;
1166
+    $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_';
1167
+    $strongarm->value = 0;
1168
+    $export['tableofcontents_nodetype_toc_vtoc_'] = $strongarm;
1169
+
1170
+    $strongarm = new stdClass;
1171
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1172
+    $strongarm->api_version = 1;
1173
+    $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_forum';
1174
+    $strongarm->value = 0;
1175
+    $export['tableofcontents_nodetype_toc_vtoc_forum'] = $strongarm;
1176
+
1177
+    $strongarm = new stdClass;
1178
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1179
+    $strongarm->api_version = 1;
1180
+    $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_profile';
1181
+    $strongarm->value = 0;
1182
+    $export['tableofcontents_nodetype_toc_vtoc_profile'] = $strongarm;
1183
+
1184
+    $strongarm = new stdClass;
1185
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1186
+    $strongarm->api_version = 1;
1187
+    $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_team';
1188
+    $strongarm->value = 0;
1189
+    $export['tableofcontents_nodetype_toc_vtoc_team'] = $strongarm;
1190
+
1191
+    $strongarm = new stdClass;
1192
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1193
+    $strongarm->api_version = 1;
1194
+    $strongarm->name = 'tableofcontents_nodetype_toc_vtoc_team_forum';
1195
+    $strongarm->value = 0;
1196
+    $export['tableofcontents_nodetype_toc_vtoc_team_forum'] = $strongarm;
1197
+
1198
+    $strongarm = new stdClass;
1199
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1200
+    $strongarm->api_version = 1;
1201
+    $strongarm->name = 'tableofcontents_numbering_4';
1202
+    $strongarm->value = '0';
1203
+    $export['tableofcontents_numbering_4'] = $strongarm;
1204
+
1205
+    $strongarm = new stdClass;
1206
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1207
+    $strongarm->api_version = 1;
1208
+    $strongarm->name = 'tableofcontents_numbering_6';
1209
+    $strongarm->value = '0';
1210
+    $export['tableofcontents_numbering_6'] = $strongarm;
1211
+
1212
+    $strongarm = new stdClass;
1213
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1214
+    $strongarm->api_version = 1;
1215
+    $strongarm->name = 'tableofcontents_number_end_letter_4';
1216
+    $strongarm->value = '.';
1217
+    $export['tableofcontents_number_end_letter_4'] = $strongarm;
1218
+
1219
+    $strongarm = new stdClass;
1220
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1221
+    $strongarm->api_version = 1;
1222
+    $strongarm->name = 'tableofcontents_number_end_letter_6';
1223
+    $strongarm->value = '.';
1224
+    $export['tableofcontents_number_end_letter_6'] = $strongarm;
1225
+
1226
+    $strongarm = new stdClass;
1227
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1228
+    $strongarm->api_version = 1;
1229
+    $strongarm->name = 'tableofcontents_number_headers_4';
1230
+    $strongarm->value = 0;
1231
+    $export['tableofcontents_number_headers_4'] = $strongarm;
1232
+
1233
+    $strongarm = new stdClass;
1234
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1235
+    $strongarm->api_version = 1;
1236
+    $strongarm->name = 'tableofcontents_number_headers_6';
1237
+    $strongarm->value = 0;
1238
+    $export['tableofcontents_number_headers_6'] = $strongarm;
1239
+
1240
+    $strongarm = new stdClass;
1241
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1242
+    $strongarm->api_version = 1;
1243
+    $strongarm->name = 'tableofcontents_number_mode_4';
1244
+    $strongarm->value = '0';
1245
+    $export['tableofcontents_number_mode_4'] = $strongarm;
1246
+
1247
+    $strongarm = new stdClass;
1248
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1249
+    $strongarm->api_version = 1;
1250
+    $strongarm->name = 'tableofcontents_number_mode_6';
1251
+    $strongarm->value = '0';
1252
+    $export['tableofcontents_number_mode_6'] = $strongarm;
1253
+
1254
+    $strongarm = new stdClass;
1255
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1256
+    $strongarm->api_version = 1;
1257
+    $strongarm->name = 'tableofcontents_number_separator_4';
1258
+    $strongarm->value = '.';
1259
+    $export['tableofcontents_number_separator_4'] = $strongarm;
1260
+
1261
+    $strongarm = new stdClass;
1262
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1263
+    $strongarm->api_version = 1;
1264
+    $strongarm->name = 'tableofcontents_number_separator_6';
1265
+    $strongarm->value = '.';
1266
+    $export['tableofcontents_number_separator_6'] = $strongarm;
1267
+
1268
+    $strongarm = new stdClass;
1269
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1270
+    $strongarm->api_version = 1;
1271
+    $strongarm->name = 'tableofcontents_number_start_letter_4';
1272
+    $strongarm->value = '';
1273
+    $export['tableofcontents_number_start_letter_4'] = $strongarm;
1274
+
1275
+    $strongarm = new stdClass;
1276
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1277
+    $strongarm->api_version = 1;
1278
+    $strongarm->name = 'tableofcontents_number_start_letter_6';
1279
+    $strongarm->value = '';
1280
+    $export['tableofcontents_number_start_letter_6'] = $strongarm;
1281
+
1282
+    $strongarm = new stdClass;
1283
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1284
+    $strongarm->api_version = 1;
1285
+    $strongarm->name = 'tableofcontents_remove_from_teaser_admin_forum';
1286
+    $strongarm->value = 1;
1287
+    $export['tableofcontents_remove_from_teaser_admin_forum'] = $strongarm;
1288
+
1289
+    $strongarm = new stdClass;
1290
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1291
+    $strongarm->api_version = 1;
1292
+    $strongarm->name = 'tableofcontents_remove_from_teaser_forum';
1293
+    $strongarm->value = 1;
1294
+    $export['tableofcontents_remove_from_teaser_forum'] = $strongarm;
1295
+
1296
+    $strongarm = new stdClass;
1297
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1298
+    $strongarm->api_version = 1;
1299
+    $strongarm->name = 'tableofcontents_remove_from_teaser_profile';
1300
+    $strongarm->value = 1;
1301
+    $export['tableofcontents_remove_from_teaser_profile'] = $strongarm;
1302
+
1303
+    $strongarm = new stdClass;
1304
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1305
+    $strongarm->api_version = 1;
1306
+    $strongarm->name = 'tableofcontents_remove_from_teaser_team';
1307
+    $strongarm->value = 1;
1308
+    $export['tableofcontents_remove_from_teaser_team'] = $strongarm;
1309
+
1310
+    $strongarm = new stdClass;
1311
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1312
+    $strongarm->api_version = 1;
1313
+    $strongarm->name = 'tableofcontents_remove_from_teaser_team_forum';
1314
+    $strongarm->value = 1;
1315
+    $export['tableofcontents_remove_from_teaser_team_forum'] = $strongarm;
1316
+
1317
+    $strongarm = new stdClass;
1318
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1319
+    $strongarm->api_version = 1;
1320
+    $strongarm->name = 'tableofcontents_remove_teaser_4';
1321
+    $strongarm->value = 1;
1322
+    $export['tableofcontents_remove_teaser_4'] = $strongarm;
1323
+
1324
+    $strongarm = new stdClass;
1325
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1326
+    $strongarm->api_version = 1;
1327
+    $strongarm->name = 'tableofcontents_remove_teaser_6';
1328
+    $strongarm->value = 1;
1329
+    $export['tableofcontents_remove_teaser_6'] = $strongarm;
1330
+
1331
+    $strongarm = new stdClass;
1332
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1333
+    $strongarm->api_version = 1;
1334
+    $strongarm->name = 'tableofcontents_safe_title_4';
1335
+    $strongarm->value = 1;
1336
+    $export['tableofcontents_safe_title_4'] = $strongarm;
1337
+
1338
+    $strongarm = new stdClass;
1339
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1340
+    $strongarm->api_version = 1;
1341
+    $strongarm->name = 'tableofcontents_safe_title_6';
1342
+    $strongarm->value = 1;
1343
+    $export['tableofcontents_safe_title_6'] = $strongarm;
1344
+
1345
+    $strongarm = new stdClass;
1346
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1347
+    $strongarm->api_version = 1;
1348
+    $strongarm->name = 'tableofcontents_scroll_back_to_top_4';
1349
+    $strongarm->value = 0;
1350
+    $export['tableofcontents_scroll_back_to_top_4'] = $strongarm;
1351
+
1352
+    $strongarm = new stdClass;
1353
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1354
+    $strongarm->api_version = 1;
1355
+    $strongarm->name = 'tableofcontents_scroll_back_to_top_6';
1356
+    $strongarm->value = 0;
1357
+    $export['tableofcontents_scroll_back_to_top_6'] = $strongarm;
1358
+
1359
+    $strongarm = new stdClass;
1360
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1361
+    $strongarm->api_version = 1;
1362
+    $strongarm->name = 'tableofcontents_title_4';
1363
+    $strongarm->value = 'Table of Contents';
1364
+    $export['tableofcontents_title_4'] = $strongarm;
1365
+
1366
+    $strongarm = new stdClass;
1367
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1368
+    $strongarm->api_version = 1;
1369
+    $strongarm->name = 'tableofcontents_title_6';
1370
+    $strongarm->value = 'Table of Contents';
1371
+    $export['tableofcontents_title_6'] = $strongarm;
1372
+
1373
+    $strongarm = new stdClass;
1374
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1375
+    $strongarm->api_version = 1;
1376
+    $strongarm->name = 'tableofcontents_toc_automatic_admin_forum';
1377
+    $strongarm->value = '0';
1378
+    $export['tableofcontents_toc_automatic_admin_forum'] = $strongarm;
1379
+
1380
+    $strongarm = new stdClass;
1381
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1382
+    $strongarm->api_version = 1;
1383
+    $strongarm->name = 'tableofcontents_toc_automatic_forum';
1384
+    $strongarm->value = '0';
1385
+    $export['tableofcontents_toc_automatic_forum'] = $strongarm;
1386
+
1387
+    $strongarm = new stdClass;
1388
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1389
+    $strongarm->api_version = 1;
1390
+    $strongarm->name = 'tableofcontents_toc_automatic_profile';
1391
+    $strongarm->value = '0';
1392
+    $export['tableofcontents_toc_automatic_profile'] = $strongarm;
1393
+
1394
+    $strongarm = new stdClass;
1395
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1396
+    $strongarm->api_version = 1;
1397
+    $strongarm->name = 'tableofcontents_toc_automatic_team';
1398
+    $strongarm->value = '0';
1399
+    $export['tableofcontents_toc_automatic_team'] = $strongarm;
1400
+
1401
+    $strongarm = new stdClass;
1402
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1403
+    $strongarm->api_version = 1;
1404
+    $strongarm->name = 'tableofcontents_toc_automatic_team_forum';
1405
+    $strongarm->value = '0';
1406
+    $export['tableofcontents_toc_automatic_team_forum'] = $strongarm;
1407
+
1408
+    $strongarm = new stdClass;
1409
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1410
+    $strongarm->api_version = 1;
1411
+    $strongarm->name = 'tableofcontents_vtoc_admin_forum';
1412
+    $strongarm->value = 0;
1413
+    $export['tableofcontents_vtoc_admin_forum'] = $strongarm;
1414
+
1415
+    $strongarm = new stdClass;
1416
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1417
+    $strongarm->api_version = 1;
1418
+    $strongarm->name = 'tableofcontents_vtoc_forum';
1419
+    $strongarm->value = 0;
1420
+    $export['tableofcontents_vtoc_forum'] = $strongarm;
1421
+
1422
+    $strongarm = new stdClass;
1423
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1424
+    $strongarm->api_version = 1;
1425
+    $strongarm->name = 'tableofcontents_vtoc_profile';
1426
+    $strongarm->value = 0;
1427
+    $export['tableofcontents_vtoc_profile'] = $strongarm;
1428
+
1429
+    $strongarm = new stdClass;
1430
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1431
+    $strongarm->api_version = 1;
1432
+    $strongarm->name = 'tableofcontents_vtoc_team';
1433
+    $strongarm->value = 0;
1434
+    $export['tableofcontents_vtoc_team'] = $strongarm;
1435
+
1436
+    $strongarm = new stdClass;
1437
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1438
+    $strongarm->api_version = 1;
1439
+    $strongarm->name = 'tableofcontents_vtoc_team_forum';
1440
+    $strongarm->value = 0;
1441
+    $export['tableofcontents_vtoc_team_forum'] = $strongarm;
1442
+
1443
+    $strongarm = new stdClass;
1444
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1445
+    $strongarm->api_version = 1;
1446
+    $strongarm->name = 'tabtamer_tab_settings';
1447
+    $strongarm->value = array(
1448 1448
     'node/%/view' => array(
1449
-      'weight' => '-10',
1450
-      'action' => 'enabled',
1451
-      'tabtamer_original_path' => 'node/%node/view',
1452
-      'tabtamer_title' => '',
1449
+        'weight' => '-10',
1450
+        'action' => 'enabled',
1451
+        'tabtamer_original_path' => 'node/%node/view',
1452
+        'tabtamer_title' => '',
1453 1453
     ),
1454 1454
     'node/%/edit' => array(
1455
-      'weight' => '1',
1456
-      'action' => 'enabled',
1457
-      'tabtamer_original_path' => 'node/%node/edit',
1458
-      'tabtamer_title' => '',
1455
+        'weight' => '1',
1456
+        'action' => 'enabled',
1457
+        'tabtamer_original_path' => 'node/%node/edit',
1458
+        'tabtamer_title' => '',
1459 1459
     ),
1460 1460
     'node/%/revisions' => array(
1461
-      'weight' => '2',
1462
-      'action' => 'enabled',
1463
-      'tabtamer_original_path' => 'node/%node/revisions',
1464
-      'tabtamer_title' => '',
1461
+        'weight' => '2',
1462
+        'action' => 'enabled',
1463
+        'tabtamer_original_path' => 'node/%node/revisions',
1464
+        'tabtamer_title' => '',
1465 1465
     ),
1466 1466
     'node/%/panel_layout' => array(
1467
-      'weight' => '2',
1468
-      'action' => 'enabled',
1469
-      'tabtamer_original_path' => 'node/%node/panel_layout',
1470
-      'tabtamer_title' => '',
1467
+        'weight' => '2',
1468
+        'action' => 'enabled',
1469
+        'tabtamer_original_path' => 'node/%node/panel_layout',
1470
+        'tabtamer_title' => '',
1471 1471
     ),
1472 1472
     'node/%/panel_content' => array(
1473
-      'weight' => '3',
1474
-      'action' => 'enabled',
1475
-      'tabtamer_original_path' => 'node/%node/panel_content',
1476
-      'tabtamer_title' => '',
1473
+        'weight' => '3',
1474
+        'action' => 'enabled',
1475
+        'tabtamer_original_path' => 'node/%node/panel_content',
1476
+        'tabtamer_title' => '',
1477 1477
     ),
1478 1478
     'node/%/revisions/list' => array(
1479
-      'weight' => '0',
1480
-      'action' => 'enabled',
1481
-      'tabtamer_original_path' => 'node/%node/revisions/list',
1482
-      'tabtamer_title' => '',
1479
+        'weight' => '0',
1480
+        'action' => 'enabled',
1481
+        'tabtamer_original_path' => 'node/%node/revisions/list',
1482
+        'tabtamer_title' => '',
1483 1483
     ),
1484 1484
     'node/%/revisions/view/%/%' => array(
1485
-      'weight' => '0',
1486
-      'action' => 'enabled',
1487
-      'tabtamer_original_path' => 'node/%node/revisions/view/%/%',
1488
-      'tabtamer_title' => '',
1485
+        'weight' => '0',
1486
+        'action' => 'enabled',
1487
+        'tabtamer_original_path' => 'node/%node/revisions/view/%/%',
1488
+        'tabtamer_title' => '',
1489 1489
     ),
1490 1490
     'node/%/revisions/view/latest' => array(
1491
-      'weight' => '0',
1492
-      'action' => 'enabled',
1493
-      'tabtamer_original_path' => 'node/%node/revisions/view/latest',
1494
-      'tabtamer_title' => '',
1491
+        'weight' => '0',
1492
+        'action' => 'enabled',
1493
+        'tabtamer_original_path' => 'node/%node/revisions/view/latest',
1494
+        'tabtamer_title' => '',
1495 1495
     ),
1496 1496
     'search/node/%' => array(
1497
-      'weight' => '0',
1498
-      'action' => 'enabled',
1499
-      'tabtamer_original_path' => 'search/node/%menu_tail',
1500
-      'tabtamer_title' => '',
1497
+        'weight' => '0',
1498
+        'action' => 'enabled',
1499
+        'tabtamer_original_path' => 'search/node/%menu_tail',
1500
+        'tabtamer_title' => '',
1501 1501
     ),
1502 1502
     'search/user/%' => array(
1503
-      'weight' => '0',
1504
-      'action' => 'enabled',
1505
-      'tabtamer_original_path' => 'search/user/%menu_tail',
1506
-      'tabtamer_title' => '',
1503
+        'weight' => '0',
1504
+        'action' => 'enabled',
1505
+        'tabtamer_original_path' => 'search/user/%menu_tail',
1506
+        'tabtamer_title' => '',
1507 1507
     ),
1508 1508
     'user/login' => array(
1509
-      'weight' => '0',
1510
-      'action' => 'enabled',
1511
-      'tabtamer_original_path' => 'user/login',
1512
-      'tabtamer_title' => '',
1509
+        'weight' => '0',
1510
+        'action' => 'enabled',
1511
+        'tabtamer_original_path' => 'user/login',
1512
+        'tabtamer_title' => '',
1513 1513
     ),
1514 1514
     'user/register' => array(
1515
-      'weight' => '0',
1516
-      'action' => 'enabled',
1517
-      'tabtamer_original_path' => 'user/register',
1518
-      'tabtamer_title' => '',
1515
+        'weight' => '0',
1516
+        'action' => 'enabled',
1517
+        'tabtamer_original_path' => 'user/register',
1518
+        'tabtamer_title' => '',
1519 1519
     ),
1520 1520
     'user/password' => array(
1521
-      'weight' => '0',
1522
-      'action' => 'enabled',
1523
-      'tabtamer_original_path' => 'user/password',
1524
-      'tabtamer_title' => '',
1521
+        'weight' => '0',
1522
+        'action' => 'enabled',
1523
+        'tabtamer_original_path' => 'user/password',
1524
+        'tabtamer_title' => '',
1525 1525
     ),
1526 1526
     'user/%/view' => array(
1527
-      'weight' => '-10',
1528
-      'action' => 'hidden',
1529
-      'tabtamer_original_path' => 'user/%user/view',
1530
-      'tabtamer_title' => '',
1527
+        'weight' => '-10',
1528
+        'action' => 'hidden',
1529
+        'tabtamer_original_path' => 'user/%user/view',
1530
+        'tabtamer_title' => '',
1531 1531
     ),
1532 1532
     'user/%/edit' => array(
1533
-      'weight' => '0',
1534
-      'action' => 'hidden',
1535
-      'tabtamer_original_path' => 'user/%user_category/edit',
1536
-      'tabtamer_title' => '',
1533
+        'weight' => '0',
1534
+        'action' => 'hidden',
1535
+        'tabtamer_original_path' => 'user/%user_category/edit',
1536
+        'tabtamer_title' => '',
1537 1537
     ),
1538 1538
     'user/%/imce' => array(
1539
-      'weight' => '10',
1540
-      'action' => 'hidden',
1541
-      'tabtamer_original_path' => 'user/%user/imce',
1542
-      'tabtamer_title' => '',
1539
+        'weight' => '10',
1540
+        'action' => 'hidden',
1541
+        'tabtamer_original_path' => 'user/%user/imce',
1542
+        'tabtamer_title' => '',
1543 1543
     ),
1544 1544
     'user/%/roles' => array(
1545
-      'weight' => '0',
1546
-      'action' => 'enabled',
1547
-      'tabtamer_original_path' => 'user/%user/roles',
1548
-      'tabtamer_title' => '',
1545
+        'weight' => '0',
1546
+        'action' => 'enabled',
1547
+        'tabtamer_original_path' => 'user/%user/roles',
1548
+        'tabtamer_title' => '',
1549 1549
     ),
1550 1550
     'user/%/messages' => array(
1551
-      'weight' => '0',
1552
-      'action' => 'hidden',
1553
-      'tabtamer_original_path' => 'user/%/messages',
1554
-      'tabtamer_title' => '',
1551
+        'weight' => '0',
1552
+        'action' => 'hidden',
1553
+        'tabtamer_original_path' => 'user/%/messages',
1554
+        'tabtamer_title' => '',
1555 1555
     ),
1556 1556
     'user/%/friends' => array(
1557
-      'weight' => '0',
1558
-      'action' => 'hidden',
1559
-      'tabtamer_original_path' => 'user/%/friends',
1560
-      'tabtamer_title' => '',
1557
+        'weight' => '0',
1558
+        'action' => 'hidden',
1559
+        'tabtamer_original_path' => 'user/%/friends',
1560
+        'tabtamer_title' => '',
1561 1561
     ),
1562 1562
     'user/%/edit/account' => array(
1563
-      'weight' => '0',
1564
-      'action' => 'enabled',
1565
-      'tabtamer_original_path' => 'user/%user_category/edit/account',
1566
-      'tabtamer_title' => '',
1563
+        'weight' => '0',
1564
+        'action' => 'enabled',
1565
+        'tabtamer_original_path' => 'user/%user_category/edit/account',
1566
+        'tabtamer_title' => '',
1567 1567
     ),
1568 1568
     'user/%/edit/profile' => array(
1569
-      'weight' => '1',
1570
-      'action' => 'hidden',
1571
-      'tabtamer_original_path' => 'user/%user_category/edit/profile',
1572
-      'tabtamer_title' => '',
1569
+        'weight' => '1',
1570
+        'action' => 'hidden',
1571
+        'tabtamer_original_path' => 'user/%user_category/edit/profile',
1572
+        'tabtamer_title' => '',
1573 1573
     ),
1574 1574
     'user/%/friends/pending' => array(
1575
-      'weight' => '0',
1576
-      'action' => 'enabled',
1577
-      'tabtamer_original_path' => 'user/%views_arg/friends/pending',
1578
-      'tabtamer_title' => '',
1575
+        'weight' => '0',
1576
+        'action' => 'enabled',
1577
+        'tabtamer_original_path' => 'user/%views_arg/friends/pending',
1578
+        'tabtamer_title' => '',
1579 1579
     ),
1580 1580
     'user/%/friends/flagged' => array(
1581
-      'weight' => '0',
1582
-      'action' => 'enabled',
1583
-      'tabtamer_original_path' => 'user/%views_arg/friends/flagged',
1584
-      'tabtamer_title' => '',
1581
+        'weight' => '0',
1582
+        'action' => 'enabled',
1583
+        'tabtamer_original_path' => 'user/%views_arg/friends/flagged',
1584
+        'tabtamer_title' => '',
1585 1585
     ),
1586 1586
     'account/profile/view' => array(
1587
-      'weight' => '0',
1588
-      'action' => 'enabled',
1589
-      'tabtamer_original_path' => 'account/profile/view',
1590
-      'tabtamer_title' => '',
1587
+        'weight' => '0',
1588
+        'action' => 'enabled',
1589
+        'tabtamer_original_path' => 'account/profile/view',
1590
+        'tabtamer_title' => '',
1591 1591
     ),
1592 1592
     'account/profile/edit' => array(
1593
-      'weight' => '5',
1594
-      'action' => 'enabled',
1595
-      'tabtamer_original_path' => 'account/profile/edit',
1596
-      'tabtamer_title' => '',
1593
+        'weight' => '5',
1594
+        'action' => 'enabled',
1595
+        'tabtamer_original_path' => 'account/profile/edit',
1596
+        'tabtamer_title' => '',
1597 1597
     ),
1598 1598
     'account/prefs/computing' => array(
1599
-      'weight' => '0',
1600
-      'action' => 'enabled',
1601
-      'tabtamer_original_path' => 'account/prefs/computing',
1602
-      'tabtamer_title' => '',
1599
+        'weight' => '0',
1600
+        'action' => 'enabled',
1601
+        'tabtamer_original_path' => 'account/prefs/computing',
1602
+        'tabtamer_title' => '',
1603 1603
     ),
1604 1604
     'account/prefs/project' => array(
1605
-      'weight' => '5',
1606
-      'action' => 'enabled',
1607
-      'tabtamer_original_path' => 'account/prefs/project',
1608
-      'tabtamer_title' => '',
1605
+        'weight' => '5',
1606
+        'action' => 'enabled',
1607
+        'tabtamer_original_path' => 'account/prefs/project',
1608
+        'tabtamer_title' => '',
1609 1609
     ),
1610 1610
     'account/prefs/community' => array(
1611
-      'weight' => '10',
1612
-      'action' => 'enabled',
1613
-      'tabtamer_original_path' => 'account/prefs/community',
1614
-      'tabtamer_title' => '',
1611
+        'weight' => '10',
1612
+        'action' => 'enabled',
1613
+        'tabtamer_original_path' => 'account/prefs/community',
1614
+        'tabtamer_title' => '',
1615 1615
     ),
1616 1616
     'account/prefs/privacy' => array(
1617
-      'weight' => '15',
1618
-      'action' => 'enabled',
1619
-      'tabtamer_original_path' => 'account/prefs/privacy',
1620
-      'tabtamer_title' => '',
1617
+        'weight' => '15',
1618
+        'action' => 'enabled',
1619
+        'tabtamer_original_path' => 'account/prefs/privacy',
1620
+        'tabtamer_title' => '',
1621 1621
     ),
1622 1622
     'account/obsolete' => array(
1623
-      'weight' => '0',
1624
-      'action' => 'enabled',
1625
-      'tabtamer_original_path' => 'account/obsolete',
1626
-      'tabtamer_title' => '',
1623
+        'weight' => '0',
1624
+        'action' => 'enabled',
1625
+        'tabtamer_original_path' => 'account/obsolete',
1626
+        'tabtamer_title' => '',
1627 1627
     ),
1628 1628
     'account/tasks/all' => array(
1629
-      'weight' => '0',
1630
-      'action' => 'enabled',
1631
-      'tabtamer_original_path' => 'account/tasks/all',
1632
-      'tabtamer_title' => '',
1629
+        'weight' => '0',
1630
+        'action' => 'enabled',
1631
+        'tabtamer_original_path' => 'account/tasks/all',
1632
+        'tabtamer_title' => '',
1633 1633
     ),
1634 1634
     'account/tasks/error' => array(
1635
-      'weight' => '5',
1636
-      'action' => 'enabled',
1637
-      'tabtamer_original_path' => 'account/tasks/error',
1638
-      'tabtamer_title' => '',
1635
+        'weight' => '5',
1636
+        'action' => 'enabled',
1637
+        'tabtamer_original_path' => 'account/tasks/error',
1638
+        'tabtamer_title' => '',
1639 1639
     ),
1640 1640
     'account/tasks/active' => array(
1641
-      'weight' => '1',
1642
-      'action' => 'enabled',
1643
-      'tabtamer_original_path' => 'account/tasks/active',
1644
-      'tabtamer_title' => '',
1641
+        'weight' => '1',
1642
+        'action' => 'enabled',
1643
+        'tabtamer_original_path' => 'account/tasks/active',
1644
+        'tabtamer_title' => '',
1645 1645
     ),
1646 1646
     'account/tasks/invalid' => array(
1647
-      'weight' => '4',
1648
-      'action' => 'enabled',
1649
-      'tabtamer_original_path' => 'account/tasks/invalid',
1650
-      'tabtamer_title' => '',
1647
+        'weight' => '4',
1648
+        'action' => 'enabled',
1649
+        'tabtamer_original_path' => 'account/tasks/invalid',
1650
+        'tabtamer_title' => '',
1651 1651
     ),
1652 1652
     'account/tasks/pending' => array(
1653
-      'weight' => '2',
1654
-      'action' => 'enabled',
1655
-      'tabtamer_original_path' => 'account/tasks/pending',
1656
-      'tabtamer_title' => '',
1653
+        'weight' => '2',
1654
+        'action' => 'enabled',
1655
+        'tabtamer_original_path' => 'account/tasks/pending',
1656
+        'tabtamer_title' => '',
1657 1657
     ),
1658 1658
     'account/tasks/valid' => array(
1659
-      'weight' => '3',
1660
-      'action' => 'enabled',
1661
-      'tabtamer_original_path' => 'account/tasks/valid',
1662
-      'tabtamer_title' => '',
1659
+        'weight' => '3',
1660
+        'action' => 'enabled',
1661
+        'tabtamer_original_path' => 'account/tasks/valid',
1662
+        'tabtamer_title' => '',
1663 1663
     ),
1664 1664
     'account/computers/all' => array(
1665
-      'weight' => '1',
1666
-      'action' => 'enabled',
1667
-      'tabtamer_original_path' => 'account/computers/all',
1668
-      'tabtamer_title' => '',
1665
+        'weight' => '1',
1666
+        'action' => 'enabled',
1667
+        'tabtamer_original_path' => 'account/computers/all',
1668
+        'tabtamer_title' => '',
1669 1669
     ),
1670 1670
     'account/computers/active' => array(
1671
-      'weight' => '0',
1672
-      'action' => 'enabled',
1673
-      'tabtamer_original_path' => 'account/computers/active',
1674
-      'tabtamer_title' => '',
1671
+        'weight' => '0',
1672
+        'action' => 'enabled',
1673
+        'tabtamer_original_path' => 'account/computers/active',
1674
+        'tabtamer_title' => '',
1675 1675
     ),
1676 1676
     'account/%/computers' => array(
1677
-      'weight' => '0',
1678
-      'action' => 'hidden',
1679
-      'tabtamer_original_path' => 'account/%views_arg/computers',
1680
-      'tabtamer_title' => '',
1677
+        'weight' => '0',
1678
+        'action' => 'hidden',
1679
+        'tabtamer_original_path' => 'account/%views_arg/computers',
1680
+        'tabtamer_title' => '',
1681 1681
     ),
1682 1682
     'account/%/computers/all' => array(
1683
-      'weight' => '1',
1684
-      'action' => 'enabled',
1685
-      'tabtamer_original_path' => 'account/%views_arg/computers/all',
1686
-      'tabtamer_title' => '',
1683
+        'weight' => '1',
1684
+        'action' => 'enabled',
1685
+        'tabtamer_original_path' => 'account/%views_arg/computers/all',
1686
+        'tabtamer_title' => '',
1687 1687
     ),
1688 1688
     'account/%/friends/all' => array(
1689
-      'weight' => '-10',
1690
-      'action' => 'enabled',
1691
-      'tabtamer_original_path' => 'account/%/friends/all',
1692
-      'tabtamer_title' => '',
1689
+        'weight' => '-10',
1690
+        'action' => 'enabled',
1691
+        'tabtamer_original_path' => 'account/%/friends/all',
1692
+        'tabtamer_title' => '',
1693 1693
     ),
1694 1694
     'account/%/friends/pending' => array(
1695
-      'weight' => '0',
1696
-      'action' => 'enabled',
1697
-      'tabtamer_original_path' => 'account/%views_arg/friends/pending',
1698
-      'tabtamer_title' => '',
1695
+        'weight' => '0',
1696
+        'action' => 'enabled',
1697
+        'tabtamer_original_path' => 'account/%views_arg/friends/pending',
1698
+        'tabtamer_title' => '',
1699 1699
     ),
1700 1700
     'account/%/friends/flagged' => array(
1701
-      'weight' => '0',
1702
-      'action' => 'enabled',
1703
-      'tabtamer_original_path' => 'account/%views_arg/friends/flagged',
1704
-      'tabtamer_title' => '',
1701
+        'weight' => '0',
1702
+        'action' => 'enabled',
1703
+        'tabtamer_original_path' => 'account/%views_arg/friends/flagged',
1704
+        'tabtamer_title' => '',
1705 1705
     ),
1706 1706
     'join/new' => array(
1707
-      'weight' => '0',
1708
-      'action' => 'enabled',
1709
-      'tabtamer_original_path' => 'join/new',
1710
-      'tabtamer_title' => '',
1707
+        'weight' => '0',
1708
+        'action' => 'enabled',
1709
+        'tabtamer_original_path' => 'join/new',
1710
+        'tabtamer_title' => '',
1711 1711
     ),
1712 1712
     'join/boinc' => array(
1713
-      'weight' => '5',
1714
-      'action' => 'enabled',
1715
-      'tabtamer_original_path' => 'join/boinc',
1716
-      'tabtamer_title' => '',
1713
+        'weight' => '5',
1714
+        'action' => 'enabled',
1715
+        'tabtamer_original_path' => 'join/boinc',
1716
+        'tabtamer_title' => '',
1717 1717
     ),
1718 1718
     'messages/list' => array(
1719
-      'weight' => '-10',
1720
-      'action' => 'enabled',
1721
-      'tabtamer_original_path' => 'messages/list',
1722
-      'tabtamer_title' => '',
1719
+        'weight' => '-10',
1720
+        'action' => 'enabled',
1721
+        'tabtamer_original_path' => 'messages/list',
1722
+        'tabtamer_title' => '',
1723 1723
     ),
1724 1724
     'messages/view/%' => array(
1725
-      'weight' => '-5',
1726
-      'action' => 'enabled',
1727
-      'tabtamer_original_path' => 'messages/view/%privatemsg_thread',
1728
-      'tabtamer_title' => '',
1725
+        'weight' => '-5',
1726
+        'action' => 'enabled',
1727
+        'tabtamer_original_path' => 'messages/view/%privatemsg_thread',
1728
+        'tabtamer_title' => '',
1729 1729
     ),
1730 1730
     'messages/new' => array(
1731
-      'weight' => '-3',
1732
-      'action' => 'enabled',
1733
-      'tabtamer_original_path' => 'messages/new',
1734
-      'tabtamer_title' => '',
1731
+        'weight' => '-3',
1732
+        'action' => 'enabled',
1733
+        'tabtamer_original_path' => 'messages/new',
1734
+        'tabtamer_title' => '',
1735 1735
     ),
1736 1736
     'news' => array(
1737
-      'weight' => 0,
1738
-      'action' => 'enabled',
1739
-      'tabtamer_original_path' => 'news',
1740
-      'tabtamer_title' => '',
1737
+        'weight' => 0,
1738
+        'action' => 'enabled',
1739
+        'tabtamer_original_path' => 'news',
1740
+        'tabtamer_title' => '',
1741 1741
     ),
1742 1742
     'workunit/%/tasks' => array(
1743
-      'weight' => '0',
1744
-      'action' => 'enabled',
1745
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks',
1746
-      'tabtamer_title' => '',
1743
+        'weight' => '0',
1744
+        'action' => 'enabled',
1745
+        'tabtamer_original_path' => 'workunit/%views_arg/tasks',
1746
+        'tabtamer_title' => '',
1747 1747
     ),
1748 1748
     'workunit/%/tasks/error' => array(
1749
-      'weight' => '5',
1750
-      'action' => 'enabled',
1751
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/error',
1752
-      'tabtamer_title' => '',
1749
+        'weight' => '5',
1750
+        'action' => 'enabled',
1751
+        'tabtamer_original_path' => 'workunit/%views_arg/tasks/error',
1752
+        'tabtamer_title' => '',
1753 1753
     ),
1754 1754
     'workunit/%/tasks/active' => array(
1755
-      'weight' => '1',
1756
-      'action' => 'enabled',
1757
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/active',
1758
-      'tabtamer_title' => '',
1755
+        'weight' => '1',
1756
+        'action' => 'enabled',
1757
+        'tabtamer_original_path' => 'workunit/%views_arg/tasks/active',
1758
+        'tabtamer_title' => '',
1759 1759
     ),
1760 1760
     'workunit/%/tasks/invalid' => array(
1761
-      'weight' => '4',
1762
-      'action' => 'enabled',
1763
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/invalid',
1764
-      'tabtamer_title' => '',
1761
+        'weight' => '4',
1762
+        'action' => 'enabled',
1763
+        'tabtamer_original_path' => 'workunit/%views_arg/tasks/invalid',
1764
+        'tabtamer_title' => '',
1765 1765
     ),
1766 1766
     'workunit/%/tasks/pending' => array(
1767
-      'weight' => '2',
1768
-      'action' => 'enabled',
1769
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/pending',
1770
-      'tabtamer_title' => '',
1767
+        'weight' => '2',
1768
+        'action' => 'enabled',
1769
+        'tabtamer_original_path' => 'workunit/%views_arg/tasks/pending',
1770
+        'tabtamer_title' => '',
1771 1771
     ),
1772 1772
     'workunit/%/tasks/valid' => array(
1773
-      'weight' => '3',
1774
-      'action' => 'enabled',
1775
-      'tabtamer_original_path' => 'workunit/%views_arg/tasks/valid',
1776
-      'tabtamer_title' => '',
1773
+        'weight' => '3',
1774
+        'action' => 'enabled',
1775
+        'tabtamer_original_path' => 'workunit/%views_arg/tasks/valid',
1776
+        'tabtamer_title' => '',
1777 1777
     ),
1778 1778
     'host/%/tasks' => array(
1779
-      'weight' => '0',
1780
-      'action' => 'enabled',
1781
-      'tabtamer_original_path' => 'host/%views_arg/tasks',
1782
-      'tabtamer_title' => '',
1779
+        'weight' => '0',
1780
+        'action' => 'enabled',
1781
+        'tabtamer_original_path' => 'host/%views_arg/tasks',
1782
+        'tabtamer_title' => '',
1783 1783
     ),
1784 1784
     'host/%/tasks/error' => array(
1785
-      'weight' => '5',
1786
-      'action' => 'enabled',
1787
-      'tabtamer_original_path' => 'host/%views_arg/tasks/error',
1788
-      'tabtamer_title' => '',
1785
+        'weight' => '5',
1786
+        'action' => 'enabled',
1787
+        'tabtamer_original_path' => 'host/%views_arg/tasks/error',
1788
+        'tabtamer_title' => '',
1789 1789
     ),
1790 1790
     'host/%/tasks/active' => array(
1791
-      'weight' => '1',
1792
-      'action' => 'enabled',
1793
-      'tabtamer_original_path' => 'host/%views_arg/tasks/active',
1794
-      'tabtamer_title' => '',
1791
+        'weight' => '1',
1792
+        'action' => 'enabled',
1793
+        'tabtamer_original_path' => 'host/%views_arg/tasks/active',
1794
+        'tabtamer_title' => '',
1795 1795
     ),
1796 1796
     'host/%/tasks/invalid' => array(
1797
-      'weight' => '4',
1798
-      'action' => 'enabled',
1799
-      'tabtamer_original_path' => 'host/%views_arg/tasks/invalid',
1800
-      'tabtamer_title' => '',
1797
+        'weight' => '4',
1798
+        'action' => 'enabled',
1799
+        'tabtamer_original_path' => 'host/%views_arg/tasks/invalid',
1800
+        'tabtamer_title' => '',
1801 1801
     ),
1802 1802
     'host/%/tasks/pending' => array(
1803
-      'weight' => '2',
1804
-      'action' => 'enabled',
1805
-      'tabtamer_original_path' => 'host/%views_arg/tasks/pending',
1806
-      'tabtamer_title' => '',
1803
+        'weight' => '2',
1804
+        'action' => 'enabled',
1805
+        'tabtamer_original_path' => 'host/%views_arg/tasks/pending',
1806
+        'tabtamer_title' => '',
1807 1807
     ),
1808 1808
     'host/%/tasks/valid' => array(
1809
-      'weight' => '3',
1810
-      'action' => 'enabled',
1811
-      'tabtamer_original_path' => 'host/%views_arg/tasks/valid',
1812
-      'tabtamer_title' => '',
1813
-    ),
1814
-  );
1815
-  $export['tabtamer_tab_settings'] = $strongarm;
1816
-
1817
-  $strongarm = new stdClass;
1818
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1819
-  $strongarm->api_version = 1;
1820
-  $strongarm->name = 'theme_boinc_settings';
1821
-  $strongarm->value = array(
1809
+        'weight' => '3',
1810
+        'action' => 'enabled',
1811
+        'tabtamer_original_path' => 'host/%views_arg/tasks/valid',
1812
+        'tabtamer_title' => '',
1813
+    ),
1814
+    );
1815
+    $export['tabtamer_tab_settings'] = $strongarm;
1816
+
1817
+    $strongarm = new stdClass;
1818
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1819
+    $strongarm->api_version = 1;
1820
+    $strongarm->name = 'theme_boinc_settings';
1821
+    $strongarm->value = array(
1822 1822
     'zen_block_editing' => 1,
1823 1823
     'zen_breadcrumb' => 'yes',
1824 1824
     'zen_breadcrumb_separator' => ' › ',
@@ -1845,21 +1845,21 @@  discard block
 block discarded – undo
1845 1845
     'default_favicon' => 1,
1846 1846
     'favicon_path' => '',
1847 1847
     'favicon_upload' => '',
1848
-  );
1849
-  $export['theme_boinc_settings'] = $strongarm;
1850
-
1851
-  $strongarm = new stdClass;
1852
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1853
-  $strongarm->api_version = 1;
1854
-  $strongarm->name = 'theme_default';
1855
-  $strongarm->value = 'einstein';
1856
-  $export['theme_default'] = $strongarm;
1857
-
1858
-  $strongarm = new stdClass;
1859
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1860
-  $strongarm->api_version = 1;
1861
-  $strongarm->name = 'theme_einstein_settings';
1862
-  $strongarm->value = array(
1848
+    );
1849
+    $export['theme_boinc_settings'] = $strongarm;
1850
+
1851
+    $strongarm = new stdClass;
1852
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1853
+    $strongarm->api_version = 1;
1854
+    $strongarm->name = 'theme_default';
1855
+    $strongarm->value = 'einstein';
1856
+    $export['theme_default'] = $strongarm;
1857
+
1858
+    $strongarm = new stdClass;
1859
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1860
+    $strongarm->api_version = 1;
1861
+    $strongarm->name = 'theme_einstein_settings';
1862
+    $strongarm->value = array(
1863 1863
     'zen_block_editing' => 1,
1864 1864
     'zen_breadcrumb' => 'yes',
1865 1865
     'zen_breadcrumb_separator' => ' › ',
@@ -1886,23 +1886,23 @@  discard block
 block discarded – undo
1886 1886
     'favicon_upload' => '',
1887 1887
     'boinc_stats_chart_color' => '#009CDB',
1888 1888
     'boinc_stats_chart_bcolor' => '#EEEEEE',
1889
-  );
1890
-  $export['theme_einstein_settings'] = $strongarm;
1891
-
1892
-  $strongarm = new stdClass;
1893
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1894
-  $strongarm->api_version = 1;
1895
-  $strongarm->name = 'theme_settings';
1896
-  $strongarm->value = array(
1889
+    );
1890
+    $export['theme_einstein_settings'] = $strongarm;
1891
+
1892
+    $strongarm = new stdClass;
1893
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1894
+    $strongarm->api_version = 1;
1895
+    $strongarm->name = 'theme_settings';
1896
+    $strongarm->value = array(
1897 1897
     'toggle_node_info_page' => FALSE,
1898
-  );
1899
-  $export['theme_settings'] = $strongarm;
1900
-
1901
-  $strongarm = new stdClass;
1902
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1903
-  $strongarm->api_version = 1;
1904
-  $strongarm->name = 'theme_zen_settings';
1905
-  $strongarm->value = array(
1898
+    );
1899
+    $export['theme_settings'] = $strongarm;
1900
+
1901
+    $strongarm = new stdClass;
1902
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1903
+    $strongarm->api_version = 1;
1904
+    $strongarm->name = 'theme_zen_settings';
1905
+    $strongarm->value = array(
1906 1906
     'zen_block_editing' => '1',
1907 1907
     'zen_breadcrumb' => 'yes',
1908 1908
     'zen_breadcrumb_separator' => ' › ',
@@ -1912,105 +1912,105 @@  discard block
 block discarded – undo
1912 1912
     'zen_layout' => 'zen-columns-liquid',
1913 1913
     'zen_rebuild_registry' => '0',
1914 1914
     'zen_wireframes' => '0',
1915
-  );
1916
-  $export['theme_zen_settings'] = $strongarm;
1917
-
1918
-  $strongarm = new stdClass;
1919
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1920
-  $strongarm->api_version = 1;
1921
-  $strongarm->name = 'upload_extensions_2938987599';
1922
-  $strongarm->value = 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp';
1923
-  $export['upload_extensions_2938987599'] = $strongarm;
1924
-
1925
-  $strongarm = new stdClass;
1926
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1927
-  $strongarm->api_version = 1;
1928
-  $strongarm->name = 'upload_extensions_3519698132';
1929
-  $strongarm->value = 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp';
1930
-  $export['upload_extensions_3519698132'] = $strongarm;
1931
-
1932
-  $strongarm = new stdClass;
1933
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1934
-  $strongarm->api_version = 1;
1935
-  $strongarm->name = 'upload_extensions_default';
1936
-  $strongarm->value = 'jpg jpeg gif png txt pdf';
1937
-  $export['upload_extensions_default'] = $strongarm;
1938
-
1939
-  $strongarm = new stdClass;
1940
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1941
-  $strongarm->api_version = 1;
1942
-  $strongarm->name = 'upload_forum';
1943
-  $strongarm->value = '0';
1944
-  $export['upload_forum'] = $strongarm;
1945
-
1946
-  $strongarm = new stdClass;
1947
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1948
-  $strongarm->api_version = 1;
1949
-  $strongarm->name = 'upload_list_default';
1950
-  $strongarm->value = '0';
1951
-  $export['upload_list_default'] = $strongarm;
1952
-
1953
-  $strongarm = new stdClass;
1954
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1955
-  $strongarm->api_version = 1;
1956
-  $strongarm->name = 'upload_max_resolution';
1957
-  $strongarm->value = '0';
1958
-  $export['upload_max_resolution'] = $strongarm;
1959
-
1960
-  $strongarm = new stdClass;
1961
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1962
-  $strongarm->api_version = 1;
1963
-  $strongarm->name = 'upload_uploadsize_2938987599';
1964
-  $strongarm->value = '2';
1965
-  $export['upload_uploadsize_2938987599'] = $strongarm;
1966
-
1967
-  $strongarm = new stdClass;
1968
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1969
-  $strongarm->api_version = 1;
1970
-  $strongarm->name = 'upload_uploadsize_3519698132';
1971
-  $strongarm->value = '2';
1972
-  $export['upload_uploadsize_3519698132'] = $strongarm;
1973
-
1974
-  $strongarm = new stdClass;
1975
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1976
-  $strongarm->api_version = 1;
1977
-  $strongarm->name = 'upload_uploadsize_default';
1978
-  $strongarm->value = '2';
1979
-  $export['upload_uploadsize_default'] = $strongarm;
1980
-
1981
-  $strongarm = new stdClass;
1982
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1983
-  $strongarm->api_version = 1;
1984
-  $strongarm->name = 'upload_usersize_2938987599';
1985
-  $strongarm->value = '1000';
1986
-  $export['upload_usersize_2938987599'] = $strongarm;
1987
-
1988
-  $strongarm = new stdClass;
1989
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1990
-  $strongarm->api_version = 1;
1991
-  $strongarm->name = 'upload_usersize_3519698132';
1992
-  $strongarm->value = '1000';
1993
-  $export['upload_usersize_3519698132'] = $strongarm;
1994
-
1995
-  $strongarm = new stdClass;
1996
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1997
-  $strongarm->api_version = 1;
1998
-  $strongarm->name = 'upload_usersize_default';
1999
-  $strongarm->value = '10';
2000
-  $export['upload_usersize_default'] = $strongarm;
2001
-
2002
-  $strongarm = new stdClass;
2003
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2004
-  $strongarm->api_version = 1;
2005
-  $strongarm->name = 'user_email_verification';
2006
-  $strongarm->value = 1;
2007
-  $export['user_email_verification'] = $strongarm;
2008
-
2009
-  $strongarm = new stdClass;
2010
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2011
-  $strongarm->api_version = 1;
2012
-  $strongarm->name = 'user_mail_password_reset_body';
2013
-  $strongarm->value = 'Hello,
1915
+    );
1916
+    $export['theme_zen_settings'] = $strongarm;
1917
+
1918
+    $strongarm = new stdClass;
1919
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1920
+    $strongarm->api_version = 1;
1921
+    $strongarm->name = 'upload_extensions_2938987599';
1922
+    $strongarm->value = 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp';
1923
+    $export['upload_extensions_2938987599'] = $strongarm;
1924
+
1925
+    $strongarm = new stdClass;
1926
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1927
+    $strongarm->api_version = 1;
1928
+    $strongarm->name = 'upload_extensions_3519698132';
1929
+    $strongarm->value = 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp';
1930
+    $export['upload_extensions_3519698132'] = $strongarm;
1931
+
1932
+    $strongarm = new stdClass;
1933
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1934
+    $strongarm->api_version = 1;
1935
+    $strongarm->name = 'upload_extensions_default';
1936
+    $strongarm->value = 'jpg jpeg gif png txt pdf';
1937
+    $export['upload_extensions_default'] = $strongarm;
1938
+
1939
+    $strongarm = new stdClass;
1940
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1941
+    $strongarm->api_version = 1;
1942
+    $strongarm->name = 'upload_forum';
1943
+    $strongarm->value = '0';
1944
+    $export['upload_forum'] = $strongarm;
1945
+
1946
+    $strongarm = new stdClass;
1947
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1948
+    $strongarm->api_version = 1;
1949
+    $strongarm->name = 'upload_list_default';
1950
+    $strongarm->value = '0';
1951
+    $export['upload_list_default'] = $strongarm;
1952
+
1953
+    $strongarm = new stdClass;
1954
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1955
+    $strongarm->api_version = 1;
1956
+    $strongarm->name = 'upload_max_resolution';
1957
+    $strongarm->value = '0';
1958
+    $export['upload_max_resolution'] = $strongarm;
1959
+
1960
+    $strongarm = new stdClass;
1961
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1962
+    $strongarm->api_version = 1;
1963
+    $strongarm->name = 'upload_uploadsize_2938987599';
1964
+    $strongarm->value = '2';
1965
+    $export['upload_uploadsize_2938987599'] = $strongarm;
1966
+
1967
+    $strongarm = new stdClass;
1968
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1969
+    $strongarm->api_version = 1;
1970
+    $strongarm->name = 'upload_uploadsize_3519698132';
1971
+    $strongarm->value = '2';
1972
+    $export['upload_uploadsize_3519698132'] = $strongarm;
1973
+
1974
+    $strongarm = new stdClass;
1975
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1976
+    $strongarm->api_version = 1;
1977
+    $strongarm->name = 'upload_uploadsize_default';
1978
+    $strongarm->value = '2';
1979
+    $export['upload_uploadsize_default'] = $strongarm;
1980
+
1981
+    $strongarm = new stdClass;
1982
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1983
+    $strongarm->api_version = 1;
1984
+    $strongarm->name = 'upload_usersize_2938987599';
1985
+    $strongarm->value = '1000';
1986
+    $export['upload_usersize_2938987599'] = $strongarm;
1987
+
1988
+    $strongarm = new stdClass;
1989
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1990
+    $strongarm->api_version = 1;
1991
+    $strongarm->name = 'upload_usersize_3519698132';
1992
+    $strongarm->value = '1000';
1993
+    $export['upload_usersize_3519698132'] = $strongarm;
1994
+
1995
+    $strongarm = new stdClass;
1996
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
1997
+    $strongarm->api_version = 1;
1998
+    $strongarm->name = 'upload_usersize_default';
1999
+    $strongarm->value = '10';
2000
+    $export['upload_usersize_default'] = $strongarm;
2001
+
2002
+    $strongarm = new stdClass;
2003
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2004
+    $strongarm->api_version = 1;
2005
+    $strongarm->name = 'user_email_verification';
2006
+    $strongarm->value = 1;
2007
+    $export['user_email_verification'] = $strongarm;
2008
+
2009
+    $strongarm = new stdClass;
2010
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2011
+    $strongarm->api_version = 1;
2012
+    $strongarm->name = 'user_mail_password_reset_body';
2013
+    $strongarm->value = 'Hello,
2014 2014
 
2015 2015
 A request to reset the password for your account has been made at !site.
2016 2016
 
@@ -2023,20 +2023,20 @@  discard block
 block discarded – undo
2023 2023
 After logging in, you will be redirected to !edit_uri so you can change your password.
2024 2024
 
2025 2025
 --  !site team';
2026
-  $export['user_mail_password_reset_body'] = $strongarm;
2026
+    $export['user_mail_password_reset_body'] = $strongarm;
2027 2027
 
2028
-  $strongarm = new stdClass;
2029
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2030
-  $strongarm->api_version = 1;
2031
-  $strongarm->name = 'user_mail_password_reset_subject';
2032
-  $strongarm->value = 'Replacement login information for !mailto at !site';
2033
-  $export['user_mail_password_reset_subject'] = $strongarm;
2028
+    $strongarm = new stdClass;
2029
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2030
+    $strongarm->api_version = 1;
2031
+    $strongarm->name = 'user_mail_password_reset_subject';
2032
+    $strongarm->value = 'Replacement login information for !mailto at !site';
2033
+    $export['user_mail_password_reset_subject'] = $strongarm;
2034 2034
 
2035
-  $strongarm = new stdClass;
2036
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2037
-  $strongarm->api_version = 1;
2038
-  $strongarm->name = 'user_mail_register_admin_created_body';
2039
-  $strongarm->value = 'Hello,
2035
+    $strongarm = new stdClass;
2036
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2037
+    $strongarm->api_version = 1;
2038
+    $strongarm->name = 'user_mail_register_admin_created_body';
2039
+    $strongarm->value = 'Hello,
2040 2040
 
2041 2041
 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.
2042 2042
 
@@ -2049,20 +2049,20 @@  discard block
 block discarded – undo
2049 2049
 After logging in, you will be redirected to !edit_uri so you can change your password.
2050 2050
 
2051 2051
 --  !site team';
2052
-  $export['user_mail_register_admin_created_body'] = $strongarm;
2052
+    $export['user_mail_register_admin_created_body'] = $strongarm;
2053 2053
 
2054
-  $strongarm = new stdClass;
2055
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2056
-  $strongarm->api_version = 1;
2057
-  $strongarm->name = 'user_mail_register_admin_created_subject';
2058
-  $strongarm->value = 'An administrator created an account for you at !site';
2059
-  $export['user_mail_register_admin_created_subject'] = $strongarm;
2054
+    $strongarm = new stdClass;
2055
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2056
+    $strongarm->api_version = 1;
2057
+    $strongarm->name = 'user_mail_register_admin_created_subject';
2058
+    $strongarm->value = 'An administrator created an account for you at !site';
2059
+    $export['user_mail_register_admin_created_subject'] = $strongarm;
2060 2060
 
2061
-  $strongarm = new stdClass;
2062
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2063
-  $strongarm->api_version = 1;
2064
-  $strongarm->name = 'user_mail_register_no_approval_required_body';
2065
-  $strongarm->value = 'Hello,
2061
+    $strongarm = new stdClass;
2062
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2063
+    $strongarm->api_version = 1;
2064
+    $strongarm->name = 'user_mail_register_no_approval_required_body';
2065
+    $strongarm->value = 'Hello,
2066 2066
 
2067 2067
 Thank you for registering at !site. You may now log in to !uri_brief by clicking on this link or copying and pasting it in your browser:
2068 2068
 
@@ -2073,38 +2073,38 @@  discard block
 block discarded – undo
2073 2073
 After logging in, you will be redirected to !edit_uri, where you can choose your password.
2074 2074
 
2075 2075
 --  !site team';
2076
-  $export['user_mail_register_no_approval_required_body'] = $strongarm;
2076
+    $export['user_mail_register_no_approval_required_body'] = $strongarm;
2077 2077
 
2078
-  $strongarm = new stdClass;
2079
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2080
-  $strongarm->api_version = 1;
2081
-  $strongarm->name = 'user_mail_register_no_approval_required_subject';
2082
-  $strongarm->value = 'Account details for !mailto at !site';
2083
-  $export['user_mail_register_no_approval_required_subject'] = $strongarm;
2078
+    $strongarm = new stdClass;
2079
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2080
+    $strongarm->api_version = 1;
2081
+    $strongarm->name = 'user_mail_register_no_approval_required_subject';
2082
+    $strongarm->value = 'Account details for !mailto at !site';
2083
+    $export['user_mail_register_no_approval_required_subject'] = $strongarm;
2084 2084
 
2085
-  $strongarm = new stdClass;
2086
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2087
-  $strongarm->api_version = 1;
2088
-  $strongarm->name = 'user_mail_register_pending_approval_body';
2089
-  $strongarm->value = 'Hello,
2085
+    $strongarm = new stdClass;
2086
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2087
+    $strongarm->api_version = 1;
2088
+    $strongarm->name = 'user_mail_register_pending_approval_body';
2089
+    $strongarm->value = 'Hello,
2090 2090
 
2091 2091
 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.
2092 2092
 
2093 2093
 --  !site team';
2094
-  $export['user_mail_register_pending_approval_body'] = $strongarm;
2094
+    $export['user_mail_register_pending_approval_body'] = $strongarm;
2095 2095
 
2096
-  $strongarm = new stdClass;
2097
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2098
-  $strongarm->api_version = 1;
2099
-  $strongarm->name = 'user_mail_register_pending_approval_subject';
2100
-  $strongarm->value = 'Account details for !mailto at !site (pending admin approval)';
2101
-  $export['user_mail_register_pending_approval_subject'] = $strongarm;
2096
+    $strongarm = new stdClass;
2097
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2098
+    $strongarm->api_version = 1;
2099
+    $strongarm->name = 'user_mail_register_pending_approval_subject';
2100
+    $strongarm->value = 'Account details for !mailto at !site (pending admin approval)';
2101
+    $export['user_mail_register_pending_approval_subject'] = $strongarm;
2102 2102
 
2103
-  $strongarm = new stdClass;
2104
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2105
-  $strongarm->api_version = 1;
2106
-  $strongarm->name = 'user_mail_status_activated_body';
2107
-  $strongarm->value = 'Hello,
2103
+    $strongarm = new stdClass;
2104
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2105
+    $strongarm->api_version = 1;
2106
+    $strongarm->name = 'user_mail_status_activated_body';
2107
+    $strongarm->value = 'Hello,
2108 2108
 
2109 2109
 Your account at !site has been activated.
2110 2110
 
@@ -2118,134 +2118,134 @@  discard block
 block discarded – undo
2118 2118
 
2119 2119
 --  !site team
2120 2120
 ';
2121
-  $export['user_mail_status_activated_body'] = $strongarm;
2122
-
2123
-  $strongarm = new stdClass;
2124
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2125
-  $strongarm->api_version = 1;
2126
-  $strongarm->name = 'user_mail_status_activated_notify';
2127
-  $strongarm->value = 1;
2128
-  $export['user_mail_status_activated_notify'] = $strongarm;
2129
-
2130
-  $strongarm = new stdClass;
2131
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2132
-  $strongarm->api_version = 1;
2133
-  $strongarm->name = 'user_mail_status_activated_subject';
2134
-  $strongarm->value = 'Account details for !mailto at !site (approved)';
2135
-  $export['user_mail_status_activated_subject'] = $strongarm;
2136
-
2137
-  $strongarm = new stdClass;
2138
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2139
-  $strongarm->api_version = 1;
2140
-  $strongarm->name = 'user_mail_status_blocked_body';
2141
-  $strongarm->value = 'Hello,
2121
+    $export['user_mail_status_activated_body'] = $strongarm;
2122
+
2123
+    $strongarm = new stdClass;
2124
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2125
+    $strongarm->api_version = 1;
2126
+    $strongarm->name = 'user_mail_status_activated_notify';
2127
+    $strongarm->value = 1;
2128
+    $export['user_mail_status_activated_notify'] = $strongarm;
2129
+
2130
+    $strongarm = new stdClass;
2131
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2132
+    $strongarm->api_version = 1;
2133
+    $strongarm->name = 'user_mail_status_activated_subject';
2134
+    $strongarm->value = 'Account details for !mailto at !site (approved)';
2135
+    $export['user_mail_status_activated_subject'] = $strongarm;
2136
+
2137
+    $strongarm = new stdClass;
2138
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2139
+    $strongarm->api_version = 1;
2140
+    $strongarm->name = 'user_mail_status_blocked_body';
2141
+    $strongarm->value = 'Hello,
2142 2142
 
2143 2143
 Your account on !site has been blocked.
2144 2144
 
2145 2145
 --  !site team';
2146
-  $export['user_mail_status_blocked_body'] = $strongarm;
2147
-
2148
-  $strongarm = new stdClass;
2149
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2150
-  $strongarm->api_version = 1;
2151
-  $strongarm->name = 'user_mail_status_blocked_notify';
2152
-  $strongarm->value = 0;
2153
-  $export['user_mail_status_blocked_notify'] = $strongarm;
2154
-
2155
-  $strongarm = new stdClass;
2156
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2157
-  $strongarm->api_version = 1;
2158
-  $strongarm->name = 'user_mail_status_blocked_subject';
2159
-  $strongarm->value = 'Account details for !mailto at !site (blocked)';
2160
-  $export['user_mail_status_blocked_subject'] = $strongarm;
2161
-
2162
-  $strongarm = new stdClass;
2163
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2164
-  $strongarm->api_version = 1;
2165
-  $strongarm->name = 'user_mail_status_deleted_body';
2166
-  $strongarm->value = 'Hello,
2146
+    $export['user_mail_status_blocked_body'] = $strongarm;
2147
+
2148
+    $strongarm = new stdClass;
2149
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2150
+    $strongarm->api_version = 1;
2151
+    $strongarm->name = 'user_mail_status_blocked_notify';
2152
+    $strongarm->value = 0;
2153
+    $export['user_mail_status_blocked_notify'] = $strongarm;
2154
+
2155
+    $strongarm = new stdClass;
2156
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2157
+    $strongarm->api_version = 1;
2158
+    $strongarm->name = 'user_mail_status_blocked_subject';
2159
+    $strongarm->value = 'Account details for !mailto at !site (blocked)';
2160
+    $export['user_mail_status_blocked_subject'] = $strongarm;
2161
+
2162
+    $strongarm = new stdClass;
2163
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2164
+    $strongarm->api_version = 1;
2165
+    $strongarm->name = 'user_mail_status_deleted_body';
2166
+    $strongarm->value = 'Hello,
2167 2167
 
2168 2168
 Your account on !site has been deleted.
2169 2169
 
2170 2170
 --  !site team';
2171
-  $export['user_mail_status_deleted_body'] = $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_mail_status_deleted_notify';
2177
-  $strongarm->value = 0;
2178
-  $export['user_mail_status_deleted_notify'] = $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_mail_status_deleted_subject';
2184
-  $strongarm->value = 'Account details for !mailto at !site (deleted)';
2185
-  $export['user_mail_status_deleted_subject'] = $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_pictures';
2191
-  $strongarm->value = '1';
2192
-  $export['user_pictures'] = $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_default';
2198
-  $strongarm->value = '';
2199
-  $export['user_picture_default'] = $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_dimensions';
2205
-  $strongarm->value = '85x85';
2206
-  $export['user_picture_dimensions'] = $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_picture_file_size';
2212
-  $strongarm->value = '30';
2213
-  $export['user_picture_file_size'] = $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_picture_guidelines';
2219
-  $strongarm->value = '';
2220
-  $export['user_picture_guidelines'] = $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_picture_path';
2226
-  $strongarm->value = 'pictures';
2227
-  $export['user_picture_path'] = $strongarm;
2228
-
2229
-  $strongarm = new stdClass;
2230
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2231
-  $strongarm->api_version = 1;
2232
-  $strongarm->name = 'user_register';
2233
-  $strongarm->value = '1';
2234
-  $export['user_register'] = $strongarm;
2235
-
2236
-  $strongarm = new stdClass;
2237
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2238
-  $strongarm->api_version = 1;
2239
-  $strongarm->name = 'user_registration_help';
2240
-  $strongarm->value = '';
2241
-  $export['user_registration_help'] = $strongarm;
2242
-
2243
-  $strongarm = new stdClass;
2244
-  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2245
-  $strongarm->api_version = 1;
2246
-  $strongarm->name = 'user_signatures';
2247
-  $strongarm->value = '1';
2248
-  $export['user_signatures'] = $strongarm;
2249
-
2250
-  return $export;
2171
+    $export['user_mail_status_deleted_body'] = $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_mail_status_deleted_notify';
2177
+    $strongarm->value = 0;
2178
+    $export['user_mail_status_deleted_notify'] = $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_mail_status_deleted_subject';
2184
+    $strongarm->value = 'Account details for !mailto at !site (deleted)';
2185
+    $export['user_mail_status_deleted_subject'] = $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_pictures';
2191
+    $strongarm->value = '1';
2192
+    $export['user_pictures'] = $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_default';
2198
+    $strongarm->value = '';
2199
+    $export['user_picture_default'] = $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_dimensions';
2205
+    $strongarm->value = '85x85';
2206
+    $export['user_picture_dimensions'] = $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_picture_file_size';
2212
+    $strongarm->value = '30';
2213
+    $export['user_picture_file_size'] = $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_picture_guidelines';
2219
+    $strongarm->value = '';
2220
+    $export['user_picture_guidelines'] = $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_picture_path';
2226
+    $strongarm->value = 'pictures';
2227
+    $export['user_picture_path'] = $strongarm;
2228
+
2229
+    $strongarm = new stdClass;
2230
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2231
+    $strongarm->api_version = 1;
2232
+    $strongarm->name = 'user_register';
2233
+    $strongarm->value = '1';
2234
+    $export['user_register'] = $strongarm;
2235
+
2236
+    $strongarm = new stdClass;
2237
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2238
+    $strongarm->api_version = 1;
2239
+    $strongarm->name = 'user_registration_help';
2240
+    $strongarm->value = '';
2241
+    $export['user_registration_help'] = $strongarm;
2242
+
2243
+    $strongarm = new stdClass;
2244
+    $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
2245
+    $strongarm->api_version = 1;
2246
+    $strongarm->name = 'user_signatures';
2247
+    $strongarm->value = '1';
2248
+    $export['user_signatures'] = $strongarm;
2249
+
2250
+    return $export;
2251 2251
 }
Please login to merge, or discard this patch.