HTML::CalendarMonthSimple::MultiDaysEvent - enable create the multi days events for CalendarMonthSimple


HTML-CalendarMonthSimple-MultiDaysEvent documentation  | view source Contained in the HTML-CalendarMonthSimple-MultiDaysEvent distribution.

Index


NAME

Top

HTML::CalendarMonthSimple::MultiDaysEvent - enable create the multi days events for CalendarMonthSimple

VERSION

Top

This document describes version 0.01 of HTML::CalendarMonthSimple::MultiDaysEvent, released May 5, 2005.

SYNOPSIS

Top

#!/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

Top

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

Top

Hsin-Chan Chien <hcchien@hcchien.org>

COPYRIGHT

Top


HTML-CalendarMonthSimple-MultiDaysEvent documentation  | view source Contained in the HTML-CalendarMonthSimple-MultiDaysEvent distribution.