Esempio n. 1
0
 public static function getCalendario($id)
 {
     $cal = new Calendario();
     $conditions = "usuario_id = {$id}";
     $eventos = array();
     if ($cal->find_first($conditions)) {
         $eventos = json_decode($cal->configuracion, true);
     }
     return $eventos;
 }