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