You may enable the display of holidays in
php/config.pinc
For example:
$tutos[holiday]['US'] = 1; |
will enable the display of US holidays and
$tutos[holiday]['US'] = 0; |
will disable it.
If you have special holidays or yeardays in your organization you cab
create a file
php/holiday_custom.pinc according to the
format
of
php/holiday_us.p3
For example:
Example 4-1. Will show the 31st of October in every year as a fiscal year end
"Holiday"
<?
$tutos[cal][] = array(
array( Date => "31-10", Desc => "Fiscal Year end"),
);
?> |