function jquery_ui_menu in jQuery UI 5
Implementation of hook_menu().
File
- ./
jquery_ui.module, line 87 - Provides the jQuery UI plug-in to other Drupal modules.
Code
function jquery_ui_menu() {
$items = array();
$items[] = array(
'path' => 'admin/settings/jquery_ui',
'title' => t('jQuery UI'),
'description' => t('Configure settings for jQuery UI module.'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'jquery_ui_admin_settings',
),
'access' => user_access('administer site configuration'),
);
return $items;
}