updated features : created showroom_localisation field. Perms with showroom role are still failing
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/**
|
||||
* @file
|
||||
* showroom.features.menu_links.inc
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implements hook_menu_default_menu_links().
|
||||
*/
|
||||
function showroom_menu_default_menu_links() {
|
||||
$menu_links = array();
|
||||
|
||||
// Exported menu link: navigation_showroom:node/add/showroom.
|
||||
$menu_links['navigation_showroom:node/add/showroom'] = array(
|
||||
'menu_name' => 'navigation',
|
||||
'link_path' => 'node/add/showroom',
|
||||
'router_path' => 'node/add/showroom',
|
||||
'link_title' => 'Showroom',
|
||||
'options' => array(
|
||||
'identifier' => 'navigation_showroom:node/add/showroom',
|
||||
),
|
||||
'module' => 'system',
|
||||
'hidden' => 0,
|
||||
'external' => 0,
|
||||
'has_children' => 0,
|
||||
'expanded' => 0,
|
||||
'weight' => 0,
|
||||
'customized' => 0,
|
||||
'language' => 'und',
|
||||
'menu_links_customized' => 0,
|
||||
);
|
||||
|
||||
// Translatables
|
||||
// Included for use with string extractors like potx.
|
||||
t('Showroom');
|
||||
|
||||
return $menu_links;
|
||||
}
|
Reference in New Issue
Block a user