function page_theme_theme in Page Theme 7.2
Same name and namespace in other branches
- 6 page_theme.module \page_theme_theme()
- 7 page_theme.module \page_theme_theme()
Implements hook_theme().
File
- ./
page_theme.module, line 92 - Allows to use different themes than the site default on specific pages.
Code
function page_theme_theme() {
$themes['page_theme_admin_overview'] = array(
'render element' => 'form',
'file' => 'page_theme.theme.inc',
);
return $themes;
}