system_actions_manage_form_submit

Versions
6 – 7
system_actions_manage_form_submit($form, &$form_state)

Process system_actions_manage form submissions.

Code

modules/system/system.module, line 1437

<?php
function system_actions_manage_form_submit($form, &$form_state) {
  if ($form_state['values']['action']) {
    $form_state['redirect'] = 'admin/settings/actions/configure/'. $form_state['values']['action'];
  }
}
?>
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.