Skip to content

Instantly share code, notes, and snippets.

@hubertusanton
Created September 18, 2013 08:08
Show Gist options
  • Save hubertusanton/6606096 to your computer and use it in GitHub Desktop.
Save hubertusanton/6606096 to your computer and use it in GitHub Desktop.
Silverstripe 3 date region filter
public function AllChildrenInDateRegion() {
return VacaturePage::get()->filter(
array(
'ParentID' => $this->ID,
'DatumFrom:LessThan' => date('Y-m-d').' 00:00:00',
'DatumTo:GreaterThan' => date('Y-m-d').' 23:59:59'
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment