File source

<?php
class GarageSource{

  function 
getData(){
    
$r mysql_query("SELECT * FROM garaz_log ORDER BY time DESC LIMIT 1");
    
$row mysql_fetch_assoc($r);
    return Array(
      
"closed" => $row["closed"],
      
"time" => $row["time"],
      
"end" => $row["end"],
      
"timeout" => (Time() - $row["end"] > 120)
    );
  }

}