| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_book_title_link($link) |
Generate the HTML output for a link to a book title when used as a block title.
modules/
<?php
function theme_book_title_link($link) {
$link['options']['attributes']['class'] = 'book-title';
return l($link['title'], $link['href'], $link['options']);
}
?>
Kommentare
Kommentar hinzufügen