function MerciHours::getClosedDays in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3
Returns a list of closed days for the requested year or month.
File
- merci_hours/
includes/ entity.inc, line 180
Class
- MerciHours
- Define a WorkCalendar object with its operations.
Code
function getClosedDays($year, $month = NULL) {
list($start, $end) = self::periodDates($year, $month);
return $this
->getClosedDaysInPeriod($start, $end);
}