page.strongarm.inc 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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 = 'additional_settings__active_tab_page';
  15. $strongarm->value = 'edit-menu';
  16. $export['additional_settings__active_tab_page'] = $strongarm;
  17. $strongarm = new stdClass();
  18. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  19. $strongarm->api_version = 1;
  20. $strongarm->name = 'devel_redirect_page';
  21. $strongarm->value = 0;
  22. $export['devel_redirect_page'] = $strongarm;
  23. $strongarm = new stdClass();
  24. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  25. $strongarm->api_version = 1;
  26. $strongarm->name = 'menu_options_page';
  27. $strongarm->value = array();
  28. $export['menu_options_page'] = $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 = 'menu_parent_page';
  33. $strongarm->value = 'main-menu:0';
  34. $export['menu_parent_page'] = $strongarm;
  35. $strongarm = new stdClass();
  36. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  37. $strongarm->api_version = 1;
  38. $strongarm->name = 'nodeformscols_field_placements_page_default';
  39. $strongarm->value = array(
  40. 'title' => array(
  41. 'region' => 'main',
  42. 'weight' => '0',
  43. 'has_required' => TRUE,
  44. 'title' => 'Title',
  45. ),
  46. 'additional_settings' => array(
  47. 'region' => 'main',
  48. 'weight' => '2',
  49. 'has_required' => FALSE,
  50. 'title' => 'Vertical tabs',
  51. 'hidden' => 0,
  52. ),
  53. 'actions' => array(
  54. 'region' => 'right',
  55. 'weight' => '1',
  56. 'has_required' => FALSE,
  57. 'title' => 'Enregistrer',
  58. 'hidden' => 0,
  59. ),
  60. 'body' => array(
  61. 'region' => 'main',
  62. 'weight' => '1',
  63. 'has_required' => FALSE,
  64. 'title' => 'Body',
  65. 'hidden' => 0,
  66. ),
  67. 'entity_translation_entity_form_language_update' => array(
  68. 'region' => 'main',
  69. 'weight' => '3',
  70. 'has_required' => FALSE,
  71. 'title' => NULL,
  72. 'hidden' => 0,
  73. ),
  74. 'workflow' => array(
  75. 'region' => 'right',
  76. 'weight' => '0',
  77. 'has_required' => FALSE,
  78. 'title' => 'Masqué',
  79. 'hidden' => 0,
  80. ),
  81. );
  82. $export['nodeformscols_field_placements_page_default'] = $strongarm;
  83. $strongarm = new stdClass();
  84. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  85. $strongarm->api_version = 1;
  86. $strongarm->name = 'node_options_page';
  87. $strongarm->value = array(
  88. 0 => 'status',
  89. );
  90. $export['node_options_page'] = $strongarm;
  91. $strongarm = new stdClass();
  92. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  93. $strongarm->api_version = 1;
  94. $strongarm->name = 'node_preview_page';
  95. $strongarm->value = '1';
  96. $export['node_preview_page'] = $strongarm;
  97. $strongarm = new stdClass();
  98. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  99. $strongarm->api_version = 1;
  100. $strongarm->name = 'node_submitted_page';
  101. $strongarm->value = 0;
  102. $export['node_submitted_page'] = $strongarm;
  103. $strongarm = new stdClass();
  104. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  105. $strongarm->api_version = 1;
  106. $strongarm->name = 'page_cache_maximum_age';
  107. $strongarm->value = '0';
  108. $export['page_cache_maximum_age'] = $strongarm;
  109. $strongarm = new stdClass();
  110. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  111. $strongarm->api_version = 1;
  112. $strongarm->name = 'pathauto_node_page_pattern';
  113. $strongarm->value = '';
  114. $export['pathauto_node_page_pattern'] = $strongarm;
  115. $strongarm = new stdClass();
  116. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  117. $strongarm->api_version = 1;
  118. $strongarm->name = 'workflow_page';
  119. $strongarm->value = array(
  120. 0 => 'node',
  121. );
  122. $export['workflow_page'] = $strongarm;
  123. return $export;
  124. }