Advertisement
Guest User

socios.strongarm.inc

a guest
Jan 24th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.58 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Implementation of hook_strongarm().
  5.  */
  6. function socios_strongarm() {
  7.   $export = array();
  8.   $strongarm = new stdClass;
  9.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  10.   $strongarm->api_version = 1;
  11.   $strongarm->name = 'comment_anonymous_socios';
  12.   $strongarm->value = 0;
  13.  
  14.   $export['comment_anonymous_socios'] = $strongarm;
  15.   $strongarm = new stdClass;
  16.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  17.   $strongarm->api_version = 1;
  18.   $strongarm->name = 'comment_controls_socios';
  19.   $strongarm->value = '3';
  20.  
  21.   $export['comment_controls_socios'] = $strongarm;
  22.   $strongarm = new stdClass;
  23.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  24.   $strongarm->api_version = 1;
  25.   $strongarm->name = 'comment_default_mode_socios';
  26.   $strongarm->value = '4';
  27.  
  28.   $export['comment_default_mode_socios'] = $strongarm;
  29.   $strongarm = new stdClass;
  30.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  31.   $strongarm->api_version = 1;
  32.   $strongarm->name = 'comment_default_order_socios';
  33.   $strongarm->value = '1';
  34.  
  35.   $export['comment_default_order_socios'] = $strongarm;
  36.   $strongarm = new stdClass;
  37.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  38.   $strongarm->api_version = 1;
  39.   $strongarm->name = 'comment_default_per_page_socios';
  40.   $strongarm->value = '50';
  41.  
  42.   $export['comment_default_per_page_socios'] = $strongarm;
  43.   $strongarm = new stdClass;
  44.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  45.   $strongarm->api_version = 1;
  46.   $strongarm->name = 'comment_form_location_socios';
  47.   $strongarm->value = '0';
  48.  
  49.   $export['comment_form_location_socios'] = $strongarm;
  50.   $strongarm = new stdClass;
  51.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  52.   $strongarm->api_version = 1;
  53.   $strongarm->name = 'comment_preview_socios';
  54.   $strongarm->value = '1';
  55.  
  56.   $export['comment_preview_socios'] = $strongarm;
  57.   $strongarm = new stdClass;
  58.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  59.   $strongarm->api_version = 1;
  60.   $strongarm->name = 'comment_socios';
  61.   $strongarm->value = '0';
  62.  
  63.   $export['comment_socios'] = $strongarm;
  64.   $strongarm = new stdClass;
  65.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  66.   $strongarm->api_version = 1;
  67.   $strongarm->name = 'comment_subject_field_socios';
  68.   $strongarm->value = '1';
  69.  
  70.   $export['comment_subject_field_socios'] = $strongarm;
  71.   $strongarm = new stdClass;
  72.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  73.   $strongarm->api_version = 1;
  74.   $strongarm->name = 'content_extra_weights_socios';
  75.   $strongarm->value = array(
  76.     'title' => '-5',
  77.     'body_field' => '0',
  78.     'revision_information' => '20',
  79.     'author' => '20',
  80.     'options' => '25',
  81.     'comment_settings' => '30',
  82.     'menu' => '-2',
  83.     'book' => '10',
  84.     'attachments' => '30',
  85.     'og_nodeapi' => '0',
  86.   );
  87.  
  88.   $export['content_extra_weights_socios'] = $strongarm;
  89.   $strongarm = new stdClass;
  90.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  91.   $strongarm->api_version = 1;
  92.   $strongarm->name = 'language_content_type_socios';
  93.   $strongarm->value = '0';
  94.  
  95.   $export['language_content_type_socios'] = $strongarm;
  96.   $strongarm = new stdClass;
  97.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  98.   $strongarm->api_version = 1;
  99.   $strongarm->name = 'node_options_socios';
  100.   $strongarm->value = array(
  101.     0 => 'status',
  102.     1 => 'promote',
  103.     2 => 'revision',
  104.   );
  105.  
  106.   $export['node_options_socios'] = $strongarm;
  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 = 'og_content_type_usage_socios';
  111.   $strongarm->value = 'group_post_standard';
  112.  
  113.   $export['og_content_type_usage_socios'] = $strongarm;
  114.   $strongarm = new stdClass;
  115.   $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  116.   $strongarm->api_version = 1;
  117.   $strongarm->name = 'upload_socios';
  118.   $strongarm->value = '1';
  119.  
  120.   $export['upload_socios'] = $strongarm;
  121.   return $export;
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement