public function cmfcCalendarV1Gregorian::fromGregorian in Calendar Systems 7
Same name and namespace in other branches
- 8 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::fromGregorian()
- 8.2 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::fromGregorian()
- 7.2 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::fromGregorian()
Overrides cmfcCalendarV1Plugin::fromGregorian
File
- calendar/v1/ calendarSystems/ gregorian.class.inc.php, line 285 
Class
- cmfcCalendarV1Gregorian
- @desc
Code
public function fromGregorian($g_y, $g_m, $g_d) {
  return array(
    $g_y,
    $g_m,
    $g_d,
  );
}