PHP 在新窗口中打开外部URL - Drupal
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在新窗口中打开外部URL - Drupal相关的知识,希望对你有一定的参考价值。
<?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 = !empty($item['description']) ? array('title' => $item['description']) : array();
if (strpos($link_item['path'], 'http://') === 0 || strpos($link_item['path'], 'https://') === 0) {
$attributes['target'] = '_blank';
}
return l($item['title'], $link_item['path'], $attributes, isset($item['query']) ? $item['query'] : NULL);
}
?>
以上是关于PHP 在新窗口中打开外部URL - Drupal的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript 外部链接在新窗口中打开
JavaScript 外部链接在新窗口中打开
JavaScript 在新窗口中打开外部链接
在新窗口中打开外部链接
在新窗口中打开外部链接
在新窗口中打开外部链接