function quickupdate_most_installed_modules in Quick update 7
Same name and namespace in other branches
- 8 quickupdate.module \quickupdate_most_installed_modules()
Gets the most installed modules.
Return value
array An array that contains module's short name and title.
1 call to quickupdate_most_installed_modules()
File
- ./
quickupdate.module, line 377 - Primarily Drupal hooks and global API functions.
Code
function quickupdate_most_installed_modules() {
$modules = array(
'views' => t('Views'),
'token' => t('Token'),
'ctools' => t('Chaos tool suite'),
'pathauto' => t('Pathauto'),
'webform' => t('Webform'),
'date' => t('Date'),
'wysiwyg' => t('Wysiwyg'),
'libraries' => t('Libraries API'),
'google_analytics' => t('Google Analytics'),
'imce' => t('IMCE'),
'admin_menu' => t('Administration menu'),
'entity' => t('Entity API'),
'cck' => t('Content Construction Kit'),
'backup_migrate' => t('Backup and Migrate'),
'link' => t('Link'),
'captcha' => t('CAPTCHA'),
'ckeditor' => t('CKEditor - WYSIWYG HTML editor'),
'rules' => t('Rules'),
'filefield' => t('FileField'),
'imagefield' => t('ImageField'),
'imageapi' => t('ImageAPI'),
'panels' => t('Panels'),
'jquery_update' => t('jQuery Update'),
'devel' => t('Devel'),
'imagecache' => t('ImageCache'),
'xmlsitemap' => t('XML sitemap'),
'colorbox' => t('Colorbox'),
'features' => t('Features'),
'views_slideshow' => t('Views Slideshow'),
'advanced_help' => t('Advanced help'),
'imce_wysiwyg' => t('IMCE Wysiwyg bridge'),
'globalredirect' => t('Global Redirect'),
'lightbox2' => t('Lightbox2'),
'views_bulk_operations' => t('Views Bulk Operations'),
'meida' => t('Media'),
'page_title' => t('Page Title'),
'menu_block' => t('Menu block'),
'context' => t('Context'),
'i18n' => t('Internationalization'),
'transliteration' => t('Transliteration'),
'jquery_ui' => t('jQuery UI'),
'metatag' => t('Metatag'),
'calendar' => t('Calendar'),
'email' => t('Email Field'),
'variable' => t('Variable'),
'field_group' => t('Field group'),
'nice_menus' => t('Nice Menus'),
'poormanscron' => t('Poormanscron'),
'superfish' => t('Superfish'),
'nodewords' => t('Nodewords: D6 Meta Tags'),
'references' => t('References'),
'l10n_update' => t('Localization update'),
'site_map' => t('Site map'),
'auto_nodetitle' => t('Automatic Nodetitles'),
'media_youtube' => t('Media: YouTube'),
'ds' => t('Display Suite'),
'job_scheduler' => t('Job Scheduler'),
'redirect' => t('Redirect'),
'logintoboggan' => t('LoginToboggan'),
'image' => t('Image'),
'print' => t('Printer, email and PDF versions'),
'taxonomy_menu' => t('Taxonomy menu'),
'location' => t('Location'),
'content_access' => t('Content Access'),
'imagecache_actions' => t('ImageCache Actions'),
'quicktabs' => t('Quick Tabs'),
'mollom' => t('Mollom'),
'recaptcha' => t('reCAPTCHA'),
'module_filter' => t('Module Filter'),
'emfield' => t('Embedded Media Field'),
'mimemail' => t('Mime Mail'),
'feeds' => t('Feeds'),
'addressfield' => t('Address Field'),
'strongarm' => t('Strongarm'),
'votingapi' => t('Voting API'),
'simplenews' => t('Simplenews'),
'insert' => t('Insert'),
'gmap' => t('GMap Module'),
'extlink' => t('External Links'),
'ubercart' => t('Ubercart'),
'better_formats' => t('Better Formats'),
'custom_breadcrumbs' => t('Custom Breadcrumbs'),
'scheduler' => t('Scheduler'),
'node_clone' => t('Node clone'),
'block_class' => t('Block Class'),
'diff' => t('Diff'),
'path_redirect' => t('Path Redirect'),
'entityreference' => t('Entity reference'),
'smtp' => t('SMTP Authentication Support'),
'filefield_sources' => t('FileField Sources'),
'field_permissions' => t('Field Permissions'),
'fckeditor' => t('FCKeditor - WYSIWYG HTML editor'),
'views_php' => t('Views PHP'),
'nodequeue' => t('Nodequeue'),
'login_destination' => t('Login Destination'),
'admin' => t('Admin'),
'menu_attributes' => t('Menu attributes'),
'menu_breadcrumb' => t('Menu Breadcrumb'),
'omega_tools' => t('Omega Tools'),
);
return $modules;
}