You are here

function cmfcCalendarV1Iranian::isKabise in Calendar Systems 7.3

Same name and namespace in other branches
  1. 8 calendar/v1/calendarSystems/iranian.class.inc.php \cmfcCalendarV1Iranian::isKabise()
  2. 8.2 calendar/v1/calendarSystems/iranian.class.inc.php \cmfcCalendarV1Iranian::isKabise()
  3. 5 calendar/v1/calendarSystems/iranian.class.inc.php \cmfcCalendarV1Iranian::isKabise()
  4. 6.3 calendar/v1/calendarSystems/iranian.class.inc.php \cmfcCalendarV1Iranian::isKabise()
  5. 6 calendar/v1/calendarSystems/iranian.class.inc.php \cmfcCalendarV1Iranian::isKabise()
  6. 7 calendar/v1/calendarSystems/iranian.class.inc.php \cmfcCalendarV1Iranian::isKabise()
  7. 7.2 calendar/v1/calendarSystems/iranian.class.inc.php \cmfcCalendarV1Iranian::isKabise()

File

calendar/v1/calendarSystems/iranian.class.inc.php, line 587

Class

cmfcCalendarV1Iranian

Code

function isKabise($year) {
  if ($year % 4 == 0 && $year % 100 != 0) {
    return true;
  }
  return false;
}