You are here

function page_theme_get_themes_list in Page Theme 7.2

1 call to page_theme_get_themes_list()
page_theme_get_themes_options in ./page_theme.module

File

./page_theme.module, line 157
Allows to use different themes than the site default on specific pages.

Code

function page_theme_get_themes_list() {
  static $themes = array();
  if (!$themes) {
    foreach (page_theme_get_themes() as $theme) {
      $themes[$theme['theme']] = $theme['name'];
    }
    natcasesort($themes);
  }
  return $themes;
}