2013-01-10 04:17:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of hook_strongarm().
|
|
|
|
*/
|
|
|
|
function news_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_news';
|
|
|
|
$strongarm->value = 0;
|
|
|
|
$export['comment_anonymous_news'] = $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_news';
|
|
|
|
$strongarm->value = '3';
|
|
|
|
$export['comment_controls_news'] = $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_news';
|
2013-09-18 03:02:01 +00:00
|
|
|
$strongarm->value = '2';
|
2013-01-10 04:17:37 +00:00
|
|
|
$export['comment_default_mode_news'] = $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_news';
|
|
|
|
$strongarm->value = '1';
|
|
|
|
$export['comment_default_order_news'] = $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_news';
|
|
|
|
$strongarm->value = '50';
|
|
|
|
$export['comment_default_per_page_news'] = $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_news';
|
2013-09-18 03:02:01 +00:00
|
|
|
$strongarm->value = '1';
|
2013-01-10 04:17:37 +00:00
|
|
|
$export['comment_form_location_news'] = $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_news';
|
|
|
|
$strongarm->value = '2';
|
|
|
|
$export['comment_news'] = $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_news';
|
2013-09-18 03:02:01 +00:00
|
|
|
$strongarm->value = '0';
|
2013-01-10 04:17:37 +00:00
|
|
|
$export['comment_preview_news'] = $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_news';
|
|
|
|
$strongarm->value = '1';
|
|
|
|
$export['comment_subject_field_news'] = $strongarm;
|
|
|
|
|
|
|
|
$strongarm = new stdClass;
|
|
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
|
|
$strongarm->api_version = 1;
|
|
|
|
$strongarm->name = 'language_content_type_news';
|
|
|
|
$strongarm->value = '0';
|
|
|
|
$export['language_content_type_news'] = $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_news';
|
|
|
|
$strongarm->value = array(
|
|
|
|
0 => 'status',
|
|
|
|
1 => 'promote',
|
|
|
|
);
|
|
|
|
$export['node_options_news'] = $strongarm;
|
|
|
|
|
|
|
|
return $export;
|
|
|
|
}
|