function path_admin_delete_confirm

Form constructor for the path deletion form.

Parameters

$path: The path alias that will be deleted.

See also

path_admin_delete_confirm_submit()

1 string reference to 'path_admin_delete_confirm'
path_menu in drupal/modules/path/path.module
Implements hook_menu().

File

drupal/modules/path/path.admin.inc, line 239
Administrative page callbacks for the path module.

Code

function path_admin_delete_confirm($form, &$form_state, $path) {
  if (user_access('administer url aliases')) {
    $form_state['path'] = $path;
    return confirm_form($form, t('Are you sure you want to delete path alias %title?', array(
      '%title' => $path['alias'],
    )), 'admin/config/search/path');
  }
  return array();
}