You are here

public function cmfcCalendarV1Gregorian::toGregorian in Calendar Systems 8.2

Same name and namespace in other branches
  1. 8 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::toGregorian()
  2. 7 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::toGregorian()
  3. 7.2 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::toGregorian()

Overrides cmfcCalendarV1Plugin::toGregorian

File

calendar/v1/calendarSystems/gregorian.class.inc.php, line 289

Class

cmfcCalendarV1Gregorian
@desc

Code

public function toGregorian($j_y, $j_m, $j_d) {
  return array(
    $j_y,
    $j_m,
    $j_d,
  );
}