You are here

function date_api_form_system_modules_alter in Date 6.2

Implementation of hook_form_alter().

Add new submit handler for system_modules form.

File

./date_api.module, line 2506
This module will make the date API available to other modules. Designed to provide a light but flexible assortment of functions and constants, with more functionality in additional files that are not loaded unless other modules specifically include them.

Code

function date_api_form_system_modules_alter(&$form, $form_state, $form_id = 'system_modules') {
  $form['#submit'][] = 'date_api_system_modules_submit';
}