function path_admin_delete_confirm

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/path/path.admin.inc \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-7.x/modules/path/path.module
Implements hook_menu().

Archivo

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

Código

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();
}