In Drupal clicking on the menu links will open in the same window. if we want to open the menu links in new window or new tabs, use 'hook_menu_link_alter',
eg:
eg:
- function mymodule_menu_link_alter(&$item) {
- if ($item['link_path'] == 'node/10') {
- $item['options']['attributes']['target'] = '_blank';
- }
- }
No comments:
Post a Comment