You are here

function autoload_form_alter in Autoload 6.2

Implements hook_form_alter().

File

./autoload.module, line 74

Code

function autoload_form_alter(&$form, $form_state, $form_id) {
  switch ($form_id) {
    case 'system_modules':
      $form['#submit'][] = 'autoload_form_submit_registry_rebuild';
      break;
  }
}