You are here

function userpoints_transaction_type_form_delete in User Points 7.2

Userpoints transaction type form delete.

1 string reference to 'userpoints_transaction_type_form_delete'
userpoints_transaction_type_form in ./userpoints.admin.inc
Userpoints transaction type form.

File

./userpoints.admin.inc, line 999
Admin menu callbacks for userpoints.module.

Code

function userpoints_transaction_type_form_delete($form, &$form_state) {
  $form_state['redirect'] = array(
    'admin/config/people/userpoints/types/' . $form_state['userpoints_transaction_type']->name . '/delete',
  );
}