function entity_share_ui_menu in Entity Share 7
Implements hook_menu().
File
- modules/
entity_share_ui/ entity_share_ui.module, line 36 - Entity Share UI .module file.
Code
function entity_share_ui_menu() {
$items = array();
// Intermediate menu.
$items['admin/config/entity_share'] = array(
'type' => MENU_NORMAL_ITEM,
'title' => 'Entity Share',
'description' => 'Configure the Entity Share',
'page callback' => 'system_admin_menu_block_page',
'access arguments' => array(
'administer entityshare',
),
'file' => 'system.admin.inc',
'file path' => drupal_get_path('module', 'system'),
);
return $items;
}