NAME
HTML::CalendarMonthSimple::MultiDaysEvent - enable create the multi days events for CalendarMonthSimple
VERSION
This document describes version 0.01 of HTML::CalendarMonthSimple::MultiDaysEvent, released May 5, 2005.
SYNOPSIS
#!/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;
DESCRIPTION
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.
AUTHORS
Hsin-Chan Chien <hcchien@hcchien.org>
COPYRIGHT
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.