function _iconizer_get_themes in Iconizer 5
Same name and namespace in other branches
- 6 iconizer.module \_iconizer_get_themes()
- 7 iconizer.module \_iconizer_get_themes()
Retrive themes for icons
1 call to _iconizer_get_themes()
- iconizer_admin in ./
iconizer.module - Admin hook
File
- ./
iconizer.module, line 168
Code
function _iconizer_get_themes($part) {
// parts in "admin", "protocols" or "files"
$themes = array(
'default' => 'Default theme',
);
if (variable_get('iconizer_themes_enable', 0) !== 0) {
$themes['test'] = 'test theme';
// scan variable_get('iconizer_themes_path') for other themes
}
return $themes;
}