10379 Posts in 2194 Topics by 1710 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 950 Views |
-
event calendar: get all future events

22 April 2009 at 7:02am
hi,
hi, how can i get all future events?
i'm not in the calendar scope, so i try with this code:$var = DataObject::get("CalendarDateTime", "StartDate > " . date("now"));
but it doesn't work...
thanks
-
Re: event calendar: get all future events

22 April 2009 at 7:37am
never mind, just found out:
$now = date("Y-m-d");
$var = DataObject::get("CalendarDateTime", "StartDate > '$now'", "StartDate"); -
Re: event calendar: get all future events

22 April 2009 at 9:35am
That's not the best way to do it because you'll only get CalendarEvent objects rather than announcements and recurring events as well. Use:
DataObject::get_one("Calendar")->upcomingEvents(5);
Where the first argument is the number of events to return. Also see Calendar::recentEvents();
| 950 Views | ||
|
Page:
1
|
Go to Top |

