';
}
function intDisplayWeekTitle( $intWeekDay )
{
/* define how titles of the week are to be displayed */
echo '| ';
echo $this->gaWeekTitles[ $intWeekDay ];
echo ' | ';
}
function intDisplayDay( $intDay )
{
/* define how the days of the month are to be displayed */
echo '';
echo $intDay;
echo ' | ';
}
}
/* no other functions in the pcCalendar need to be overridden. */
/* create new Calendar instance */
$cal = new myCalendar;
/* display calendar for current month & year */
$cal->intShowCalendar();
?>