简体   繁体   中英

How to Add Tabs at Front in Drupal?

How should I add tabs at the front end in user profile. As I changed at back end but I can not find any solution for this.

If you want to create your own module, the code will look like this:

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; }


downloaded_content_page(){your code here}

have a look of hook_menu here

you have to try with different type

'type' => MENU_LOCAL_TASK,

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM