You are here

function page_theme_load in Page Theme 6

Same name and namespace in other branches
  1. 7 page_theme.module \page_theme_load()

File

./page_theme.module, line 95
This module allows to use different themes than the site default on specific pages.

Code

function page_theme_load($theme) {
  $result = db_query('SELECT theme, pages, status, weight FROM {page_theme} WHERE theme = "%s"', $theme);
  return db_fetch_object($result);
}