$v) { $this->{$k} = $v; } } else { Error("No row for Frame " . $IdOrRow ); } } // end function __construct public function Storage() { return $this->Event()->Storage(); } public function Event() { return new Event( $this->{'EventId'} ); } public function __call( $fn, array $args){ if(isset($this->{$fn})){ return $this->{$fn}; #array_unshift($args, $this); #call_user_func_array( $this->{$fn}, $args); } } public function Path() { $Storage = $this->Storage(); return $Storage->Path().'/'.$this->Relative_Path(); } public function Relative_Path() { $event_path = ""; if ( ZM_USE_DEEP_STORAGE ) { $event_path = $this->{'MonitorId'} .'/'.strftime( "%y/%m/%d/%H/%M/%S", $this->Time() ) ; } else { $event_path = $this->{'MonitorId'} .'/'.$this->{'Id'} ; } return( $event_path ); } public function getImageSrc( ) { return ZM_BASE_URL.'/index.php?view=image&fid='.$this->{'Id'}; } // end function getImageSrc } # end class ?>