function modal_term_view_menu in Modal operations 7
Implements hook_menu().
File
- modal_term_view/
modal_term_view.module, line 19 - Allows taxonomy term viewing in modal window.
Code
function modal_term_view_menu() {
$items['modal/taxonomy/term/%taxonomy_term/%ctools_js'] = array(
'title' => 'View taxonomy term',
'page callback' => 'modal_term_view_page',
'page arguments' => array(
3,
4,
),
'access callback' => TRUE,
'delivery callback' => 'ajax_deliver',
'type' => MENU_CALLBACK,
);
return $items;
}