You are here

public static property DateRRuleCalc::$day_names in Date 8

Map the abbreviation used in iCal day names to the day name usable by DateTime and DateInterval.

File

date_repeat/lib/Drupal/date_repeat/DateRRuleCalc.php, line 34
Code to compute the dates that match an iCal RRULE.

Class

DateRRuleCalc

Namespace

Drupal\date_repeat

Code

public static $day_names = array(
  'SU' => 'Sunday',
  'MO' => 'Monday',
  'TU' => 'Tuesday',
  'WE' => 'Wednesday',
  'TH' => 'Thursday',
  'FR' => 'Friday',
  'SA' => 'Saturday',
);