popsu_colloques.strongarm.inc 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. /**
  3. * @file
  4. * popsu_colloques.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function popsu_colloques_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_colloque';
  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' => '1',
  40. ),
  41. 'path' => array(
  42. 'weight' => '5',
  43. ),
  44. ),
  45. 'display' => array(),
  46. ),
  47. );
  48. $export['field_bundle_settings_node__popsu_colloque'] = $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_colloque';
  53. $strongarm->value = '0';
  54. $export['language_content_type_popsu_colloque'] = $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_colloque';
  59. $strongarm->value = array(
  60. 0 => 'menu-popsu1-menu',
  61. 1 => 'menu-popsu2-menu',
  62. );
  63. $export['menu_options_popsu_colloque'] = $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 = 'menu_parent_popsu_colloque';
  68. $strongarm->value = 'menu-popsu1-menu:0';
  69. $export['menu_parent_popsu_colloque'] = $strongarm;
  70. $strongarm = new stdClass();
  71. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  72. $strongarm->api_version = 1;
  73. $strongarm->name = 'node_options_popsu_colloque';
  74. $strongarm->value = array(
  75. 0 => 'status',
  76. 1 => 'revision',
  77. );
  78. $export['node_options_popsu_colloque'] = $strongarm;
  79. $strongarm = new stdClass();
  80. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  81. $strongarm->api_version = 1;
  82. $strongarm->name = 'node_preview_popsu_colloque';
  83. $strongarm->value = '0';
  84. $export['node_preview_popsu_colloque'] = $strongarm;
  85. $strongarm = new stdClass();
  86. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  87. $strongarm->api_version = 1;
  88. $strongarm->name = 'node_submitted_popsu_colloque';
  89. $strongarm->value = 0;
  90. $export['node_submitted_popsu_colloque'] = $strongarm;
  91. return $export;
  92. }