features_extra_test.features.fe_block_settings.inc 778 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * @file
  4. * features_extra_test.features.fe_block_settings.inc
  5. */
  6. /**
  7. * Implements hook_default_fe_block_settings().
  8. */
  9. function features_extra_test_default_fe_block_settings() {
  10. $export = array();
  11. $export['version'] = '2.0';
  12. $export['block-features_extra_test_block'] = array(
  13. 'cache' => 8,
  14. 'css_class' => 'test-class',
  15. 'custom' => '0',
  16. 'machine_name' => 'features_extra_test_block',
  17. 'module' => 'block',
  18. 'node_types' => array(),
  19. 'pages' => '',
  20. 'roles' => array(),
  21. 'themes' => array(
  22. 'bartik' => array(
  23. 'region' => 'content',
  24. 'status' => '1',
  25. 'theme' => 'bartik',
  26. 'weight' => '0',
  27. ),
  28. ),
  29. 'title' => 'Features Extra',
  30. 'visibility' => '0',
  31. );
  32. return $export;
  33. }