You are here

function ip_manage in IP address manager 7

Same name and namespace in other branches
  1. 6 ip.module \ip_manage()

Page callback for IP address management.

1 string reference to 'ip_manage'
ip_menu in ./ip.module
Implements hook_menu().

File

./ip.module, line 92
IP address manager module.

Code

function ip_manage($ip = NULL) {
  $out = theme('ip_tracker_ip_records', array(
    'ip' => $ip,
  ));
  return $out;
}