system_ip_blocking_delete

Versions
mediamosa-21
system_ip_blocking_delete($form, &$form_state, $iid)

IP deletion confirm page.

See also

system_ip_blocking_delete_submit()

Code

modules/system/system.admin.inc, line 1476

<?php
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'));
}
?>