_appendName = true; $this->_type = 'date_range_picker'; } /** * @return string */ public function toHtml() { $js = $this->getElementJS(); $this->removeAttribute('format'); $this->removeAttribute('timepicker'); $this->removeAttribute('validate_format'); return $js.parent::toHtml(); } /** * @param string $value */ public function setValue($value) { $this->updateAttributes( [ 'value' => $value, ] ); } /** * @param array $dateRange * * @return array */ public function parseDateRange($dateRange) { $dateRange = Security::remove_XSS($dateRange); $dates = explode('/', $dateRange); $dates = array_map('trim', $dates); $start = isset($dates[0]) ? $dates[0] : ''; $end = isset($dates[1]) ? $dates[1] : ''; $pattern = 'yyyy-MM-dd HH:mm'; if ('false' === $this->getAttribute('timePicker') && false === strpos($this->getAttribute('format'), 'HH:mm')) { $pattern = 'yyyy-MM-dd'; } $formatter = new IntlDateFormatter( 'en', IntlDateFormatter::NONE, IntlDateFormatter::NONE, 'UTC', IntlDateFormatter::GREGORIAN, $pattern ); $resultStart = $formatter->format($formatter->parse($start)); $resultEnd = $formatter->format($formatter->parse($end)); return [ 'start' => $resultStart, 'end' => $resultEnd, ]; } /** * @param array $dates result of parseDateRange() * * @return bool */ public function validateDates($dates, $format = null) { if (empty($dates['start']) || empty($dates['end'])) { return false; } $format = $format ? $format : 'Y-m-d H:i'; $d = DateTime::createFromFormat($format, $dates['start']); $resultStart = $d && $d->format($format) == $dates['start']; $d = DateTime::createFromFormat($format, $dates['end']); $resultEnd = $d && $d->format($format) == $dates['end']; if (!$resultStart || !$resultEnd) { return false; } return true; } /** * @param mixed $value * @param array $submitValues * @param array $errors * * @return string */ public function getSubmitValue($value, &$submitValues, &$errors) { /** @var DateRangePicker $element */ $elementName = $this->getName(); $parsedDates = $this->parseDateRange($value); $validateFormat = $this->getAttribute('validate_format'); if (!$this->validateDates($parsedDates, $validateFormat)) { $errors[$elementName] = get_lang('Validate dates'); } $submitValues[$elementName.'_start'] = $parsedDates['start']; $submitValues[$elementName.'_end'] = $parsedDates['end']; return $value; } /** * Get the necessary javascript for this datepicker. * * @return string */ private function getElementJS() { $js = null; $id = $this->getAttribute('id'); $dateRange = $this->getAttribute('value'); $defaultDates = null; if (!empty($dateRange)) { $dates = $this->parseDateRange($dateRange); $defaultDates = " startDate: '".$dates['start']."', endDate: '".$dates['end']."', "; } $minDate = null; $minDateValue = Security::remove_XSS($this->getAttribute('minDate')); if (!empty($minDateValue)) { $minDate = " minDate: '{$minDateValue}', "; } $maxDate = null; $maxDateValue = Security::remove_XSS($this->getAttribute('maxDate')); if (!empty($maxDateValue)) { $maxDate = " maxDate: '{$maxDateValue}', "; } $format = 'YYYY-MM-DD HH:mm'; $formatValue = Security::remove_XSS($this->getAttribute('format')); if (!empty($formatValue)) { $format = $formatValue; } $timePicker = 'true'; $timePickerValue = Security::remove_XSS($this->getAttribute('timePicker')); if (!empty($timePickerValue)) { $timePicker = 'false'; } // timeFormat: 'hh:mm' $js .= ""; return $js; } }