public function cmfcCalendarV1Gregorian::makeTime in Calendar Systems 7.2
Same name and namespace in other branches
- 8 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::makeTime()
- 8.2 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::makeTime()
- 7 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::makeTime()
Overrides cmfcCalendarV1Plugin::makeTime
File
- calendar/
v1/ calendarSystems/ gregorian.class.inc.php, line 304
Class
- cmfcCalendarV1Gregorian
- @desc
Code
public function makeTime($hour = "", $minute = "", $second = "", $jmonth = "", $jday = "", $jyear = "") {
return parent::mktime($hour, $minute, $second, $jmonth, $jday, $jyear);
}