Search code examples
phpdrupal-7

Adding a new tab to user in Drupal


How can I add a new tab to user profile. I want to add for instance New User Tab which will be visible by administrator and user itself (not others).


Solution

  • Hi friends thanks for helping me.... I done with under code

    function downloaded_menu(){ $items['user/%user/downloaded'] = array( 'title' => 'Downloaded', 'page callback' => 'downloaded_content_page', 'access arguments' => array('access content'), 'type' => MENU_LOCAL_TASK, 'weight' => 10, ); return $items; }