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

karthi - December 24, 2008 - 07:46

just switchoff your system and sleep.then it will work.

Can't U use the hook_menu()

coworks_dieter - December 24, 2008 - 16:34

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

nerissa - March 19, 2009 - 19:28

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

sivkannan77 - March 20, 2009 - 08:49

Use menu alter to change or add menu items http://drupal.org/node/174891,

 
 

Drupal is a registered trademark of Dries Buytaert.