You are here

function oa_update_admin_form_submit in Open Atrium Core 7.2

Submit handler for oa_update_admin_form

1 string reference to 'oa_update_admin_form_submit'
oa_update_admin_form in modules/oa_update/oa_update.module
Update distro help page..

File

modules/oa_update/oa_update.module, line 126
Code for the oa_update module

Code

function oa_update_admin_form_submit($form, &$form_state) {
  if ($form_state['values']['oa_update_enable'] !== $form_state['input']['oa_update_enable']) {
    variable_set('oa_update_enable', $form_state['values']['oa_update_enable']);
    module_load_install('update');
    $status = update_requirements('runtime');
  }
}