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