function comment_page_title_settings in Page Title 6.2
Same name and namespace in other branches
- 8.2 modules/comment.page_title.inc \comment_page_title_settings()
- 7.2 modules/comment.page_title.inc \comment_page_title_settings()
Implementation of hook_page_title_settings().
File
- modules/
comment.page_title.inc, line 70 - 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)',
),
);
}