You are here

function _iconizer_get_themes in Iconizer 7

Same name and namespace in other branches
  1. 5 iconizer.module \_iconizer_get_themes()
  2. 6 iconizer.module \_iconizer_get_themes()

Retrive themes for icons @todo

File

./iconizer.module, line 71
@author: thePanz ( thePanz@gmail.com )

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;
}