function qtip_menu in qTip (Stylish jQuery Tooltips) 6.2
Same name and namespace in other branches
- 6 qtip.module \qtip_menu()
- 7.2 qtip.module \qtip_menu()
- 7 qtip.module \qtip_menu()
Implements of hook_menu().
File
- ./
qtip.module, line 80
Code
function qtip_menu() {
$items = array();
$items['admin/settings/qtip'] = array(
'title' => t('qTip'),
'description' => t('Control how qTips (tooltips) will be displayed by default on each page'),
'page callback' => 'drupal_get_form',
'page arguments' => array(
'qtip_settings_form',
),
'access arguments' => array(
'',
),
'type' => MENU_NORMAL_ITEM,
'file' => 'qtip.admin.inc',
);
return $items;
}