You are here

function cmfcCalendarV1Gregorian::infoArrayToTimestamp in Calendar Systems 8.2

Same name and namespace in other branches
  1. 8 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::infoArrayToTimestamp()
  2. 5 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::infoArrayToTimestamp()
  3. 6.3 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::infoArrayToTimestamp()
  4. 6 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::infoArrayToTimestamp()
  5. 7.3 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::infoArrayToTimestamp()
  6. 7 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::infoArrayToTimestamp()
  7. 7.2 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::infoArrayToTimestamp()

Overrides cmfcCalendarV1::infoArrayToTimestamp

1 call to cmfcCalendarV1Gregorian::infoArrayToTimestamp()
cmfcCalendarV1Gregorian::timestampToInfoArray in calendar/v1/calendarSystems/gregorian.class.inc.php

File

calendar/v1/calendarSystems/gregorian.class.inc.php, line 112

Class

cmfcCalendarV1Gregorian
@desc

Code

function infoArrayToTimestamp($arr) {
  return parent::mktime(0, 0, 0, $arr['month'], $arr['day'], $arr['year']);
}