system_modules

Versions
4.6 – 4.7
system_modules()
5
system_modules($form_values = NULL)
6
system_modules($form_state = array())
7
system_modules($form, $form_state = array())

Menu callback; displays a listing of all modules.

Code

modules/system.module, line 585

<?php
function system_modules() {
  system_listing_save();
  $form = system_module_listing();
  $form .= form_submit(t('Save configuration'));
  print theme('page', form($form));
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.