function ip_theme in IP address manager 6
Same name and namespace in other branches
- 7 ip.module \ip_theme()
Implementation of hook_theme().
File
- ./
ip.module, line 44 - IP address manager module.
Code
function ip_theme(&$existing) {
return array(
'ip_tracker_user_records' => array(
'arguments' => array(
'account' => NULL,
),
),
'ip_tracker_ip_records' => array(
'arguments' => array(
'ip' => NULL,
),
),
'ip_username' => array(
'arguments' => array(
'account' => NULL,
),
),
);
}