12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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' => '',
- 'visibility' => 0,
- );
- return $export;
- }
|