function linkit_menu in Linkit 7.3
Same name and namespace in other branches
- 6 linkit.module \linkit_menu()
- 7 linkit.module \linkit_menu()
- 7.2 linkit.module \linkit_menu()
Implements hook_menu().
File
- ./
linkit.module, line 490 - Main file for Linkit module.
Code
function linkit_menu() {
$items = array();
// This is the Linkit dashboard menu callback.
$items['linkit/dashboard/%linkit_profile'] = array(
'title' => 'Linkit',
'description' => 'Dashboard',
'delivery callback' => 'ajax_deliver',
'page callback' => 'linkit_dashboard_page',
'page arguments' => array(
2,
),
'access callback' => TRUE,
'theme callback' => 'ajax_base_page_theme',
'type' => MENU_CALLBACK,
'file path' => 'includes',
'file' => 'form.inc',
);
// The autocomplete callback, the search_string is found in the $_GET array
// so dont pass that to the page callback.
$items['linkit/autocomplete/%linkit_profile'] = array(
'title' => 'Linkit autocomplete response function',
'page callback' => 'linkit_autocomplete',
'page arguments' => array(
2,
),
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
return $items;
}