function cmfcCalendarV1Julian::timestampToStr in Calendar Systems 7.2
Same name and namespace in other branches
- 8 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::timestampToStr()
- 8.2 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::timestampToStr()
- 7 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::timestampToStr()
Overrides cmfcCalendarV1::timestampToStr
File
- calendar/
v1/ calendarSystems/ julian.class.inc.php, line 83
Class
Code
function timestampToStr($format, $timestamp = null) {
if (is_null($timestamp)) {
$timestamp = $this
->phpTime();
}
parent::timestampToStr($format, $timestamp);
}