You are here

function services_form_alter in Services 6.2

Same name and namespace in other branches
  1. 7 services.module \services_form_alter()

Implementation of hook_form_alter().

File

./services.module, line 563
Provides a generic but powerful API for exposing web services.

Code

function services_form_alter(&$form, $form_state, $form_id) {
  if ($form_id == 'system_modules') {

    // Add our own submit hook to clear cache
    $form['#submit'][] = 'services_system_modules_submit';
  }
}