
April 16th, 2004, 01:53 AM
|
|
|
|
Join Date: Apr 2007
Location: Pennsylvania
Posts: 275
Time spent in forums: < 1 sec
Reputation Power: 2
|
|
|
RE: What is the expected time frame of 4.2
Probably a few months at this point. Matt & I have decided to do some major surgery to allow it to support other data bases, but I haven't had time to get too far in the past couple of weeks.
Plus, we'll be moving all the queries out of the presentation layer files (like ltwdisplaymonth) and into the class file, which is a major overhaul of that code too. The good news is that when I'm done, making custom displays should be easier, something like:
// new calendar object
$cal = new ltwCalendar;
// get list of events
// lst is an array of events
$lst =& $cal->fetchEvents(start,end,categories,id);
//
foreach ($lst as $key => $event ){
//should I display the event??
// ie your code
}
|