. */ use Fisharebest\ExtCalendar\JulianCalendar; /** * Class JulianDate - Definitions for the Julian Proleptic calendar * (Proleptic means we extend it backwards, prior to its introduction in 46BC) */ class JulianDate extends CalendarDate { /** @var bool True for dates recorded in new-style/old-style format, e.g. 2 FEB 1743/44 */ private $new_old_style = false; /** {@inheritdoc} */ public function __construct($date) { $this->calendar = new JulianCalendar; parent::__construct($date); } /** {@inheritdoc} */ protected function nextYear($year) { if ($year == -1) { return 1; } else { return $year + 1; } } /** * Process new-style/old-style years and years BC * * {@inheritdoc} */ protected function extractYear($year) { if (preg_match('/^(\d\d\d\d)\/\d{1,4}$/', $year, $match)) { // Assume the first year is correct $this->new_old_style = true; return $match[1] + 1; } elseif (preg_match('/^(\d+) B\.C\.$/', $year, $match)) { return -$match[1]; } else { return (int) $year; } } /** {@inheritdoc} */ protected function formatLongYear() { if ($this->y < 0) { return /* I18N: BCE=Before the Common Era, for Julian years < 0. See http://en.wikipedia.org/wiki/Common_Era */ I18N::translate('%s BCE', I18N::digits(-$this->y)); } else { if ($this->new_old_style) { return I18N::translate('%s CE', I18N::digits(sprintf('%d/%02d', $this->y - 1, $this->y % 100))); } else { return /* I18N: CE=Common Era, for Julian years > 0. See http://en.wikipedia.org/wiki/Common_Era */ I18N::translate('%s CE', I18N::digits($this->y)); } } } /** {@inheritdoc} */ protected function formatGedcomYear() { if ($this->y < 0) { return sprintf('%04d B.C.', -$this->y); } else { if ($this->new_old_style) { return sprintf('%04d/%02d', $this->y - 1, $this->y % 100); } else { return sprintf('%04d', $this->y); } } } }