You are here

function forum_page_title_settings in Page Title 8.2

Same name and namespace in other branches
  1. 6.2 modules/forum.page_title.inc \forum_page_title_settings()
  2. 7.2 modules/forum.page_title.inc \forum_page_title_settings()

Implements hook_page_title_settings().

File

modules/forum.page_title.inc, line 54
Forum implementations of the page title hooks

Code

function forum_page_title_settings() {
  return array(
    'page_title_forum_root_title' => array(
      'label' => 'Forum Root',
      'scopes' => array(
        'global',
      ),
      'show field' => FALSE,
      'description' => 'This pattern will be used on the forum root page (ie <code>/forum</code>)',
    ),
  );
}