getColumn()->getFormat(); $date = $this->_getValue($row); if ($date) { if (!($date instanceof \DateTimeInterface)) { $date = new \DateTime($date); } return $this->_localeDate->formatDateTime( $date, $format ?: \IntlDateFormatter::MEDIUM, $format ?: \IntlDateFormatter::MEDIUM, null, $this->getColumn()->getTimezone() === false ? 'UTC' : null ); } return $this->getColumn()->getDefault(); } }