function system_ip_blocking_delete

7.x system.admin.inc system_ip_blocking_delete($form, &$form_state, $iid)

IP deletion confirm page.

See also

system_ip_blocking_delete_submit()

1 string reference to 'system_ip_blocking_delete'
system_menu in drupal-7.x/modules/system/system.module
Implements hook_menu().

File

drupal-7.x/modules/system/system.admin.inc, line 1457
Admin page callbacks for the system module.

Code

function system_ip_blocking_delete($form, &$form_state, $iid) {
  $form['blocked_ip'] = array(
    '#type' => 'value',
    '#value' => $iid,
  );
  return confirm_form($form, t('Are you sure you want to delete %ip?', array('%ip' => $iid['ip'])), 'admin/config/people/ip-blocking', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}