function page_theme_get_themes_list in Page Theme 7.2
1 call to page_theme_get_themes_list()
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;
}