summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/inc/locationinfo.inc.php
blob: 4f26519d06f8c530331aa3332988af69763fe685 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php

class LocationInfo
{
  //TODO TEST WITH NEWER DB
  public function getPcState($logintime, $lastseen) {
    /*   pcState:
     *  [0] =  IDLE (NOT IN USE)
     *  [1] = OCCUPIED (IN USE)
     *  [2] = OFF
     *  [3] = 10 days offline (BROKEN?)
     */

     $NOW = time();


    if ($NOW - $lastseen > 864000) {
      return 3;
    } elseif ($NOW - $lastseen > 610) {
      return 2;
    } elseif ($logintime == 0) {
      return 0;
    } elseif ($logintime > 0) {
      return 1;
    }
    return -1;
  }
}