You are here

function ip_theme in IP address manager 7

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

Implements hook_theme().

File

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

Code

function ip_theme() {
  return array(
    'ip_tracker_user_records' => array(
      'variables' => array(
        'account' => NULL,
      ),
    ),
    'ip_tracker_ip_records' => array(
      'variables' => array(
        'ip' => NULL,
      ),
    ),
  );
}