Searched refs:weekDays (Results 1 – 6 of 6) sorted by relevance
| /plugin/schedule/ |
| D | schedule.class.php | 39 var $weekDays; // event array days concern by the repeating week variable in schedule
|
| D | schedules.class.php | 508 $schedule->weekDays = scheduleRoot::array2string ($request ['weekDays']); 829 foreach (explode ('|', $event->weekDays) as $idd) { 1205 $result .= in_array ($idd, explode ('|', $event->weekDays)) ? $dayName.' ' : ''; 1308 foreach (explode ('|', $event->weekDays) as $idd) { 1421 $eventWeekDays = explode ("|", $this->defaultSchedule->weekDays);
|
| /plugin/calendar/ |
| H A D | action.php | 275 $weekDays = ($weekDaysStr !== '') ? array_map('intval', explode(',', $weekDaysStr)) : []; 284 …currenceType', interval=$recurrenceInterval, weekDays=" . implode(',', $weekDays) . ", monthlyType… 437 … $weekDays, $monthlyType, $monthDay, $ordinalWeek, $ordinalDay, $generatedId); 1501 $recurrenceEnd, $weekDays, $monthlyType, $monthDay, argument 1560 $isDaySelected = empty($weekDays) || in_array($currentDayOfWeek, $weekDays); 1660 if ($recurrenceType === 'weekly' && !empty($weekDays)) { 1661 $eventData['weekDays'] = $weekDays;
|
| H A D | admin.php | 3173 $weekDays = $series['weekDays'] ?? []; 3184 if (!empty($weekDays) && count($weekDays) < 7) { 3187 }, $weekDays); 4362 $weekDays = $weekDaysStr ? array_map('intval', explode(',', $weekDaysStr)) : []; 4435 if (!empty($weekDays)) { 4436 $event['weekDays'] = $weekDays; 4534 $weekDays, 4556 if (!empty($weekDays)) $newEvent['weekDays'] = $weekDays; 4584 …private function generateRecurrenceDates($startDate, $type, $interval, $weekDays, $monthlyType, $m… argument 4606 $isDaySelected = empty($weekDays) || in_array($currentDayOfWeek, $weekDays);
|
| H A D | calendar-main.js | 1629 let weekDays = []; 1633 weekDays = Array.from(checkboxes).map(cb => cb.value); 1686 weekDays: weekDays.join(','), property
|
| H A D | CHANGELOG.md | 60 … falsy — when Sunday (day index 0) was the only selected weekday, the `$weekDays` array was empty,… 1149 - New parameters: recurrenceInterval, weekDays, monthlyType, monthDay, ordinalWeek, ordinalDay
|