function MerciHours::getOpenDaysInPeriod in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3
Returns a list of opening days for the requested period.
1 call to MerciHours::getOpenDaysInPeriod()
- MerciHours::getOpenDays in merci_hours/
includes/ entity.inc - Returns a list of opening days for the requested year or month.
File
- merci_hours/
includes/ entity.inc, line 154
Class
- MerciHours
- Define a WorkCalendar object with its operations.
Code
function getOpenDaysInPeriod($start, $end) {
$week_days = $this->week_days;
$dates = self::weekDaysDates($start, $end, $week_days);
return $dates;
}