function cmfcCalendarV1Gregorian::isDateValid in Calendar Systems 7.2
Same name and namespace in other branches
- 8 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::isDateValid()
- 8.2 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::isDateValid()
- 7 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);
}