| HTML-CalendarMonthSimple-MultiDaysEvent documentation | view source | Contained in the HTML-CalendarMonthSimple-MultiDaysEvent distribution. |
HTML::CalendarMonthSimple::MultiDaysEvent - enable create the multi days events for CalendarMonthSimple
This document describes version 0.01 of HTML::CalendarMonthSimple::MultiDaysEvent, released May 5, 2005.
#!/usr/bin/perl
use HTML::CalendarMonthSimple::MultiDaysEvent;
my $cal = new HTML::CalendarMonthSimple::MultiDaysEvent('year'=>2005,'month'=>10); $cal->add_event( date => 10, event => 'foo', length => 3 ); $cal->add_event( date => 14, event => 'bar', length => 1 ); print $cal->multidays_HTML;
This module provides the new methods for CalendarMonthSimple to allow users add the events with multi days.
If you want to use the multi days event. you should use the method add_event to new the events and multidays_HTML to build the HTML with multi days view.
Hsin-Chan Chien <hcchien@hcchien.org>
Copyright 2005 by Hsin-Chan Chien <hcchien@hcchien.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| HTML-CalendarMonthSimple-MultiDaysEvent documentation | view source | Contained in the HTML-CalendarMonthSimple-MultiDaysEvent distribution. |