Posted in ColdFusion | Posted on 09-26-2006 | 3,898 views
I updated GoogleCal, my Google Calendar CFC. This update fixes a bug and adds a new feature - the ability to filter the getEvents method to events in the future.
I updated GoogleCal, my Google Calendar CFC. This update fixes a bug and adds a new feature - the ability to filter the getEvents method to events in the future.
Here's how I did it:
<cfset s.reminder = "">
<cfif structKeyExists(entry, "gd:when") and structKeyExists(entry["gd:when"], "gd:reminder") and structKeyExists(entry["gd:when"]["gd:reminder"].xmlAttributes,"minutes")>
<cfset s.reminder = entry["gd:when"]["gd:reminder"].xmlAttributes.minutes>
</cfif>
http://googlecal.riaforge.org/