You are here

public function CalendarSystemsIntlCalendar::__construct in Calendar Systems 8.3

Overrides CalendarSystemsPartialImplementation::__construct

File

src/CalendarSystems/CalendarSystemsIntlCalendar.php, line 73

Class

CalendarSystemsIntlCalendar

Namespace

Drupal\calendar_systems\CalendarSystems

Code

public function __construct($tz, $calendar, $lang_code) {
  parent::__construct($tz, $calendar, $lang_code);
  $this->locale = $lang_code . '@calendar=' . $calendar;
  $this->intlFormatter = self::intl($this->timezone, $this->locale);
}