示例#1
0
 public function content($reload = false)
 {
     if ($reload or !$this->content_cache) {
         $id = mysql_real_escape_string($this->id);
         $this->content_cache = EventContent::find_all("event_content.event_id = '{$id}'");
     }
     return $this->content_cache;
 }