HTML::Calendar::Simple

A simple HTML calendar
Download

HTML::Calendar::Simple Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Stray Toaster
  • Publisher web site:
  • http://search.cpan.org/~strytoast/Test-Inspector-0.03/lib/Test/Inspector.pm

HTML::Calendar::Simple Tags


HTML::Calendar::Simple Description

A simple HTML calendar HTML::Calendar::Simple is a simple Perl module which will make an HTML representation of a given month. You can add links to individual days, or in fact, any sort of information you want.SYNOPSIS use HTML::Calendar::Simple; my $cal = HTML::Calendar::Simple->new; # This month, this year $cal = HTML::Calendar::Simple->new({ 'month' => $month }); # This year $cal = HTML::Calendar::Simple->new({ 'month' => $month, 'year' => $year}); my $month = $cal->month; my $year = $cal->year; $cal->pin_up(a_picture_location); $cal->daily_info({ 'day' => $day, 'day_link' => $location, $type1 => $info1, $type2 => $info2, 'link' => , }); print $cal; # stringifies to something like the output of cal my $html = $cal->calendar_month; my $html = HTML::Calendar::Simple->calendar_year; $html = HTML::Calendar::Simple->calendar_year({ 'year' => $year }); $html = HTML::Calendar::Simple->calendar_year( { 'pin_up' => $where_to_find_the_picture, 'year' => $year, $month => { $day1 => $link1, $day2 => $link2, } }); Requirements: · Perl


HTML::Calendar::Simple Related Software