You are here

function _jquerymobile_get_theme_list in jQuery Mobile module 7.2

Get list of themes.

1 call to _jquerymobile_get_theme_list()
jquerymobile_admin_settings in ./jquerymobile.admin.inc
Form builder; Configure user settings for this site.

File

./jquerymobile.inc, line 178
Includes for jquerymobile

Code

function _jquerymobile_get_theme_list() {
  $options = array();
  $themes = list_themes();
  foreach ($themes as $theme => $name) {
    if ($name->status) {
      $options[$theme] = $theme;
    }
  }
  return $options;
}