popsu_special_pages.strongarm.inc 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. /**
  3. * @file
  4. * popsu_special_pages.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function popsu_special_pages_strongarm() {
  10. $export = array();
  11. $strongarm = new stdClass();
  12. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  13. $strongarm->api_version = 1;
  14. $strongarm->name = 'field_bundle_settings_node__popsu_special';
  15. $strongarm->value = array(
  16. 'view_modes' => array(
  17. 'teaser' => array(
  18. 'custom_settings' => TRUE,
  19. ),
  20. 'full' => array(
  21. 'custom_settings' => FALSE,
  22. ),
  23. 'rss' => array(
  24. 'custom_settings' => FALSE,
  25. ),
  26. 'search_index' => array(
  27. 'custom_settings' => FALSE,
  28. ),
  29. 'search_result' => array(
  30. 'custom_settings' => FALSE,
  31. ),
  32. 'token' => array(
  33. 'custom_settings' => FALSE,
  34. ),
  35. ),
  36. 'extra_fields' => array(
  37. 'form' => array(
  38. 'title' => array(
  39. 'weight' => '3',
  40. ),
  41. 'path' => array(
  42. 'weight' => '5',
  43. ),
  44. ),
  45. 'display' => array(),
  46. ),
  47. );
  48. $export['field_bundle_settings_node__popsu_special'] = $strongarm;
  49. $strongarm = new stdClass();
  50. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  51. $strongarm->api_version = 1;
  52. $strongarm->name = 'language_content_type_popsu_special';
  53. $strongarm->value = '0';
  54. $export['language_content_type_popsu_special'] = $strongarm;
  55. $strongarm = new stdClass();
  56. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  57. $strongarm->api_version = 1;
  58. $strongarm->name = 'menu_options_popsu_special';
  59. $strongarm->value = array(
  60. 0 => 'menu-popsu1-menu',
  61. 1 => 'menu-popsu2-menu',
  62. 2 => 'menu-popsu-menu-popsu-europe',
  63. 3 => 'main-menu',
  64. );
  65. $export['menu_options_popsu_special'] = $strongarm;
  66. $strongarm = new stdClass();
  67. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  68. $strongarm->api_version = 1;
  69. $strongarm->name = 'menu_parent_popsu_special';
  70. $strongarm->value = 'menu-popsu1-menu:0';
  71. $export['menu_parent_popsu_special'] = $strongarm;
  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 = 'node_options_popsu_special';
  76. $strongarm->value = array(
  77. 0 => 'status',
  78. 1 => 'revision',
  79. );
  80. $export['node_options_popsu_special'] = $strongarm;
  81. $strongarm = new stdClass();
  82. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  83. $strongarm->api_version = 1;
  84. $strongarm->name = 'node_preview_popsu_special';
  85. $strongarm->value = '0';
  86. $export['node_preview_popsu_special'] = $strongarm;
  87. $strongarm = new stdClass();
  88. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  89. $strongarm->api_version = 1;
  90. $strongarm->name = 'node_submitted_popsu_special';
  91. $strongarm->value = 0;
  92. $export['node_submitted_popsu_special'] = $strongarm;
  93. return $export;
  94. }