44 lines
849 B
PHP
44 lines
849 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* clameurs.features.fe_block_settings.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_default_fe_block_settings().
|
|
*/
|
|
function clameurs_default_fe_block_settings() {
|
|
$export = array();
|
|
|
|
$export['version'] = '2.0';
|
|
|
|
$export['menu-menu-footer-menu'] = array(
|
|
'cache' => -1,
|
|
'custom' => 0,
|
|
'delta' => 'menu-footer-menu',
|
|
'i18n_mode' => 0,
|
|
'module' => 'menu',
|
|
'node_types' => array(),
|
|
'pages' => '',
|
|
'roles' => array(),
|
|
'themes' => array(
|
|
'adminimal' => array(
|
|
'region' => '',
|
|
'status' => 0,
|
|
'theme' => 'adminimal',
|
|
'weight' => 0,
|
|
),
|
|
'clameurs' => array(
|
|
'region' => 'footer_top',
|
|
'status' => 1,
|
|
'theme' => 'clameurs',
|
|
'weight' => 0,
|
|
),
|
|
),
|
|
'title' => '<none>',
|
|
'visibility' => 0,
|
|
);
|
|
|
|
return $export;
|
|
}
|