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