You are here

commons_dashboard.features.menu_links.inc in Drupal Commons 6.2

File

modules/features/commons_dashboard/commons_dashboard.features.menu_links.inc
View source
<?php

/**
 * Implementation of hook_menu_default_menu_links().
 */
function commons_dashboard_menu_default_menu_links() {
  $menu_links = array();

  // Exported menu link: primary-links:dashboard
  $menu_links['primary-links:dashboard'] = array(
    'menu_name' => 'primary-links',
    'link_path' => 'dashboard',
    'router_path' => 'dashboard',
    'link_title' => 'Dashboard',
    'options' => array(
      'attributes' => array(
        'title' => '',
      ),
    ),
    'module' => 'menu',
    'hidden' => '0',
    'external' => '0',
    'has_children' => '0',
    'expanded' => '0',
    'weight' => '1',
  );

  // Translatables
  // Included for use with string extractors like potx.
  t('Dashboard');
  return $menu_links;
}

Functions

Namesort descending Description
commons_dashboard_menu_default_menu_links Implementation of hook_menu_default_menu_links().