function cmfcCalendarV1Julian::makeTime in Calendar Systems 8.2
Same name and namespace in other branches
- 8 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::makeTime()
- 7 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::makeTime()
- 7.2 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::makeTime()
Overrides cmfcCalendarV1Plugin::makeTime
File
- calendar/
v1/ calendarSystems/ julian.class.inc.php, line 598
Class
Code
function makeTime($hour = "", $minute = "", $second = "", $jmonth = "", $jday = "", $jyear = "") {
if (!$hour && !$minute && !$second && !$jmonth && !$jmonth && !$jday && !$jyear) {
return $this
->phpTime();
}
list($year, $month, $day) = $this
->toGregorian($jyear, $jmonth, $jday);
$i = parent::mktime($hour, $minute, $second, $month, $day, $year);
return $i;
}