theme_book_title_link

Versions
6
theme_book_title_link($link)
7
theme_book_title_link($variables)

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

Related topics

Code

modules/book/book.module, line 244

<?php
function theme_book_title_link($link) {
  $link['options']['attributes']['class'] =  'book-title';
  return l($link['title'], $link['href'], $link['options']);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.