You are here

function quickupdate_most_installed_themes in Quick update 7

Same name and namespace in other branches
  1. 8 quickupdate.module \quickupdate_most_installed_themes()

Gets the most installed themes.

Return value

array An array that contains theme's short name and title.

1 call to quickupdate_most_installed_themes()
quickupdate_quickupdate_search_projects in ./quickupdate.module
Implements hook_quickupdate_search_projects().

File

./quickupdate.module, line 268
Primarily Drupal hooks and global API functions.

Code

function quickupdate_most_installed_themes() {
  $themes = array(
    'zen' => t('Zen'),
    'omega' => t('Omega'),
    'adaptivetheme' => t('AdaptiveTheme'),
    'fusion' => t('Fusion'),
    'marinelli' => t('Marinelli'),
    'danland' => t('Danland'),
    'corporateclean' => t('Corporateclean'),
    'tao' => t('Tao'),
    'bluemasters' => t('Bluemasters'),
    'rubik' => t('Rubik'),
    'business' => t('Business'),
    'pixture_reloaded' => t('Pixture Reloaded'),
    'corolla' => t('Corolla'),
    'mayo' => t('Mayo'),
    'acquia_marina' => t('Acquia Marina'),
    'sky' => t('Sky'),
    'nucleus' => t('Nucleus'),
    'zeropoint' => t('Zeropoint'),
    'bootstrap' => t('Bootstrap'),
    'skeletontheme' => t('Skeleton'),
    'andromeda' => t('Andromeda'),
    'basic' => t('Basic'),
    'rootcandy' => t('RootCandy'),
    'acquia_prosper' => t('Acquia Prosper'),
    'shiny' => t('Shiny'),
    'omega_kickstart' => t('Omega Kkickstart'),
    'professional_theme' => t('Professional Ttheme'),
    'framework' => t('Framework'),
    'ninesixty' => t('NineSixty (960 Grid System)'),
    'touch' => t('Touch'),
    'genesis' => t('Genesis'),
    'at-commerce' => t('AT Commerce'),
    'busy' => t('Busy'),
    'responsive' => t('Responsive'),
    'jackson' => t('Jackson'),
    'mix_and_match' => t('Mix and Match'),
    'blogbuzz' => t('BlogBuzz'),
    'corporate' => t('Corporate'),
    'UrbanSolice' => t('Urban Solice'),
    'cti_flex' => t('CTI Flex'),
    'kanji' => t('Kanji'),
    'best_responsive' => t('Best Responsive'),
    'journalcrunch' => t('Journalcrunch'),
    'bamboo' => t('Bamboo'),
    'responsive_blog' => t('Responsive Blog'),
    'mobile' => t('Mobile'),
    'mothership' => t('Mothership'),
    'newsflash' => t('Newsflash'),
    'analytic' => t('Analytic'),
    'tb_sirate' => t('TB Sirate'),
    'fusion_mobile' => t('Fusion Mobile'),
    'zircon' => t('Zircon'),
    'footheme' => t('Footheme'),
    'metropolis' => t('Metropolis'),
    'tma' => t('The Morning After'),
    'twitter_bootstrap' => t("Twitter's Bootstrap"),
    'blueprint' => t('Blueprint'),
    'dark_elegant' => t('Dark Elegant'),
    'plasma' => t('Plasma'),
    'colourise' => t('Colourise'),
    'boron' => t('Boron (HTML5 base theme)'),
    'corkedscrewer' => t('Corked Screwer'),
    'simpleclean' => t('Simple Clean'),
    'magazeen_lite' => t('Magazeen Lite'),
    'zurb-foundation' => t('ZURB Foundation'),
    'simplecorp' => t('SimpleCorp'),
    'tb_purity' => t('TB Purity'),
    'company' => t('Company Theme'),
    'mobile_jquery' => t('Mobile jQuery Theme'),
    'clean' => t('Clean'),
    'clean_theme' => t('Clean Theme'),
    'deco' => t('Deco'),
    'superclean' => t('SuperClean'),
    'litejazz' => t('litejazz'),
    'arthemia' => t('Arthemia'),
    'samara' => t('Samara'),
    'orange' => t('Orange'),
    'newswire' => t('Newswire'),
    'alphorn' => t('Alphorn'),
    'gordon' => t('Gordon'),
    'fontfolio' => t('FontFolio'),
    'arctica' => t('Arctica'),
    'elegant_theme' => t('Elegant Theme'),
    'impact_theme' => t('Impact Theme'),
    'alpine' => t('Alpine'),
    'ad_novus' => t('AD Novus'),
    'om' => t('OM 2 HTML5'),
    'black_premium' => t('Black Premium'),
    'openchurch_theme' => t('OpenChurch Theme'),
    'professional_pro' => t('Professional Pro'),
    'business_theme' => t('Business Theme'),
    'ICE-BUSINESS' => t('ICE Business'),
    'typebased' => t('Typebased'),
    'nitobe' => t('Nitobe'),
    'tundra' => t('Tundra'),
    'responsive_bartik' => t('Responsive Bartik D7'),
    'business_responsive_theme' => t('Business Responsive Theme'),
  );
  return $themes;
}