popsu_structure.strongarm.inc 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /**
  3. * @file
  4. * popsu_structure.strongarm.inc
  5. */
  6. /**
  7. * Implements hook_strongarm().
  8. */
  9. function popsu_structure_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_europe';
  15. $strongarm->value = array(
  16. 'view_modes' => array(),
  17. 'extra_fields' => array(
  18. 'form' => array(
  19. 'title' => array(
  20. 'weight' => '8',
  21. ),
  22. 'path' => array(
  23. 'weight' => '4',
  24. ),
  25. ),
  26. 'display' => array(),
  27. ),
  28. );
  29. $export['field_bundle_settings_node__popsu_projet_europe'] = $strongarm;
  30. $strongarm = new stdClass();
  31. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  32. $strongarm->api_version = 1;
  33. $strongarm->name = 'language_content_type_popsu_projet_europe';
  34. $strongarm->value = '0';
  35. $export['language_content_type_popsu_projet_europe'] = $strongarm;
  36. $strongarm = new stdClass();
  37. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  38. $strongarm->api_version = 1;
  39. $strongarm->name = 'menu_options_popsu_projet_europe';
  40. $strongarm->value = array();
  41. $export['menu_options_popsu_projet_europe'] = $strongarm;
  42. $strongarm = new stdClass();
  43. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  44. $strongarm->api_version = 1;
  45. $strongarm->name = 'menu_parent_popsu_projet_europe';
  46. $strongarm->value = 'main-menu:0';
  47. $export['menu_parent_popsu_projet_europe'] = $strongarm;
  48. $strongarm = new stdClass();
  49. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  50. $strongarm->api_version = 1;
  51. $strongarm->name = 'node_options_popsu_projet_europe';
  52. $strongarm->value = array(
  53. 0 => 'status',
  54. 1 => 'revision',
  55. );
  56. $export['node_options_popsu_projet_europe'] = $strongarm;
  57. $strongarm = new stdClass();
  58. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  59. $strongarm->api_version = 1;
  60. $strongarm->name = 'node_preview_popsu_projet_europe';
  61. $strongarm->value = '0';
  62. $export['node_preview_popsu_projet_europe'] = $strongarm;
  63. $strongarm = new stdClass();
  64. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  65. $strongarm->api_version = 1;
  66. $strongarm->name = 'node_submitted_popsu_projet_europe';
  67. $strongarm->value = 0;
  68. $export['node_submitted_popsu_projet_europe'] = $strongarm;
  69. return $export;
  70. }