Projet

Général

Profil

Paste
Télécharger (811 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / block_class / tests / block_class_fe_block_test.features.fe_block_settings.inc @ e6d32a8d

1
<?php
2
/**
3
 * @file
4
 * block_class_fe_block_test.features.fe_block_settings.inc
5
 */
6

    
7
/**
8
 * Implements hook_default_fe_block_settings().
9
 */
10
function block_class_fe_block_test_default_fe_block_settings() {
11
  $export = array();
12

    
13
  $export['version'] = '2.0';
14

    
15
  $export['user-online'] = array(
16
    'cache' => -1,
17
    'css_class' => 'fe_block-class1 fe_block-class2 fe_block-class3',
18
    'custom' => 0,
19
    'delta' => 'online',
20
    'module' => 'user',
21
    'node_types' => array(),
22
    'pages' => '<front>',
23
    'roles' => array(),
24
    'themes' => array(
25
      'bartik' => array(
26
        'region' => 'content',
27
        'status' => 1,
28
        'theme' => 'bartik',
29
        'weight' => -7,
30
      ),
31
    ),
32
    'title' => 'Block Class Test Who\'s Online with FE Block',
33
    'visibility' => 1,
34
  );
35

    
36
  return $export;
37
}