system_modules_disable

Versions
5
system_modules_disable($form, $edit, $disabled)
6
system_modules_disable($form, $edit)

Form process callback function to disable check boxes.

Code

modules/system/system.module, line 1380

<?php
function system_modules_disable($form, $edit, $disabled) {
  foreach ($disabled as $key) {
    $form[$key]['#attributes']['disabled'] = 'disabled';
  }
  return $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.