Subversion Repositories Sites.obs-saisons.fr

Compare Revisions

Ignore whitespace Rev 93 → Rev 94

/trunk/themes/ods/template.php
25,6 → 25,78
}
 
/**
* Return a themed set of links.
*
* @param $links
* A keyed array of links to be themed.
* @param $attributes
* A keyed array of attributes
* @return
* A string containing an unordered list of links.
*/
function ods_links($links, $attributes = array('class' => 'links')) {
global $language;
$output = '';
 
if (count($links) > 0) {
$output = '<ul'. drupal_attributes($attributes) .'>';
 
$num_links = count($links);
$i = 1;
 
foreach ($links as $key => $link) {
$class = $key;
 
// 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()))
&& (empty($link['language']) || $link['language']->language == $language->language)) {
$class .= ' active';
}
$class .= ' lien_primaire_'.$i;
$output .= '<li'. drupal_attributes(array('class' => $class)) .'>';
 
if (isset($link['href'])) {
if($i == 1) {
$link['html'] = true;
$link['title'] = '<img class="icone_acceuil" alt="'.$link['title'].'" src="'.base_path().path_to_theme().'/images/accueil.png" />';
}
// Pass in $link as $options, they share the same keys.
$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;
}
 
/**
* Return a themed breadcrumb trail.
*
* @param $breadcrumb
52,7 → 124,7
/**
* Add a "Comments" heading above comments except on forum pages.
*/
function garland_preprocess_comment_wrapper(&$vars) {
function ods_preprocess_comment_wrapper(&$vars) {
if ($vars['content'] && $vars['node']->type != 'forum') {
$vars['content'] = '<h2 class="comments">'. t('Comments') .'</h2>'. $vars['content'];
}