You are here

function calendar_jalali_month_days in Calendar Systems 6.2

Calendar month days helper.

Return value

An array of ordered numbers corresponding to a Jalali year months length of days.

4 calls to calendar_jalali_month_days()
calendar_jalali_convert in calendars/calendar_jalali/calendar_jalali.module
Jalali calendar date converter callback.
calendar_jalali_convert_reverse in calendars/calendar_jalali/calendar_jalali.module
Jalali calendar reverse date converter callback.
calendar_jalali_formatter in calendars/calendar_jalali/calendar_jalali.module
Jalali calendar date formatter callback.
_calendar_jalali_check in calendars/calendar_jalali/calendar_jalali.module
Helper function to check whether the combination of passed values are in Jalali calendar range or not.
1 string reference to 'calendar_jalali_month_days'
calendar_jalali_calendar_info in calendars/calendar_jalali/calendar_jalali.module
Implements hook_calendar_info().

File

calendars/calendar_jalali/calendar_jalali.module, line 456
Implements necessary hooks & helpers to support Jalali Calendar.

Code

function calendar_jalali_month_days() {
  return array(
    31,
    31,
    31,
    31,
    31,
    31,
    30,
    30,
    30,
    30,
    30,
    29,
  );
}