Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Highlight days with content with HTML::CalendarMonthSimple

by jryan (Vicar)
on Sep 09, 2004 at 23:30 UTC ( [id://389921]=CUFP: print w/replies, xml ) Need Help??

This subroutine will highlight the dates with content/events by making the date size appear bigger for those days. The argument to the subroutine should be an HTML::CalendarMonthSimple object that is finished with processing and ready to be displayed.

sub highlight_days { my ($cal) = @_; $cal->showdatenumbers(0); for (1..32) { # this works! months will still display with # the correct number of days. my $content = $cal->getcontent($_); my $size = $content ? "120%" : "90%"; $cal->setcontent($_, qq[ <b style="font-size:$size;float:right">$_</b> <span style="float:left">$content</span> ]); } return $cal; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://389921]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (7)
As of 2024-03-28 08:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found