function page_theme_get_themes_options in Page Theme 7.2
Same name and namespace in other branches
- 7 page_theme.module \page_theme_get_themes_options()
2 calls to page_theme_get_themes_options()
- page_theme_admin_add in ./
page_theme.admin.inc - Menu callback; adds a rule.
- page_theme_admin_edit in ./
page_theme.admin.inc - Menu callback; edits a rule.
File
- ./
page_theme.module, line 173 - Allows to use different themes than the site default on specific pages.
Code
function page_theme_get_themes_options() {
$options['0'] = '- ' . t('Select theme') . ' -';
$options += page_theme_get_themes_list();
return $options;
}