theme_book_title_link

Definition

theme_book_title_link($link)
drupal/modules/book/book.module, line 283

Description

Generate the HTML output for a link to a book title when used as a block title.

Related topics

Namesort iconDescription
Default theme implementationsFunctions and templates that present output to the user, and can be implemented by themes.

Code

function theme_book_title_link($link) {
  $link['options']['attributes']['class'] =  'book-title';

  return l($link['title'], $link['href'], $link['options']);
}