You are here

function comment_page_title_settings in Page Title 7.2

Same name and namespace in other branches
  1. 8.2 modules/comment.page_title.inc \comment_page_title_settings()
  2. 6.2 modules/comment.page_title.inc \comment_page_title_settings()

Implements hook_page_title_settings().

File

modules/comment.page_title.inc, line 69
Comment implementations of the page title hooks

Code

function comment_page_title_settings() {
  return array(
    'page_title_comment_reply' => array(
      'label' => 'Comment Reply',
      'scopes' => array(
        'global',
        'node',
      ),
      'description' => 'This pattern will be used for comment reply pages, where the reply is directly to a "node"',
    ),
    'page_title_comment_child_reply' => array(
      'label' => 'Comment Child Reply',
      'scopes' => array(
        'global',
        'comment',
        'node',
      ),
      'description' => 'This pattern with be used for comment reply pages where the reply is to an existing "comment" (eg a comment thread)',
    ),
  );
}