On this page
function path_admin_delete_confirm_submit
path_admin_delete_confirm_submit($form, &$form_state)
Form submission handler for path_admin_delete_confirm().
File
- modules/path/path.admin.inc, line 255
- Administrative page callbacks for the path module.
Code
function path_admin_delete_confirm_submit($form, &$form_state) {
if ($form_state['values']['confirm']) {
path_delete($form_state['path']['pid']);
$form_state['redirect'] = 'admin/config/search/path';
}
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!path!path.admin.inc/function/path_admin_delete_confirm_submit/7.x