Home
last modified time | relevance | path

Searched refs:isLeapYear (Results 1 – 4 of 4) sorted by relevance

/webtrees/app/Date/
H A DAbstractCalendarDate.php106 … === 6 && $this->calendar instanceof JewishCalendar && !$this->calendar->isLeapYear($this->year)) {
205 public function isLeapYear(): bool function in Fisharebest\\Webtrees\\Date\\AbstractCalendarDate
207 return $this->calendar->isLeapYear($this->year);
545 $format = strtr($format, ['%L' => $this->isLeapYear() ? '1' : '0']);
679 return $this->monthNameGenitiveCase($this->month, $this->isLeapYear());
681 return $this->monthNameNominativeCase($this->month, $this->isLeapYear());
683 return $this->monthNameLocativeCase($this->month, $this->isLeapYear());
685 return $this->monthNameInstrumentalCase($this->month, $this->isLeapYear());
748 return $this->monthNameAbbreviated($this->month, $this->isLeapYear());
785 … === 7 && $this->calendar instanceof JewishCalendar && !$this->calendar->isLeapYear($this->year)) {
H A DJewishDate.php353 if ($this->month === 6 && !$this->isLeapYear()) {
/webtrees/app/Services/
H A DCalendarService.php76 …if ($month_number === 6 && $calendar_date instanceof JewishDate && !$calendar_date->isLeapYear()) {
81 …if ($month_number === 7 && $calendar_date instanceof JewishDate && !$calendar_date->isLeapYear()) {
508 if ($anniv->isLeapYear()) {
523 if ($anniv->day === 1 && !$anniv->isLeapYear()) {
/webtrees/app/Module/
H A DYahrzeitModule.php125 …30 && $hd->month === 6 && $hd->year !== 0 && $today->daysInMonth() < 30 && !$today->isLeapYear()) {