function page_title_theme in Page Title 7
Same name and namespace in other branches
- 8.2 page_title.module \page_title_theme()
- 6.2 page_title.module \page_title_theme()
- 6 page_title.module \page_title_theme()
- 7.2 page_title.module \page_title_theme()
Implement hook_theme().
File
- ./
page_title.module, line 79 - Enhanced control over the page title (in the head tag).
Code
function page_title_theme() {
return array(
'page_title_admin_settings' => array(
'render element' => 'form',
'file' => 'page_title.admin.inc',
),
'page_title_token_help' => array(
'file' => 'page_title.admin.inc',
),
'page_title_preprocess_html' => array(
'arguments' => array(
'vars' => NULL,
),
),
);
}