clameurs.features.fe_block_settings.inc 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * @file
  4. * clameurs.features.fe_block_settings.inc
  5. */
  6. /**
  7. * Implements hook_default_fe_block_settings().
  8. */
  9. function clameurs_default_fe_block_settings() {
  10. $export = array();
  11. $export['version'] = '2.0';
  12. $export['menu-menu-footer-menu'] = array(
  13. 'cache' => -1,
  14. 'custom' => 0,
  15. 'delta' => 'menu-footer-menu',
  16. 'i18n_mode' => 0,
  17. 'module' => 'menu',
  18. 'node_types' => array(),
  19. 'pages' => '',
  20. 'roles' => array(),
  21. 'themes' => array(
  22. 'adminimal' => array(
  23. 'region' => '',
  24. 'status' => 0,
  25. 'theme' => 'adminimal',
  26. 'weight' => 0,
  27. ),
  28. 'clameurs' => array(
  29. 'region' => 'footer_top',
  30. 'status' => 1,
  31. 'theme' => 'clameurs',
  32. 'weight' => 0,
  33. ),
  34. ),
  35. 'title' => '<none>',
  36. 'visibility' => 0,
  37. );
  38. return $export;
  39. }