page.strongarm.inc 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. /**
  3. * @file
  4. * page.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function page_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__page';
  15. $strongarm->value = array(
  16. 'view_modes' => array(
  17. 'teaser' => array(
  18. 'custom_settings' => TRUE,
  19. ),
  20. 'chapter' => array(
  21. 'custom_settings' => TRUE,
  22. ),
  23. 'full' => array(
  24. 'custom_settings' => FALSE,
  25. ),
  26. 'rss' => array(
  27. 'custom_settings' => FALSE,
  28. ),
  29. 'token' => array(
  30. 'custom_settings' => FALSE,
  31. ),
  32. ),
  33. 'extra_fields' => array(
  34. 'form' => array(),
  35. 'display' => array(
  36. 'workflow_current_state' => array(
  37. 'default' => array(
  38. 'weight' => '1',
  39. 'visible' => FALSE,
  40. ),
  41. ),
  42. 'workflow' => array(
  43. 'default' => array(
  44. 'weight' => '2',
  45. 'visible' => FALSE,
  46. ),
  47. ),
  48. ),
  49. ),
  50. );
  51. $export['field_bundle_settings_node__page'] = $strongarm;
  52. $strongarm = new stdClass();
  53. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  54. $strongarm->api_version = 1;
  55. $strongarm->name = 'language_content_type_page';
  56. $strongarm->value = '0';
  57. $export['language_content_type_page'] = $strongarm;
  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 = 'menu_options_page';
  62. $strongarm->value = array(
  63. 0 => 'menu-footer-menu',
  64. );
  65. $export['menu_options_page'] = $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_page';
  70. $strongarm->value = 'main-menu:0';
  71. $export['menu_parent_page'] = $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_page';
  76. $strongarm->value = array(
  77. 0 => 'status',
  78. );
  79. $export['node_options_page'] = $strongarm;
  80. $strongarm = new stdClass();
  81. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  82. $strongarm->api_version = 1;
  83. $strongarm->name = 'node_preview_page';
  84. $strongarm->value = '1';
  85. $export['node_preview_page'] = $strongarm;
  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 = 'node_submitted_page';
  90. $strongarm->value = 0;
  91. $export['node_submitted_page'] = $strongarm;
  92. $strongarm = new stdClass();
  93. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  94. $strongarm->api_version = 1;
  95. $strongarm->name = 'pathauto_node_page_pattern';
  96. $strongarm->value = '';
  97. $export['pathauto_node_page_pattern'] = $strongarm;
  98. return $export;
  99. }