You are here

function cmfcCalendarV1Julian::timestampToStr in Calendar Systems 8.2

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

Overrides cmfcCalendarV1::timestampToStr

File

calendar/v1/calendarSystems/julian.class.inc.php, line 83

Class

cmfcCalendarV1Julian

Code

function timestampToStr($format, $timestamp = null) {
  if (is_null($timestamp)) {
    $timestamp = $this
      ->phpTime();
  }
  parent::timestampToStr($format, $timestamp);
}