block_class_fe_block_test.features.fe_block_settings.inc 811 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * @file
  4. * block_class_fe_block_test.features.fe_block_settings.inc
  5. */
  6. /**
  7. * Implements hook_default_fe_block_settings().
  8. */
  9. function block_class_fe_block_test_default_fe_block_settings() {
  10. $export = array();
  11. $export['version'] = '2.0';
  12. $export['user-online'] = array(
  13. 'cache' => -1,
  14. 'css_class' => 'fe_block-class1 fe_block-class2 fe_block-class3',
  15. 'custom' => 0,
  16. 'delta' => 'online',
  17. 'module' => 'user',
  18. 'node_types' => array(),
  19. 'pages' => '<front>',
  20. 'roles' => array(),
  21. 'themes' => array(
  22. 'bartik' => array(
  23. 'region' => 'content',
  24. 'status' => 1,
  25. 'theme' => 'bartik',
  26. 'weight' => -7,
  27. ),
  28. ),
  29. 'title' => 'Block Class Test Who\'s Online with FE Block',
  30. 'visibility' => 1,
  31. );
  32. return $export;
  33. }