function path_admin_delete_confirm in Drupal 5
Same name and namespace in other branches
- 4 modules/path.module \path_admin_delete_confirm()
- 6 modules/path/path.admin.inc \path_admin_delete_confirm()
- 7 modules/path/path.admin.inc \path_admin_delete_confirm()
Menu callback; confirms deleting an URL alias
1 string reference to 'path_admin_delete_confirm'
- path_menu in modules/
path/ path.module - Implementation of hook_menu().
File
- modules/
path/ path.module, line 93 - Enables users to rename URLs.
Code
function path_admin_delete_confirm($pid) {
$path = path_load($pid);
if (user_access('administer url aliases')) {
$form['pid'] = array(
'#type' => 'value',
'#value' => $pid,
);
$output = confirm_form($form, t('Are you sure you want to delete path alias %title?', array(
'%title' => $path['dst'],
)), isset($_GET['destination']) ? $_GET['destination'] : 'admin/build/path', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}
return $output;
}