You are here

public function CalendarSystemsPoorMansGregorianCalendar::format in Calendar Systems 8.3

Overrides CalendarSystemsInterface::format

File

src/CalendarSystems/CalendarSystemsPoorMansGregorianCalendar.php, line 19
Fallback calendar implementation in case php-intl is not available.

Class

CalendarSystemsPoorMansGregorianCalendar

Namespace

Drupal\calendar_systems\CalendarSystems

Code

public function format($format) {
  return date_format(parent::getOrigin(), $format);
}