local = (bool) $local; } /** * Check whether the given date time is valid * * @param string|DateTime $value * * @return bool */ public function isValid($value) { // Multiple isValid() calls must not stack validation messages $this->clearMessages(); if (! $value instanceof DateTime && ! is_string($value)) { $this->addMessage($this->translate('Invalid date/time given.')); return false; } if (! $value instanceof DateTime) { $format = $this->local === true ? static::FORMAT : DateTime::RFC3339; $dateTime = DateTime::createFromFormat($format, $value); if ($dateTime === false || $dateTime->format($format) !== $value) { $this->addMessage(sprintf( $this->translate("Date/time string not in the expected format: %s"), $format )); return false; } } return true; } }