Searched refs:daysInMonth (Results 1 – 6 of 6) sorted by relevance
/webtrees/app/Services/ |
H A D | CalendarService.php | 409 } elseif ($anniv->day() === $anniv->daysInMonth()) { 410 $query->where('d_day', '>=', $anniv->daysInMonth()); 426 if ($anniv->day === 29 && $anniv->daysInMonth() === 29) { 447 if ($anniv->day() === 1 && $tmp->daysInMonth() === 29) { 455 } elseif ($anniv->day === 29 && $anniv->daysInMonth() === 29) { 475 if ($anniv->day === 1 && $tmp->daysInMonth() === 29) { 498 } elseif ($anniv->day() === $anniv->daysInMonth()) { 499 $query->where('d_day', '>=', $anniv->daysInMonth()); 500 if ($anniv->daysInMonth() === 29) {
|
/webtrees/app/Module/ |
H A D | YahrzeitModule.php | 119 … if ($hd->day === 30 && $hd->month === 2 && $hd->year !== 0 && $hd1->daysInMonth() < 30) { 122 … } elseif ($hd->day === 30 && $hd->month === 3 && $hd->year !== 0 && $hd1->daysInMonth() < 30) { 125 …eif ($hd->day === 30 && $hd->month === 6 && $hd->year !== 0 && $today->daysInMonth() < 30 && !$tod…
|
/webtrees/app/Date/ |
H A D | AbstractCalendarDate.php | 368 $days += $this->calendar->daysInMonth($year1, $month1); 432 public function daysInMonth(): int function in Fisharebest\\Webtrees\\Date\\AbstractCalendarDate 435 return $this->calendar->daysInMonth($this->year, $this->month); 542 $format = strtr($format, ['%t' => (string) $this->daysInMonth()]);
|
/webtrees/app/Http/RequestHandlers/ |
H A D | CalendarEvents.php | 81 $days_in_month = $cal_date->daysInMonth(); 135 if ($tmp->day >= 1 && $tmp->day <= $tmp->daysInMonth()) {
|
H A D | CalendarPage.php | 100 $days_in_month = $cal_date->daysInMonth();
|
/webtrees/resources/views/ |
H A D | calendar-page.phtml | 71 …darPage::class, ['cal' => $cal, 'day' => min($cal_date->day(), $today->daysInMonth()), 'month' => …
|