mirror of https://github.com/BOINC/boinc.git
83 lines
3.0 KiB
PHP
83 lines
3.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Implementation of hook_strongarm().
|
|
*/
|
|
function teams_strongarm() {
|
|
$export = array();
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'comment_anonymous_team';
|
|
$strongarm->value = 0;
|
|
$export['comment_anonymous_team'] = $strongarm;
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'comment_controls_team';
|
|
$strongarm->value = '3';
|
|
$export['comment_controls_team'] = $strongarm;
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'comment_default_mode_team';
|
|
$strongarm->value = '4';
|
|
$export['comment_default_mode_team'] = $strongarm;
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'comment_default_order_team';
|
|
$strongarm->value = '1';
|
|
$export['comment_default_order_team'] = $strongarm;
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'comment_default_per_page_team';
|
|
$strongarm->value = '50';
|
|
$export['comment_default_per_page_team'] = $strongarm;
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'comment_form_location_team';
|
|
$strongarm->value = '0';
|
|
$export['comment_form_location_team'] = $strongarm;
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'comment_preview_team';
|
|
$strongarm->value = '1';
|
|
$export['comment_preview_team'] = $strongarm;
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'comment_subject_field_team';
|
|
$strongarm->value = '1';
|
|
$export['comment_subject_field_team'] = $strongarm;
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'comment_team';
|
|
$strongarm->value = '0';
|
|
$export['comment_team'] = $strongarm;
|
|
|
|
$strongarm = new stdClass;
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'node_options_team';
|
|
$strongarm->value = array(
|
|
0 => 'status',
|
|
);
|
|
$export['node_options_team'] = $strongarm;
|
|
|
|
return $export;
|
|
}
|