system_modules_disable

5 system.module system_modules_disable($form, $edit, $disabled)
6 system.admin.inc system_modules_disable($form, $edit)

Form process callback function to disable check boxes.

1 string reference to 'system_modules_disable'

File

modules/system/system.module, line 1380
Configuration system that lets administrators modify the workings of the site.

Code

function system_modules_disable($form, $edit, $disabled) {
  foreach ($disabled as $key) {
    $form[$key]['#attributes']['disabled'] = 'disabled';
  }
  return $form;
}
Login or register to post comments