Latest version: v.1.0.8
I have made an attempt to write another calendar module that supports ajax as well as all of the features included in Ionrocks calendar mod. Check it out at http://www.ikfrej.se/index.php?downloads. Please be advised that this is an beta release.
The QCalendar includes the following features:
* Uses Ajax, thanks to Mike West (http://mikewest.org/archive/datarequestor)
* Export to iCal using iCalcreator, thanks to Kjell-Inge
Gustafsson (http://www.kigkonsult.se/iCalcreator/index.php)
* Overlib for tooltip texts, thanks to Erik Bosrup
(http://www.bosrup.com/web/overlib/)
* PopupWindows, thanks to Matt Kruse
(http://www.mattkruse.com/javascript/calendarpopup/)
* Handles single events and recurring events.
* Templates
* Language support (only English and Swedish at the moment)
* Straight-forward administration
Frontend replacement tag:
{QCAL[:calendar_id[:lang_id[:main_template[:event_template[:css]]]]]}
where:
calendar_id - the calendar category Id OR calendar name
lang_id - the language id, e.g "en", "se", etc
main_template - the main template file name
event_template - the event template file name
css - the main CSS class name
- Code: Select all
// Show events in all calendar categories with default settings
{QCAL}
// Show calendar with calendar category id 1
{QCAL:1}
// Show calendar with calendar category name 'MyCalendar'
{QCAL:MyCalendar}
// Show calendar with calendar id 1, english language
{QCAL:1:en}
// Show calendar with calendar id 1, english language, and the file
//my.template.php as the main template file. Please see
//include/inc_module/mod_qcal/inc_front/tmpl for sample templates.
{QCAL:1:en:my.template.php}
// Show calendar with calendar id 1, english language, the file
//my.template.php as the main template file, and my.event.template.php
//as your event template file.
{QCAL:1:en:my.template.php:my.event.template.php}
Frontend demo:
http://www.ikfrej.se
http://www.ikfrej.se/index.php?yearcalendar
Download:
http://www.ikfrej.se/index.php?downloads
Screenshots:
Cheers,
Jens