page.strongarm.inc 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 = 'menu_options_page';
  15. $strongarm->value = array();
  16. $export['menu_options_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 = 'menu_parent_page';
  21. $strongarm->value = 'main-menu:0';
  22. $export['menu_parent_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 = 'node_options_page';
  27. $strongarm->value = array(
  28. 0 => 'status',
  29. );
  30. $export['node_options_page'] = $strongarm;
  31. $strongarm = new stdClass();
  32. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  33. $strongarm->api_version = 1;
  34. $strongarm->name = 'node_preview_page';
  35. $strongarm->value = '1';
  36. $export['node_preview_page'] = $strongarm;
  37. $strongarm = new stdClass();
  38. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  39. $strongarm->api_version = 1;
  40. $strongarm->name = 'node_submitted_page';
  41. $strongarm->value = 0;
  42. $export['node_submitted_page'] = $strongarm;
  43. $strongarm = new stdClass();
  44. $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
  45. $strongarm->api_version = 1;
  46. $strongarm->name = 'pathauto_node_page_pattern';
  47. $strongarm->value = '';
  48. $export['pathauto_node_page_pattern'] = $strongarm;
  49. return $export;
  50. }