added footer menu, insert module, image field to page
This commit is contained in:
@@ -12,12 +12,12 @@ function clameurs_default_fe_block_settings() {
|
||||
|
||||
$export['version'] = '2.0';
|
||||
|
||||
$export['clameursmod-thematiques-anchor-links'] = array(
|
||||
$export['menu-menu-footer-menu'] = array(
|
||||
'cache' => -1,
|
||||
'custom' => 0,
|
||||
'delta' => 'thematiques-anchor-links',
|
||||
'delta' => 'menu-footer-menu',
|
||||
'i18n_mode' => 0,
|
||||
'module' => 'clameursmod',
|
||||
'module' => 'menu',
|
||||
'node_types' => array(),
|
||||
'pages' => '',
|
||||
'roles' => array(),
|
||||
@@ -29,8 +29,8 @@ function clameurs_default_fe_block_settings() {
|
||||
'weight' => 0,
|
||||
),
|
||||
'clameurs' => array(
|
||||
'region' => '',
|
||||
'status' => 0,
|
||||
'region' => 'footer_top',
|
||||
'status' => 1,
|
||||
'theme' => 'clameurs',
|
||||
'weight' => 0,
|
||||
),
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* clameurs.features.menu_custom.inc
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_menu_default_menu_custom().
|
||||
*/
|
||||
function clameurs_menu_default_menu_custom() {
|
||||
$menus = array();
|
||||
|
||||
// Exported menu: menu-footer-menu.
|
||||
$menus['menu-footer-menu'] = array(
|
||||
'menu_name' => 'menu-footer-menu',
|
||||
'title' => 'Footer menu',
|
||||
'description' => '',
|
||||
'language' => 'und',
|
||||
'i18n_mode' => 0,
|
||||
);
|
||||
// Translatables
|
||||
// Included for use with string extractors like potx.
|
||||
t('Footer menu');
|
||||
|
||||
return $menus;
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* clameurs.features.menu_links.inc
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_menu_default_menu_links().
|
||||
*/
|
||||
function clameurs_menu_default_menu_links() {
|
||||
$menu_links = array();
|
||||
|
||||
// Exported menu link: menu-footer-menu_contact:node/64.
|
||||
$menu_links['menu-footer-menu_contact:node/64'] = array(
|
||||
'menu_name' => 'menu-footer-menu',
|
||||
'link_path' => 'node/64',
|
||||
'router_path' => 'node/%',
|
||||
'link_title' => 'Contact',
|
||||
'options' => array(
|
||||
'attributes' => array(
|
||||
'title' => '',
|
||||
),
|
||||
'identifier' => 'menu-footer-menu_contact:node/64',
|
||||
),
|
||||
'module' => 'menu',
|
||||
'hidden' => 0,
|
||||
'external' => 0,
|
||||
'has_children' => 0,
|
||||
'expanded' => 0,
|
||||
'weight' => -49,
|
||||
'customized' => 1,
|
||||
'language' => 'und',
|
||||
'menu_links_customized' => 1,
|
||||
);
|
||||
// Exported menu link: menu-footer-menu_crdits:node/1.
|
||||
$menu_links['menu-footer-menu_crdits:node/1'] = array(
|
||||
'menu_name' => 'menu-footer-menu',
|
||||
'link_path' => 'node/1',
|
||||
'router_path' => 'node/%',
|
||||
'link_title' => 'Crédits',
|
||||
'options' => array(
|
||||
'attributes' => array(
|
||||
'title' => '',
|
||||
),
|
||||
'identifier' => 'menu-footer-menu_crdits:node/1',
|
||||
),
|
||||
'module' => 'menu',
|
||||
'hidden' => 0,
|
||||
'external' => 0,
|
||||
'has_children' => 0,
|
||||
'expanded' => 0,
|
||||
'weight' => -48,
|
||||
'customized' => 1,
|
||||
'language' => 'und',
|
||||
'menu_links_customized' => 1,
|
||||
);
|
||||
// Exported menu link: menu-footer-menu_partenaires:node/62.
|
||||
$menu_links['menu-footer-menu_partenaires:node/62'] = array(
|
||||
'menu_name' => 'menu-footer-menu',
|
||||
'link_path' => 'node/62',
|
||||
'router_path' => 'node/%',
|
||||
'link_title' => 'Partenaires',
|
||||
'options' => array(
|
||||
'attributes' => array(
|
||||
'title' => '',
|
||||
),
|
||||
'identifier' => 'menu-footer-menu_partenaires:node/62',
|
||||
),
|
||||
'module' => 'menu',
|
||||
'hidden' => 0,
|
||||
'external' => 0,
|
||||
'has_children' => 0,
|
||||
'expanded' => 0,
|
||||
'weight' => -50,
|
||||
'customized' => 1,
|
||||
'language' => 'und',
|
||||
'menu_links_customized' => 1,
|
||||
);
|
||||
|
||||
// Translatables
|
||||
// Included for use with string extractors like potx.
|
||||
t('Contact');
|
||||
t('Crédits');
|
||||
t('Partenaires');
|
||||
|
||||
return $menu_links;
|
||||
}
|
||||
@@ -21,6 +21,7 @@ dependencies[] = imagecache_canvasactions
|
||||
dependencies[] = libraries
|
||||
dependencies[] = list
|
||||
dependencies[] = login_destination
|
||||
dependencies[] = menu
|
||||
dependencies[] = node
|
||||
dependencies[] = nodeformcols
|
||||
dependencies[] = number
|
||||
@@ -52,7 +53,7 @@ features[ctools][] = page_manager:pages_default:1
|
||||
features[ctools][] = panels_mini:panels_default:1
|
||||
features[ctools][] = strongarm:strongarm:1
|
||||
features[ctools][] = video_embed_field:default_video_embed_styles:1
|
||||
features[fe_block_settings][] = clameursmod-thematiques-anchor-links
|
||||
features[fe_block_settings][] = menu-menu-footer-menu
|
||||
features[features_api][] = api:2
|
||||
features[field_base][] = cer_bidirectional
|
||||
features[field_base][] = cer_enabled
|
||||
@@ -121,6 +122,10 @@ features[field_instance][] = node-thematique-field_poid
|
||||
features[image][] = video_thumb_docu
|
||||
features[image][] = video_thumb_episode
|
||||
features[image][] = video_thumb_themat
|
||||
features[menu_custom][] = menu-footer-menu
|
||||
features[menu_links][] = menu-footer-menu_contact:node/64
|
||||
features[menu_links][] = menu-footer-menu_crdits:node/1
|
||||
features[menu_links][] = menu-footer-menu_partenaires:node/62
|
||||
features[node][] = documentair
|
||||
features[node][] = episode
|
||||
features[node][] = thematique
|
||||
|
||||
Reference in New Issue
Block a user