PEAR::Calendar Examples
$Id: index.html 4940 2012-06-06 02:20:28Z fishbone $
- 1.php [src] - shows basic usage, passing all the way down from Calendar_YeartoCalendar_Second- more of a quick test it's working
- 2.php [src] - shows how to build a tabular month using Calendar_Month_Weeks,Calendar_Week,Calendar_Dayas well as selecting some dates.
- 3.php [src] - shows how to build a tabular month using Calendar_Month_WeekdaysandCalendar_Day, as well as selecting some dates (this method is faster).
- 4.php [src] - shows how to use PEAR::Calendar for validation.
- 5.php [src] - shows PEAR::Calendar in use to help generate a form.
- 6.php [src] - a month and day "planner" calendar, which can be rendered both as HTML and WML.
- 7.php [src] - a simple SOAP Calendar Server, using PEAR::SOAP and PEAR::Calendar
- 8.php [src] - a WSDL SOAP client for the SOAP Calendar Server
- 9.php [src] - quick example of i18n with setlocale(not working on SF)
- 10.php [src] - an example of extending Calendar_Decoratorto modify output
- 11.php [src] - attaching a "payload" (e.g. results of a DB query) to a calendar using Calendar_Decoratorto allow the payload to be available inside the main loop.
- 12.php [src] - a complete year with months.
- 13.php [src] - same as 1.php but using Calendar_Engine_PearDate, (see PEAR::Date).
- 14.php [src] - same as 3.php but using Calendar_Engine_PearDate
- 15.php [src] - paging through weeks 
- 16.php [src] - example of Calendar_Decorator_Uri. Note you should preferCalendar_Util_Uri(see below) in most cases, for performance
- 17.php [src] - example of Calendar_Decorator_Textual. Note you should preferCalendar_Util_Textual(see below) in most cases, for performance
- 18.php [src] - example of Calendar_Decorator_Wrapper.
- 19.php [src] - example of Calendar_Decorator_Weekday.
- 20.php [src] - shows how to attach a "payload" spanning multiple days, with more than one entry per day
- 21.php [src] - same as 12.php but using Calendar_Month_Weeksinstead ofCalendar_Month_Weekdaysto allow the week in the year or week in the month to be displayed.
- 22.php [src] - demonstrates use of Calendar_Util_Uri.
- 23.php [src] - demonstrates use of Calendar_Util_Textual.
- 24.php [src] - Calendar_Decorator_Weekdaycombined withCalendar_Decorator_Wrapperto decorate days in the month.