在新窗口中打开外部URL-Drupal
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在新窗口中打开外部URL-Drupal相关的知识,希望对你有一定的参考价值。
php Template override by Benjamin Melançon of Agaric Design.
<?php /** * Override theme_menu_item_link * <a href="http://api.drupal.org/api/function/theme_menu_item_link/5 " title="http://api.drupal.org/api/function/theme_menu_item_link/5 ">http://api.drupal.org/api/function/theme_menu_item_link/5 </a> */ function phptemplate_menu_item_link($item, $link_item) { // make external links open in new windows $attributes['target'] = '_blank'; } return l($item['title'], $link_item['path'], $attributes, isset($item['query']) ? $item['query'] : NULL); } ?>
以上是关于在新窗口中打开外部URL-Drupal的主要内容,如果未能解决你的问题,请参考以下文章