function system_ip_blocking_delete

IP deletion confirm page.

See also

system_ip_blocking_delete_submit()

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

File

drupal/modules/system/system.admin.inc, line 1471
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'));
}