Skip to content

Commit

Permalink
minor changes @ example.php
Browse files Browse the repository at this point in the history
goerdy committed Sep 20, 2023
1 parent b1fc3f0 commit f54e190
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion example.php
Original file line number Diff line number Diff line change
@@ -28,9 +28,10 @@
$DaysColorArray[12][3]="#0000FF"; //blue background for December 12

//DaysHolidaysArray[MONTH][DAY]= boolean
$DaysHolidaysArray[1][1]="true"; //New years eve is highlighted as holiday
$DaysHolidaysArray[3][17]="true"; //March 17th is highlighted as holiday

//function PrintablePDFYearCalendar($title, $Year, $locale, $daysText, $daysColor, $daysHolidays, $highlightHolidays, $highlightSunday, $highlightSaturday, $footer, $format, $colorScheme)

PrintablePDFYearCalendar("Example Calendar", 2024 ,"en_US", $DaysTextArray, $DaysColorArray, $DaysHolidaysArray, "#0F0F0F" ,"#FF0000", "#990000", "some customizable footer text", "A4Landscape", "blue");
PrintablePDFYearCalendar("Example Calendar", 2024 ,"en_US", $DaysTextArray, $DaysColorArray, $DaysHolidaysArray, "#FF0000" ,"#FF0000", "#990000", "some customizable footer text", "A4Landscape", "blue");
?>

0 comments on commit f54e190

Please sign in to comment.