Skip to content

Instantly share code, notes, and snippets.

@FireMe
Created May 17, 2013 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FireMe/4f7e5e634a3a1f1fbac2 to your computer and use it in GitHub Desktop.
Save FireMe/4f7e5e634a3a1f1fbac2 to your computer and use it in GitHub Desktop.
public function LatestEvents($num=5) {
$holder = EventsHolder::get()->First();
return ($holder) ? Event::get()->filter(array( "ParentID" => $holder->ID, "ID" => $this->ID, "Date:GreaterThan" => date("c")))->limit($num) : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment