function path_admin_delete_confirm in Drupal 6
Same name and namespace in other branches
- 4 modules/path.module \path_admin_delete_confirm()
- 5 modules/path/path.module \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.admin.inc, line 161 - Administrative page callbacks for the path module.
Code
function path_admin_delete_confirm($form_state, $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');
}
return $output;
}