You are here

function cmfcCalendarV1Gregorian::isDateValid in Calendar Systems 8.2

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

Overrides cmfcCalendarV1Plugin::isDateValid

File

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

Class

cmfcCalendarV1Gregorian
@desc

Code

function isDateValid($month, $day, $year) {
  return checkdate($month, $day, $year);
}