function theme_book_title_link
Same name and namespace in other branches
- 6.x drupal-6.x/modules/book/book.module \theme_book_title_link()
Returns HTML for a link to a book title when used as a block title.
Parameters
$variables: An associative array containing:
- link: An array containing title, href and options for the link.
Related topics
1 theme call to theme_book_title_link()
- book_block_view in drupal-7.x/
modules/ book/ book.module - Implements hook_block_view().
Archivo
- drupal-7.x/
modules/ book/ book.module, line 363 - Allows users to create and organize related content in an outline.
Código
function theme_book_title_link($variables) {
$link = $variables['link'];
$link['options']['attributes']['class'] = array('book-title');
return l($link['title'], $link['href'], $link['options']);
}