88 lines
2.1 KiB
PHP
88 lines
2.1 KiB
PHP
<?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;
|
|
}
|