Calendar Helper =================================== A simple helper for creating an XHTML and CSS calendar. The "calendar" and "day_months" methods will be automatically available to your view templates. Installation -------------------------------- ./script/plugin install calendar_helper Using the calendar helper -------------------------------- Printing a calendar <%= calendar :month => 10, :year => 2007 %> Adding special meaning to a given day in the calendar. The calendar helper implements something similar to blocks in Ruby by using PHP variable references. This example will add the class specialDay to the days found in the array $list_of_special_days while($calendar_helper->month_days(array('month' => 6, 'year' => 2010), $d)) : if(in_array($d->day, $list_of_special_days)){ $d->cell_attributes = array('class' => 'specialDay'); } endwhile; ?> This example will replace the inner content of the