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....

Comments

karthi-1’s picture

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

dtrdewaele’s picture

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',
);
nerissa’s picture

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.

kannan@kiluvai.com’s picture

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

varsharani’s picture

i want add new tab as add for adding and i am leaning drupal how to set tab in which way