You are here

function ip_tracker_user_records in IP address manager 7

Same name and namespace in other branches
  1. 8.2 ip.module \ip_tracker_user_records()
  2. 6 ip.module \ip_tracker_user_records()
  3. 7.2 ip.module \ip_tracker_user_records()

Get the records from the tracker for a user.

1 call to ip_tracker_user_records()
theme_ip_tracker_user_records in ./ip.module
Theme the IP tracker records for a user.

File

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

Code

function ip_tracker_user_records($uid) {
  $sql = "SELECT * FROM {ip_tracker} WHERE uid = :uid";
  $args = array(
    ':uid' => $uid,
  );
  $result = db_query($sql, $args);
  $rows = array();
  foreach ($result as $row) {
    $row->ip = long2ip($row->ip);
    $rows[] = $row;
  }
  return $rows;
}