PHP 主题主链接Drupal 6.x添加跨度和有用的ID
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 主题主链接Drupal 6.x添加跨度和有用的ID相关的知识,希望对你有一定的参考价值。
/**
* Adds spans and useful ID's to the primary links.
*
*/
function THEMENAME_links($links, $attributes = array('class' => 'links')) {
$output = '';
if (count($links) > 0) {
$output = '<ul'. drupal_attributes($attributes) .'>';
$num_links = count($links);
$i = 1;
foreach ($links as $key => $link) {
$class = '';
$needle = array('&', ' ');
$replace = array('and', '-');
$id = strtolower(str_replace($needle, $replace, $link['title']));
// Add first, last and active classes to the list of links to help out themers.
if ($i == 1) {
$class .= ' first';
}
if ($i == $num_links) {
$class .= ' last';
}
if (isset($link['href']) && ($link['href'] == $_GET['q'] || ($link['href'] == '<front>' && drupal_is_front_page()))) {
$class .= ' active';
}
$output .= '<li id="'. $id .'"';
if ($class) {
$output .= ' class="'. $class .'"';
}
$output .= '>';
if (isset($link['href'])) {
// Pass in $link as $options, they share the same keys.
$link['title'] = '<span>'.$link['title'].'</span>';
$link['html'] = TRUE;
$output .= l($link['title'], $link['href'], $link);
}
else if (!empty($link['title'])) {
// Some links are actually not links, but we wrap these in <span> for adding title and class attributes
if (empty($link['html'])) {
$link['title'] = check_plain($link['title']);
}
$span_attributes = '';
if (isset($link['attributes'])) {
$span_attributes = drupal_attributes($link['attributes']);
}
$output .= '<span'. $span_attributes .'>'. $link['title'] .'</span>';
}
$i++;
$output .= "</li>\n";
}
$output .= '</ul>';
}
return $output;
}
以上是关于PHP 主题主链接Drupal 6.x添加跨度和有用的ID的主要内容,如果未能解决你的问题,请参考以下文章
PHP 在Drupal 6中添加span到主链接
主题为Drupal 7的Ubercart“/ cart”页面
PHP Drupal主题预处理 - 添加类
主题主要链接Drupal6.x添加跨距和有用的ID
用于 Drupal 视图主题的 PHP
Drupal:将存档添加到主链接作为 SubNav