You are here

function featured_content_set_page_title in Featured Content 6.2

Same name and namespace in other branches
  1. 6 featured_content.module \featured_content_set_page_title()
  2. 7.2 featured_content.module \featured_content_set_page_title()
  3. 7 featured_content.module \featured_content_set_page_title()

Set page title for more page or rss page.

1 call to featured_content_set_page_title()
featured_content_view in ./featured_content.module
Provides 'view' info for hook_block().

File

./featured_content.module, line 1028
Featured Content module for created related & featured content blocks.

Code

function featured_content_set_page_title($delta, $title = NULL) {
  if (!trim($title)) {
    $title = featured_content_get_block_title($delta);
  }
  drupal_set_title(check_plain($title));
}