path_admin_delete_confirm_submit

Versions
4.7 – 5
path_admin_delete_confirm_submit($form_id, $form_values)
6 – 7
path_admin_delete_confirm_submit($form, &$form_state)

Execute URL alias deletion

Code

modules/path.module, line 116

<?php
function path_admin_delete_confirm_submit($form_id, $form_values) {
  if ($form_values['confirm']) {
    path_admin_delete($form_values['pid']);
    return 'admin/path';
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.