Written by Tom WinterhalderYes it is possible by modifying the file teac.front.class.php. In this file just find the function freeDay.
In this function you can modify the definition of holidays, or define new ones.
A holiday definition looks as follow:
// myHoliday occures every 5th May.
$myHoliday=mktime(0,0,0,5,5,$year);
To check if the current date is on a holiday the following check needs to be extended:
if ($currDate==$newYear || ... $currDate==$boxingDay)
By adding || $currDate==$myHoliday.