added custom layout to panles, created thematique anchor links menu

This commit is contained in:
2017-02-07 17:38:51 +01:00
parent e2b8a1ae80
commit 46db2145e5
25 changed files with 495 additions and 67 deletions
@@ -0,0 +1,43 @@
<?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['clameursmod-thematiques-anchor-links'] = array(
'cache' => -1,
'custom' => 0,
'delta' => 'thematiques-anchor-links',
'i18n_mode' => 0,
'module' => 'clameursmod',
'node_types' => array(),
'pages' => '',
'roles' => array(),
'themes' => array(
'adminimal' => array(
'region' => '',
'status' => 0,
'theme' => 'adminimal',
'weight' => 0,
),
'clameurs' => array(
'region' => '',
'status' => 0,
'theme' => 'clameurs',
'weight' => 0,
),
),
'title' => '',
'visibility' => 0,
);
return $export;
}