Hi,
I am trying to add a tab to my menu in drupal and use this function, to test it:
function my_module_menu() {
$items['user/%user/classifieds'] = array(
'title' => 'Action',
'type' => MENU_LOCAL_TASK,
'page callback' => 'my_module_page',
'page arguments' => array(1),
'weight' => 2,
);
return $items;
}
But nothing shows up. Why?