function mylivechat_menu in My Live Chat 6
Same name and namespace in other branches
- 7 mylivechat.module \mylivechat_menu()
File
- ./
mylivechat.module, line 11
Code
function mylivechat_menu() {
$items['admin/settings/mylivechat'] = array(
'title' => 'MyLiveChat',
'description' => 'Integrate MyLiveChat software with your website.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'mylivechat_admin_settings_form',
),
'access arguments' => array(
'administer mylivechat',
),
'file' => 'mylivechat.admin.inc',
'type' => MENU_NORMAL_ITEM,
);
return $items;
}