Esempio n. 1
0
 function getEventsWithoutSess()
 {
     $data = array();
     $where = $this->getScrollSessionWhere();
     $db = new Model_Db_Dashboard();
     $data = $db->getEventsId($this->dashboard["log_id"], $where);
     if (count($data) > 0) {
         $this->dashboard["log_id"] = $data[count($data) - 1]["id"];
         return $this->rightLogs($data);
     } else {
         return FALSE;
     }
 }