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