You are here

function apps_confirm_form in Apps 7

Confirms the user wants to do the action.

1 string reference to 'apps_confirm_form'
apps_display_confirm_form in ./apps.pages.inc
Verify's token or presents a confirm form.

File

./apps.pages.inc, line 40
The page callbacks for the Apps module.

Code

function apps_confirm_form($form, $form_state, $question, $path) {
  $form['#redirect_path'] = $path;
  return confirm_form($form, $question, 'admin/apps', t('This action can be undone.'));
}