You are here

function mb_user_cancel_action in More Buttons 7

The "Cancel" button action.

See also

mb_user_cancel_validate()

1 call to mb_user_cancel_action()
mb_user_cancel_validate in mb_user/mb_user.module
Implements hook_form_validate().

File

mb_user/mb_user.module, line 189
Provides additional buttons for content in user context.

Code

function mb_user_cancel_action($form, &$form_state) {

  // Hide the error messages.
  drupal_get_messages('error');
  $redirect = 'user/' . $form['#user']->uid;
  drupal_goto($redirect);
}