| Versionen | |
|---|---|
| drupal6 – drupal7 | path_admin_delete_confirm($form_state, $pid) |
Menu callback; confirms deleting an URL alias
modules/
<?php
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;
}
?>
Kommentare
Kommentar hinzufügen