popsu_projets.strongarm.inc 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. /**
  3. * @file
  4. * popsu_projets.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function popsu_projets_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_projet';
  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. 'diff_standard' => array(
  36. 'custom_settings' => FALSE,
  37. ),
  38. ),
  39. 'extra_fields' => array(
  40. 'form' => array(
  41. 'title' => array(
  42. 'weight' => '4',
  43. ),
  44. 'path' => array(
  45. 'weight' => '12',
  46. ),
  47. ),
  48. 'display' => array(),
  49. ),
  50. );
  51. $export['field_bundle_settings_node__popsu_projet'] = $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_popsu_projet';
  56. $strongarm->value = '0';
  57. $export['language_content_type_popsu_projet'] = $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_popsu_projet';
  62. $strongarm->value = array(
  63. 0 => 'menu-popsu1-menu',
  64. 1 => 'menu-popsu2-menu',
  65. );
  66. $export['menu_options_popsu_projet'] = $strongarm;
  67. $strongarm = new stdClass();
  68. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  69. $strongarm->api_version = 1;
  70. $strongarm->name = 'menu_parent_popsu_projet';
  71. $strongarm->value = 'menu-popsu1-menu:1040';
  72. $export['menu_parent_popsu_projet'] = $strongarm;
  73. $strongarm = new stdClass();
  74. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  75. $strongarm->api_version = 1;
  76. $strongarm->name = 'node_options_popsu_projet';
  77. $strongarm->value = array(
  78. 0 => 'status',
  79. 1 => 'revision',
  80. );
  81. $export['node_options_popsu_projet'] = $strongarm;
  82. $strongarm = new stdClass();
  83. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  84. $strongarm->api_version = 1;
  85. $strongarm->name = 'node_preview_popsu_projet';
  86. $strongarm->value = '0';
  87. $export['node_preview_popsu_projet'] = $strongarm;
  88. $strongarm = new stdClass();
  89. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  90. $strongarm->api_version = 1;
  91. $strongarm->name = 'node_submitted_popsu_projet';
  92. $strongarm->value = 0;
  93. $export['node_submitted_popsu_projet'] = $strongarm;
  94. return $export;
  95. }