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