theme_book_title_link
Definition
theme_book_title_link($link)
modules/book/book.module, line 244
Description
Generate the HTML output for a link to a book title when used as a block title.
Related topics
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
Code
<?php
function theme_book_title_link($link) {
$link['options']['attributes']['class'] = 'book-title';
return l($link['title'], $link['href'], $link['options']);
}
?> 