how to add new tab near view and edit tabs in node page
thiruppathy - November 6, 2008 - 10:32
hi i want to add extra tabs near to ?q=node/11/edit/ ... like edit i want to add one more tab near to view and edit tab.. is possible in drupal... or drupal support any other module to do this.... thanks in advance....

karthi and vijay
just switchoff your system and sleep.then it will work.
Can't U use the hook_menu()
Can't U use the hook_menu() and the MENU_LOCAL_TASK type?
$items[] = array('path' => 'node/' . arg(1) . '/yourpath',
'title' => t('Your title'),
'type' => MENU_LOCAL_TASK,
'callback' => 'your_callback',
);
Same Issue
Hello I am having the same issue.
Where would you insert and the MENU_LOCAL_TASK? Would it be in the user.module?
Any help in this are would be greatly appreciated.
Thank you.
Hi
Use menu alter to change or add menu items http://drupal.org/node/174891,