You are here

function page_theme_theme in Page Theme 6

Same name and namespace in other branches
  1. 7.2 page_theme.module \page_theme_theme()
  2. 7 page_theme.module \page_theme_theme()

Implementation of hook_theme().

File

./page_theme.module, line 105
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(
    'arguments' => array(
      'form' => NULL,
    ),
    'file' => 'page_theme.admin.inc',
  );
  return $theme;
}