You are here

function path_redirect_delete_confirm in Path redirect 5

1 string reference to 'path_redirect_delete_confirm'
path_redirect_menu in ./path_redirect.module
Implementation of hook_menu

File

./path_redirect.module, line 413

Code

function path_redirect_delete_confirm($rid) {
  $form['rid'] = array(
    '#type' => 'value',
    '#value' => $rid,
  );
  $redirect = path_redirect_load($rid);
  return confirm_form($form, t('Are you sure you want to delete the redirect from %path to %redirect?', array(
    '%path' => $redirect['path'],
    '%redirect' => $redirect['redirect'],
  )), isset($_GET['destination']) ? $_GET['destination'] : 'admin/build/path-redirect');
}