comparison sites/all/modules/flexslider/flexslider_example/flexslider_example.features.menu_custom.inc @ 2:b74b41bb73f0

-- Google analytics module
author danieleb <danielebarchiesi@me.com>
date Thu, 22 Aug 2013 17:22:54 +0100
parents
children
comparison
equal deleted inserted replaced
1:67ce89da90df 2:b74b41bb73f0
1 <?php
2 /**
3 * @file
4 * flexslider_example.features.menu_custom.inc
5 */
6
7 /**
8 * Implements hook_menu_default_menu_custom().
9 */
10 function flexslider_example_menu_default_menu_custom() {
11 $menus = array();
12
13 // Exported menu: menu-flexslider-example.
14 $menus['menu-flexslider-example'] = array(
15 'menu_name' => 'menu-flexslider-example',
16 'title' => 'FlexSlider Example',
17 'description' => 'Example FlexSlider implementations',
18 );
19 // Translatables
20 // Included for use with string extractors like potx.
21 t('Example FlexSlider implementations');
22 t('FlexSlider Example');
23
24
25 return $menus;
26 }