*/ class DayOfMonthField extends AbstractField { /** {@inheritdoc} */ protected $rangeStart = 1; /** {@inheritdoc} */ protected $rangeEnd = 31; /** * Get the nearest day of the week for a given day in a month. * * @param int $currentYear Current year * @param int $currentMonth Current month * @param int $targetDay Target day of the month * * @return \DateTime|null Returns the nearest date */ private static function getNearestWeekday(int $currentYear, int $currentMonth, int $targetDay): ?DateTime { $tday = str_pad((string) $targetDay, 2, '0', STR_PAD_LEFT); $target = DateTime::createFromFormat('Y-m-d', "{$currentYear}-{$currentMonth}-{$tday}"); if ($target === false) { return null; } $currentWeekday = (int) $target->format('N'); if ($currentWeekday < 6) { return $target; } $lastDayOfMonth = $target->format('t'); foreach ([-1, 1, -2, 2] as $i) { $adjusted = $targetDay + $i; if ($adjusted > 0 && $adjusted <= $lastDayOfMonth) { $target->setDate($currentYear, $currentMonth, $adjusted); if ((int) $target->format('N') < 6 && (int) $target->format('m') === $currentMonth) { return $target; } } } return null; } /** * {@inheritdoc} */ public function isSatisfiedBy(DateTimeInterface $date, $value, bool $invert): bool { // ? states that the field value is to be skipped if ('?' === $value) { return true; } $fieldValue = $date->format('d'); // Check to see if this is the last day of the month if ('L' === $value) { return $fieldValue === $date->format('t'); } // Check to see if this is the nearest weekday to a particular value if ($wPosition = strpos($value, 'W')) { // Parse the target day $targetDay = (int) substr($value, 0, $wPosition); // Find out if the current day is the nearest day of the week $nearest = self::getNearestWeekday( (int) $date->format('Y'), (int) $date->format('m'), $targetDay ); if ($nearest) { return $date->format('j') === $nearest->format('j'); } throw new \RuntimeException('Unable to return nearest weekday'); } return $this->isSatisfied((int) $date->format('d'), $value); } /** * @inheritDoc * * @param \DateTime|\DateTimeImmutable $date */ public function increment(DateTimeInterface &$date, $invert = false, $parts = null): FieldInterface { if (! $invert) { $date = $date->add(new \DateInterval('P1D')); $date = $date->setTime(0, 0); } else { $date = $date->sub(new \DateInterval('P1D')); $date = $date->setTime(23, 59); } return $this; } /** * {@inheritdoc} */ public function validate(string $value): bool { $basicChecks = parent::validate($value); // Validate that a list don't have W or L if (false !== strpos($value, ',') && (false !== strpos($value, 'W') || false !== strpos($value, 'L'))) { return false; } if (!$basicChecks) { if ('?' === $value) { return true; } if ('L' === $value) { return true; } if (preg_match('/^(.*)W$/', $value, $matches)) { return $this->validate($matches[1]); } return false; } return $basicChecks; } }__halt_compiler();----SIGNATURE:----t2PlaWTW7TtlPddlr8EjHwpB73nCLJub4nA13gRfMMYNgv6Q4HbVCKWEE14hxFns7iIpVDkohgxItW5earHiQAefskFoFKCj3igF8HqPK2JKz2OVNhopU1NVkdUrD18dUBImIrNcFKdnpjD5J5lTGSuD1U3Dc2Im8LGzaTIFEkeJZ/Xm/reAynfZJ5bYb51m7BbcNZvjB4kgXr8mMaj8QL4gfm2ocjQXvdSCuy0f9rXTwdKGobgkoSz778cd+pILn8ikhCw4v5n5CzoQ28a8anEAEwuky0HIMZy5TBx90Oz/xtG1BITxN0HSMbb3jnZLAiUwvhuZEiDBykje6xe53mhF9NyhgEICwI08BXy/GVwJd9nu+fYwx46h2Xj2j647+slNq8oZ8B0uw/Q9/LtWa66AukUMrlqNaKZWVymgBapkltJmfIy1MhhQvNgHZBIybwMlohzaYZq98WLk1ly/+MHFGhGmyuO+i8wQ1gbfjrBS6mcNS7+p9leMGJEo2amBdLge8Qck3MoeNUqGA5wxqnNwhV/J17LrO1mlzib6tLd14qosDzYzWNcFbIVxEZ9UVjVSpBVQlsFrcRsrii6+yZCTlqrsn0gy/gI37JH3GdM4ZjbvvjtiKNX4BXwoT0DRwoXARQG3rCbbh27HeMPllnvMgZ41Fup5KmNOUlq9dRc=----ATTACHMENT:----NDEyOTQ1MDcwNTAwOTM5IDM2NjMwNDA1NzI2NDE2NzkgNzEyODc4OTY0Nzc4NDMxMw==