ILIAS  release_8 Revision v8.24
ilCalendarUtil Class Reference

Class ilCalendarUtil. More...

+ Collaboration diagram for ilCalendarUtil:

Static Public Member Functions

static convertDateToUtcDBTimestamp (\ilDateTime $date=null)
 
static _isToday (ilDateTime $date)
 
static _numericMonthToString (int $a_month, bool $a_long=true)
 numeric month to string More...
 
static _numericDayToString (int $a_day, bool $a_long=true)
 
static _buildWeekDayList (ilDate $a_day, int $a_weekstart)
 build week day list @access public More...
 
static _buildMonthDayList (int $a_month, int $a_year, int $weekstart)
 Build a month day list. More...
 
static initJSCalendar ()
 
static getZoneInfoFile ($a_tz)
 
static _getShortTimeZoneList ()
 get short timezone list More...
 
static _isLeapYear (int $a_year)
 check if a given year is a leap year More...
 
static _getMaxDayOfMonth (int $a_year, int $a_month)
 get max day of month 2008,2 => 29 More...
 
static calculateFontColor (string $a_html_color_code)
 Calculate best font color from html hex color code. More...
 
static getHourSelection (int $a_format)
 Get hour selection depending on user specific hour format. More...
 
static initDefaultCalendarByType (int $a_type_id, int $a_usr_id, string $a_title, bool $a_create=false)
 Init the default calendar for given type and user. More...
 
static getUserDateFormat (int $a_add_time=0, bool $a_for_parsing=false)
 Parse current user setting into date/time format. More...
 
static initDateTimePicker ()
 
static addDateTimePicker (string $a_id, ?int $a_add_time=null, ?array $a_custom_config=null, ?string $a_id2=null, ?array $a_custom_config2=null, ?string $a_toggle_id=null, ?string $a_subform_id=null)
 Add date time picker to element. More...
 
static getCodeForPicker (string $a_id, ?int $a_add_time=null, ?array $a_custom_config=null, ?string $a_id2=null, ?array $a_custom_config2=null, ?string $a_toggle_id=null, ?string $a_subform_id=null)
 Add date time picker to element. More...
 
static parseDateString (string $a_date, bool $a_add_time=false, bool $a_use_generic_format=false)
 Parse (incoming) string to date/time object. More...
 
static parseIncomingDate ($a_value, bool $a_add_time=false)
 Try to parse incoming value to date object. More...
 

Static Public Attributes

static string $init_done
 

Static Protected Attributes

static bool $init_datetimepicker = false
 

Static Private Attributes

static ilDateTime $today = null
 
static array $default_calendar = array()
 

Detailed Description

Member Function Documentation

◆ _buildMonthDayList()

static ilCalendarUtil::_buildMonthDayList ( int  $a_month,
int  $a_year,
int  $weekstart 
)
static

Build a month day list.

Parameters
intmonth
intyear
intweekstart (0 => Sunday,1 => Monday)
Returns
ilDateList

Definition at line 119 of file class.ilCalendarUtil.php.

119 : ilDateList
120 {
121 $day_list = new ilDateList(ilDateList::TYPE_DATE);
122
123 $prev_month = ($a_month == 1) ? 12 : $a_month - 1;
124 $prev_year = ($prev_month == 12) ? $a_year - 1 : $a_year;
125 $next_month = $a_month == 12 ? 1 : $a_month + 1;
126 $next_year = $a_month == 12 ? $a_year + 1 : $a_year;
127
128 $days_in_month = self::_getMaxDayOfMonth($a_year, $a_month);
129 $days_in_prev_month = self::_getMaxDayOfMonth($a_year, $prev_month);
130
131 $week_day['year'] = $a_year;
132 $week_day['mon'] = $a_month;
133 $week_day['mday'] = 1;
134 $week_day['hours'] = 0;
135 $week_day['minutes'] = 0;
136 $week_day = new ilDate($week_day, IL_CAL_FKT_GETDATE);
137
138 $weekday = $week_day->get(IL_CAL_FKT_DATE, 'w');
139 $first_day_offset = (($weekday - $weekstart) < 0) ? 6 : $weekday - $weekstart;
140
141 for ($i = 0; $i < 42; $i++) {
142 if ($i < $first_day_offset) {
143 $day = $days_in_prev_month - $first_day_offset + $i + 1;
144
145 $day_list->add(new ilDate(
146 gmmktime(
147 0,
148 0,
149 0,
150 $prev_month,
151 $days_in_prev_month - $first_day_offset + $i + 1,
152 $prev_year
153 ),
155 ));
156 } elseif ($i < $days_in_month + $first_day_offset) {
157 $day = $i - $first_day_offset + 1;
158
159 $day_list->add(new ilDate(
160 gmmktime(
161 0,
162 0,
163 0,
164 $a_month,
165 $i - $first_day_offset + 1,
166 $a_year
167 ),
169 ));
170 } else {
171 $day = $i - $days_in_month - $first_day_offset + 1;
172 $day_list->add(new ilDate(
173 gmmktime(
174 0,
175 0,
176 0,
177 $next_month,
178 $i - $days_in_month - $first_day_offset + 1,
179 $next_year
180 ),
182 ));
183 }
184 if ($i == 34 and ($day < 15 or $day == $days_in_month)) {
185 break;
186 }
187 }
188 return $day_list;
189 }
const IL_CAL_FKT_GETDATE
const IL_CAL_UNIX
const IL_CAL_FKT_DATE
static _getMaxDayOfMonth(int $a_year, int $a_month)
get max day of month 2008,2 => 29
List of dates.
Class for single dates.
$i
Definition: metadata.php:41

References $i, _getMaxDayOfMonth(), IL_CAL_FKT_DATE, IL_CAL_FKT_GETDATE, IL_CAL_UNIX, and ilDateList\TYPE_DATE.

Referenced by ilMiniCalendarGUI\addMiniMonth(), ilCalendarBlockGUI\addMiniMonth(), and ilCalendarMonthGUI\show().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _buildWeekDayList()

static ilCalendarUtil::_buildWeekDayList ( ilDate  $a_day,
int  $a_weekstart 
)
static

build week day list @access public

Parameters
ilDatea day in a week
intweekstart
Returns
ilDateList

Definition at line 93 of file class.ilCalendarUtil.php.

94 {
95 $day_list = new ilDateList(ilDateList::TYPE_DATE);
96
97 $start = clone $a_day;
98 $start_info = $start->get(IL_CAL_FKT_GETDATE, '', 'UTC');
99 $day_diff = $a_weekstart - $start_info['isoday'];
100 if (abs($day_diff) === 7) {
101 $day_diff = 0;
102 }
103 $start->increment(IL_CAL_DAY, $day_diff);
104 $day_list->add($start);
105 for ($i = 1; $i < 7; $i++) {
106 $start->increment(IL_CAL_DAY, 1);
107 $day_list->add($start);
108 }
109 return $day_list;
110 }
const IL_CAL_DAY
get(int $a_format, string $a_format_str='', string $a_tz='')
get formatted date

References $i, ilDate\get(), IL_CAL_DAY, IL_CAL_FKT_GETDATE, and ilDateList\TYPE_DATE.

Referenced by ilCalendarViewGUI\getBucketTitle(), ilCalendarHeaderNavigationGUI\getHTML(), and ilCalendarWeekGUI\show().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _getMaxDayOfMonth()

static ilCalendarUtil::_getMaxDayOfMonth ( int  $a_year,
int  $a_month 
)
static

get max day of month 2008,2 => 29

Definition at line 386 of file class.ilCalendarUtil.php.

386 : int
387 {
388 if (function_exists('cal_days_in_month')) {
389 return cal_days_in_month(CAL_GREGORIAN, $a_month, $a_year);
390 }
391 return (int) date('t', mktime(0, 0, 0, $a_month, 1, $a_year));
392 }

Referenced by _buildMonthDayList(), ilCalendarRecurrenceCalculator\applyBYMONTHDAYRules(), ilCalendarRecurrenceCalculator\getMonthWeekDays(), and ilCalendarSchedule\initPeriod().

+ Here is the caller graph for this function:

◆ _getShortTimeZoneList()

static ilCalendarUtil::_getShortTimeZoneList ( )
static

get short timezone list

Definition at line 289 of file class.ilCalendarUtil.php.

289 : array
290 {
291 return array(
292 'Pacific/Samoa' => 'GMT-11: Midway Islands, Samoa',
293 'US/Hawaii' => 'GMT-10:00: Hawaii, Polynesia',
294 'US/Alaska' => 'GMT-9:00: Alaska',
295 'America/Los_Angeles' => 'GMT-8:00: Tijuana, Los Angeles, Seattle, Vancouver',
296 'US/Arizona' => 'GMT-7:00: Arizona',
297 'America/Chihuahua' => 'GMT-7:00: Chihuahua, La Paz, Mazatlan',
298 'America/Denver' => 'GMT-7:00: Arizona, Denver, Salt Lake City, Calgary',
299 'America/Chicago' => 'GMT-6:00: Chicago, Dallas, Kansas City, Winnipeg',
300 'America/Monterrey' => 'GMT-6:00: Guadalajara, Mexico City, Monterrey',
301 'Canada/Saskatchewan' => 'GMT-6:00: Saskatchewan',
302 'US/Central' => 'GMT-6:00: Central America',
303 'America/Bogota' => 'GMT-5:00: Bogota, Lima, Quito',
304 'US/East-Indiana' => 'GMT-5:00: East-Indiana',
305 'America/New_York' => 'GMT-5:00: New York, Miami, Atlanta, Detroit, Toronto',
306 'Canada/Atlantic' => 'GMT-4:00: Atlantic (Canada)',
307 'America/La_Paz' => 'GMT-4:00: Carcas, La Paz',
308 'America/Santiago' => 'GMT-4:00: Santiago',
309 'Canada/Newfoundland' => 'GMT-3:00: Newfoundland',
310 'Brazil/East' => 'GMT-3:00: Sao Paulo',
311 'America/Argentina/Buenos_Aires' => 'GMT-3:00: Buenes Aires, Georgtown',
312 'Etc/GMT+3' => 'GMT-3:00: Greenland, Uruguay, Surinam',
313 'Atlantic/Cape_Verde' => 'GMT-2:00: Cape Verde, Greenland, South Georgia',
314 'Atlantic/Azores' => 'GMT-1:00: Azores',
315 'Africa/Casablanca' => 'GMT+0:00: Casablanca, Monrovia',
316 'Europe/London' => 'GMT+0:00: Dublin, Edinburgh, Lisbon, London',
317 'Europe/Berlin' => 'GMT+1:00: Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna',
318 'Europe/Belgrade' => 'GMT+1:00: Belgrade, Bratislava, Budapest, Ljubljana, Prague',
319 'Europe/Paris' => 'GMT+1:00: Brussels, Copenhagen, Paris, Madrid',
320 'Europe/Sarajevo' => 'GMT+1:00: Sarajevo, Skopje, Warsaw, Zagreb',
321 'Africa/Lagos' => 'GMT+1:00: West-Central Africa',
322 'Europe/Athens' => 'GMT+2:00: Athens, Beirut, Istanbul, Minsk',
323 'Europe/Bucharest' => 'GMT+2:00: Bucharest',
324 'Africa/Harare' => 'GMT+2:00: Harare, Pratoria',
325 'Europe/Helsinki' => 'GMT+2:00: Helsinki, Kiev, Riga, Sofia, Tallinn, Vilnius',
326 'Asia/Jerusalem' => 'GMT+2:00: Jerusalem',
327 'Africa/Cairo' => 'GMT+2:00: Cairo',
328 'Asia/Baghdad' => 'GMT+3:00: Baghdad',
329 'Asia/Kuwait' => 'GMT+3:00: Kuwait, Riyadh',
330 'Europe/Moscow' => 'GMT+3:00: Moscow, Saint Petersburg',
331 'Africa/Nairobi' => 'GMT+3:00: Nairobi',
332 'Asia/Tehran' => 'GMT+3:30: Tehran',
333 'Asia/Muscat' => 'GMT+4:00: Abu Dhabi, Muscat',
334 'Asia/Baku' => 'GMT+4:00: Baku, Tbilisi, Erivan',
335 'Asia/Kabul' => 'GMT+4:00: Kabul',
336 'Asia/Karachi' => 'GMT+5:00: Islamabad, Karachi, Taschkent',
337 'Asia/Yekaterinburg' => 'GMT+5:00: Yekaterinburg',
338 'Asia/Calcutta' => 'GMT+5:30: New Dehli',
339 'Asia/Katmandu' => 'GMT+5:45: Katmandu',
340 'Asia/Novosibirsk' => 'GMT+6:00: Almaty, Novosibirsk',
341 'Asia/Dhaka' => 'GMT+6:00: Astana, Dhaka',
342 'Asia/Rangoon' => 'GMT+6:00: Sri Jayawardenepura, Rangoon',
343 'Asia/Jakarta' => 'GMT+7:00: Bangkok, Hanoi, Jakarta',
344 'Asia/Krasnoyarsk' => 'GMT+7:00: Krasnoyarsk',
345 'Asia/Irkutsk' => 'GMT+8:00: Irkutsk, Ulan Bator',
346 'Asia/Singapore' => 'GMT+8:00: Kuala Lumpour, Singapore',
347 'Asia/Hong_Kong' => 'GMT+8:00: Beijing, Chongqing, Hong kong, Urumchi',
348 'Australia/Perth' => 'GMT+8:00: Perth',
349 'Asia/Taipei' => 'GMT+8:00: Taipei',
350 'Asia/Yakutsk' => 'GMT+9:00: Yakutsk',
351 'Asia/Tokyo' => 'GMT+9:00: Osaka, Sapporo, Tokyo',
352 'Asia/Seoul' => 'GMT+9:00: Seoul, Darwin, Adelaide',
353 'Australia/Brisbane' => 'GMT+10:00: Brisbane',
354 'Australia/Sydney' => 'GMT+10:00: Canberra, Melbourne, Sydney',
355 'Pacific/Guam' => 'GMT+10:00: Guam, Port Moresby',
356 'Australia/Hobart' => 'GMT+10:00: Hobart',
357 'Asia/Vladivostok' => 'GMT+10:00: Vladivostok',
358 'Asia/Magadan' => 'GMT+11:00: Salomon Islands, New Caledonia, Magadan',
359 'Pacific/Auckland' => 'GMT+12:00: Auckland, Wellington',
360 'Pacific/Fiji' => 'GMT+12:00: Fiji, Kamchatka, Marshall-Islands'
361 );
362 }

Referenced by ilObjCalendarSettingsGUI\initFormSettings(), ilPersonalSettingsGUI\initGeneralSettingsForm(), and ilCalendarUserSettingsGUI\initSettingsForm().

+ Here is the caller graph for this function:

◆ _isLeapYear()

static ilCalendarUtil::_isLeapYear ( int  $a_year)
static

check if a given year is a leap year

Definition at line 367 of file class.ilCalendarUtil.php.

367 : bool
368 {
369 $is_leap = false;
370 if ($a_year % 4 == 0) {
371 $is_leap = true;
372 if ($a_year % 100 == 0) {
373 $is_leap = false;
374 if ($a_year % 400) {
375 return true;
376 }
377 }
378 }
379 return $is_leap;
380 }

Referenced by ilCalendarRecurrenceCalculator\getYearWeekDays().

+ Here is the caller graph for this function:

◆ _isToday()

static ilCalendarUtil::_isToday ( ilDateTime  $date)
static

Definition at line 46 of file class.ilCalendarUtil.php.

46 : bool
47 {
48 global $DIC;
49
50 $ilUser = $DIC['ilUser'];
51 if (!is_object(self::$today)) {
52 self::$today = new ilDateTime(time(), IL_CAL_UNIX, $ilUser->getTimeZone());
53 }
54 return ilDateTime::_equals(self::$today, $date, IL_CAL_DAY, $ilUser->getTimeZone());
55 }
@classDescription Date and time handling
static _equals(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
Check if two date are equal.
global $DIC
Definition: feed.php:28
$ilUser
Definition: imgupload.php:34

References $DIC, $ilUser, ilDateTime\_equals(), IL_CAL_DAY, and IL_CAL_UNIX.

Referenced by ilMiniCalendarGUI\addMiniMonth(), ilCalendarBlockGUI\addMiniMonth(), and ilCalendarMonthGUI\show().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _numericDayToString()

static ilCalendarUtil::_numericDayToString ( int  $a_day,
bool  $a_long = true 
)
static
Parameters
intday of week (0 for sunday, 1 for monday)
boolshort or long day translation

Definition at line 75 of file class.ilCalendarUtil.php.

75 : string
76 {
77 global $DIC;
78
79 $lng = $DIC['lng'];
80 $lng->loadLanguageModule('dateplaner');
81 static $days = array('Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su');
82
83 return $a_long ? $lng->txt($days[$a_day] . '_long') : $lng->txt($days[$a_day] . '_short');
84 }
$lng

References $DIC, and $lng.

Referenced by ilCalendarWeekGUI\addHeaderDate(), ilMiniCalendarGUI\addMiniMonth(), ilCalendarBlockGUI\addMiniMonth(), ilRecurrenceInputGUI\buildMonthlyByDaySelection(), ilRecurrenceInputGUI\buildWeekDaySelection(), ilRecurrenceInputGUI\buildYearlyByDaySelection(), ilSessionStatisticsGUI\exportCSV(), ilBookingReservationsTableGUI\fillRow(), ilBookingReservationsTableGUI\fillRowCSV(), ilBookingReservationsTableGUI\fillRowExcel(), ilSessionStatisticsGUI\getChart(), ilCalendarHeaderNavigationGUI\getHTML(), ilCalendarDayGUI\show(), and ilCalendarMonthGUI\show().

+ Here is the caller graph for this function:

◆ _numericMonthToString()

static ilCalendarUtil::_numericMonthToString ( int  $a_month,
bool  $a_long = true 
)
static

numeric month to string

Parameters
intmonth (1-12)
boolshort or long month translation

Definition at line 62 of file class.ilCalendarUtil.php.

62 : string
63 {
64 global $DIC;
65
66 $lng = $DIC['lng'];
67 $month = $a_month < 10 ? '0' . $a_month : $a_month;
68 return $a_long ? $lng->txt('month_' . $month . '_long') : $lng->txt('month_' . $month . '_short');
69 }

References $DIC, and $lng.

Referenced by ilRecurrenceInputGUI\buildYearlyByDaySelection(), ilRecurrenceInputGUI\buildYearlyByMonthDaySelection(), ilDatePresentation\formatDate(), ilCalendarDayGUI\show(), and ilCalendarMonthGUI\show().

+ Here is the caller graph for this function:

◆ addDateTimePicker()

static ilCalendarUtil::addDateTimePicker ( string  $a_id,
?int  $a_add_time = null,
?array  $a_custom_config = null,
?string  $a_id2 = null,
?array  $a_custom_config2 = null,
?string  $a_toggle_id = null,
?string  $a_subform_id = null 
)
static

Add date time picker to element.

Parameters
string$a_id
int$a_add_time1=hh:mm, 2=hh:mm:ss
array$a_custom_config
string$a_id2
array$a_custom_config2
string$a_toggle_id
string$a_subform_id

Definition at line 545 of file class.ilCalendarUtil.php.

553 : void {
554 global $DIC;
555
556 $tpl = $DIC->ui()->mainTemplate();
557 foreach (self::getCodeForPicker(
558 $a_id,
559 $a_add_time,
560 $a_custom_config,
561 $a_id2,
562 $a_custom_config2,
563 $a_toggle_id,
564 $a_subform_id
565 ) as $code) {
566 $tpl->addOnLoadCode($code);
567 }
568 }
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
Definition: latex.php:41

References $tpl.

Referenced by ilDateDurationInputGUI\render(), and ilDateTimeInputGUI\render().

+ Here is the caller graph for this function:

◆ calculateFontColor()

static ilCalendarUtil::calculateFontColor ( string  $a_html_color_code)
static

Calculate best font color from html hex color code.

Parameters
stringhex value of color
Returns
string #ffffff or #000000

Definition at line 399 of file class.ilCalendarUtil.php.

399 : string
400 {
401 if (strpos($a_html_color_code, '#') !== 0 or strlen($a_html_color_code) != 7) {
402 return '#000000';
403 }
404
405 // http://en.wikipedia.org/wiki/Luminance_(relative)
406 $lum = round(hexdec(substr($a_html_color_code, 1, 2)) * 0.2126 +
407 hexdec(substr($a_html_color_code, 3, 2)) * 0.7152 +
408 hexdec(substr($a_html_color_code, 5, 2)) * 0.0722);
409 return ($lum <= 128) ? "#FFFFFF" : "#000000";
410 }

Referenced by ilCalendarDayGUI\showAppointment(), ilCalendarWeekGUI\showAppointment(), ilCalendarMonthGUI\showEvents(), ilCalendarDayGUI\showFulldayAppointment(), and ilCalendarWeekGUI\showFulldayAppointment().

+ Here is the caller graph for this function:

◆ convertDateToUtcDBTimestamp()

static ilCalendarUtil::convertDateToUtcDBTimestamp ( \ilDateTime  $date = null)
static

Definition at line 35 of file class.ilCalendarUtil.php.

35 : ?string
36 {
37 if (is_null($date)) {
38 return null;
39 }
40 if ($date instanceof \ilDate) {
41 return $date->get(IL_CAL_DATE);
42 }
43 return $date->get(IL_CAL_DATETIME, '', ilTimeZone::UTC);
44 }
const IL_CAL_DATE
const IL_CAL_DATETIME

References IL_CAL_DATE, IL_CAL_DATETIME, and ilTimeZone\UTC.

Referenced by ilObjGroup\update(), and ilObjCourse\updateSettings().

+ Here is the caller graph for this function:

◆ getCodeForPicker()

static ilCalendarUtil::getCodeForPicker ( string  $a_id,
?int  $a_add_time = null,
?array  $a_custom_config = null,
?string  $a_id2 = null,
?array  $a_custom_config2 = null,
?string  $a_toggle_id = null,
?string  $a_subform_id = null 
)
static

Add date time picker to element.

Parameters
string$a_id
int$a_add_time1=hh:mm, 2=hh:mm:ss
array$a_custom_config
string$a_id2
array$a_custom_config2
string$a_toggle_id
string$a_subform_id
Returns
string

Whether the start of the week in the picker is Sunday or Monday should depend on the user calendar settings (#21666). Unfortunately this is not a direct config of the picker, but is inherent in the locale, so it needs to be shoehorned into there.

0 for Sunday, 1 for Monday

Definition at line 581 of file class.ilCalendarUtil.php.

589 : array {
590 global $DIC;
591
592 $ilUser = $DIC['ilUser'];
594
595 // fix for mantis 22994 => default to english language
596 $language = 'en';
597 if ($ilUser->getLanguage() != 'ar') {
598 $language = $ilUser->getLanguage();
599 }
600 $default = array(
601 'locale' => $language,
602 'stepping' => 5,
603 'useCurrent' => false,
604 'calendarWeeks' => true,
605 'toolbarPlacement' => 'top',
606 //'showTodayButton' => true,
607 'showClear' => true,
608 //'showClose' => true,
609 'keepInvalid' => true,
610 'sideBySide' => true,
611 //'collapse' => false,
612 'format' => self::getUserDateFormat((bool) $a_add_time)
613 );
614
615 $config = (!$a_custom_config)
616 ? $default
617 : array_merge($default, $a_custom_config);
618
619 $code = [];
620
629 $start_of_week = ilCalendarUserSettings::_getInstanceByUserId($ilUser->getId())->getWeekStart();
630 $code[] =
631 'if (moment) {
632 moment.updateLocale("' . $language . '", {week: {dow: ' . $start_of_week . '}});
633 }';
634
635 $code[] = '$("#' . $a_id . '").datetimepicker(' . json_encode($config) . ')';
636
637 // optional 2nd picker aka duration
638 if ($a_id2) {
639 $config2 = (!$a_custom_config2)
640 ? $default
641 : array_merge($default, $a_custom_config2);
642
643 $config2["useCurrent"] = false; //Important! See issue #1075
644
645 $code[] = '$("#' . $a_id2 . '").datetimepicker(' . json_encode($config2) . ')';
646
647 // duration limits, diff and subform handling
648 $code[] = 'il.Form.initDateDurationPicker("' . $a_id . '","' . $a_id2 . '","' . $a_toggle_id . '","' . $a_subform_id . '");';
649 } elseif ($a_subform_id) {
650 // subform handling
651 $code[] = 'il.Form.initDatePicker("' . $a_id . '","' . $a_subform_id . '");';
652 }
653 return $code;
654 }
static _getInstanceByUserId(int $a_user_id)
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85

Referenced by ilDateTimeInputGUI\getOnloadCode().

+ Here is the caller graph for this function:

◆ getHourSelection()

static ilCalendarUtil::getHourSelection ( int  $a_format)
static

Get hour selection depending on user specific hour format.

Definition at line 415 of file class.ilCalendarUtil.php.

415 : array
416 {
417 $options = [];
418 switch ($a_format) {
420 for ($i = 0; $i < 24; $i++) {
421 $options[$i] = sprintf('%02d:00', $i);
422 }
423 break;
424
426 for ($i = 0; $i < 24; $i++) {
427 $options[$i] = date('h a', mktime($i, 0, 0, 1, 1, 2000));
428 }
429 break;
430 }
431 return $options;
432 }

References $i, ilCalendarSettings\TIME_FORMAT_12, and ilCalendarSettings\TIME_FORMAT_24.

Referenced by ilObjCalendarSettingsGUI\initFormSettings(), and ilCalendarUserSettingsGUI\initSettingsForm().

+ Here is the caller graph for this function:

◆ getUserDateFormat()

static ilCalendarUtil::getUserDateFormat ( int  $a_add_time = 0,
bool  $a_for_parsing = false 
)
static

Parse current user setting into date/time format.

Parameters
?int$a_add_time 1=hh:mm, 2=hh:mm:ss
bool$a_for_parsing
Returns
string

Definition at line 479 of file class.ilCalendarUtil.php.

479 : string
480 {
481 global $DIC;
482
483 $ilUser = $DIC['ilUser'];
484 $format = '';
485 switch ($ilUser->getDateFormat()) {
487 $format = "DD.MM.YYYY";
488 break;
489
491 $format = "YYYY-MM-DD";
492 break;
493
495 $format = "MM/DD/YYYY";
496 break;
497 }
498 if ($a_add_time) {
499 $format .= " " . (($ilUser->getTimeFormat() == ilCalendarSettings::TIME_FORMAT_24)
500 ? "HH:mm"
501 : "hh:mma");
502 if ($a_add_time == 2) {
503 $format .= ":ss";
504 }
505 }
506
507 // translate datepicker format to PHP format
508 if ($a_for_parsing) {
509 $format = str_replace("DD", "d", $format);
510 $format = str_replace("MM", "m", $format);
511 $format = str_replace("mm", "i", $format);
512 $format = str_replace("YYYY", "Y", $format);
513 $format = str_replace("HH", "H", $format);
514 $format = str_replace("hh", "h", $format);
515 }
516
517 return $format;
518 }
$format
Definition: metadata.php:235

References $DIC, $format, $ilUser, ilCalendarSettings\DATE_FORMAT_DMY, ilCalendarSettings\DATE_FORMAT_MDY, ilCalendarSettings\DATE_FORMAT_YMD, and ilCalendarSettings\TIME_FORMAT_24.

Referenced by ilStudyProgrammeUserTable\getUserDateFormat(), ilDateDurationInputGUI\render(), ilDateTimeInputGUI\render(), ilEmployeeTalkAppointmentGUI\sendNotification(), ilObjEmployeeTalkGUI\sendNotification(), ilObjEmployeeTalkSeriesGUI\sendNotification(), and ilObjEmployeeTalkGUI\sendUpdateNotification().

+ Here is the caller graph for this function:

◆ getZoneInfoFile()

static ilCalendarUtil::getZoneInfoFile (   $a_tz)
static

Definition at line 276 of file class.ilCalendarUtil.php.

276 : string
277 {
278 if (!array_key_exists($a_tz, self::_getShortTimeZoneList())) {
279 return '';
280 }
281 $timezone_filename = str_replace('/', '_', $a_tz);
282 $timezone_filename .= '.ics';
283 return './Services/Calendar/zoneinfo/' . $timezone_filename;
284 }

Referenced by ilCalendarExport\createTimezones().

+ Here is the caller graph for this function:

◆ initDateTimePicker()

static ilCalendarUtil::initDateTimePicker ( )
static

Definition at line 520 of file class.ilCalendarUtil.php.

520 : void
521 {
522 global $DIC;
523 $tpl = $DIC->ui()->mainTemplate();
524
525 if (!self::$init_datetimepicker) {
526 $tpl->addJavaScript("./node_modules/moment/min/moment-with-locales.min.js");
527 // unminified version does not work with jQuery 3.0
528 // https://github.com/Eonasdan/bootstrap-datetimepicker/issues/1684
529 $tpl->addJavaScript("./node_modules/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js");
530 $tpl->addJavaScript("Services/Form/js/Form.js"); // see ilPropertyFormGUI
531 self::$init_datetimepicker = true;
532 }
533 }

References $DIC, and $tpl.

Referenced by ilPageObjectGUI\initEditing(), and ilExerciseManagementGUI\initIndividualDeadlineModal().

+ Here is the caller graph for this function:

◆ initDefaultCalendarByType()

static ilCalendarUtil::initDefaultCalendarByType ( int  $a_type_id,
int  $a_usr_id,
string  $a_title,
bool  $a_create = false 
)
static

Init the default calendar for given type and user.

Definition at line 437 of file class.ilCalendarUtil.php.

443 global $DIC;
444
445 $ilDB = $DIC['ilDB'];
446 if (isset(self::$default_calendar[$a_usr_id]) and isset(self::$default_calendar[$a_usr_id][$a_type_id])) {
447 return self::$default_calendar[$a_usr_id][$a_type_id];
448 }
449
450 $query = "SELECT cat_id FROM cal_categories " .
451 "WHERE obj_id = " . $ilDB->quote($a_usr_id, 'integer') . " " .
452 "AND type = " . $ilDB->quote($a_type_id, 'integer');
453 $res = $ilDB->query($query);
454 while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
455 return self::$default_calendar[$a_usr_id][$a_type_id] = new ilCalendarCategory($row->cat_id);
456 }
457
458 if (!$a_create) {
459 return null;
460 }
461
462 // Create default calendar
463 self::$default_calendar[$a_usr_id][$a_type_id] = new ilCalendarCategory();
464 self::$default_calendar[$a_usr_id][$a_type_id]->setType($a_type_id);
465 self::$default_calendar[$a_usr_id][$a_type_id]->setColor(ilCalendarCategory::DEFAULT_COLOR);
466 self::$default_calendar[$a_usr_id][$a_type_id]->setTitle($a_title);
467 self::$default_calendar[$a_usr_id][$a_type_id]->setObjId($a_usr_id);
468 self::$default_calendar[$a_usr_id][$a_type_id]->add();
469
470 return self::$default_calendar[$a_usr_id][$a_type_id];
471 }
Stores calendar categories.
$res
Definition: ltiservices.php:69
$query

Referenced by ilConsultationHourUtils\bookAppointment(), and ilConsultationHoursGUI\createAppointments().

+ Here is the caller graph for this function:

◆ initJSCalendar()

static ilCalendarUtil::initJSCalendar ( )
static

Definition at line 191 of file class.ilCalendarUtil.php.

191 : void
192 {
193 global $DIC;
194
195 $tpl = $DIC['tpl'];
196 $lng = $DIC['lng'];
197
198 if (self::$init_done == "done") {
199 return;
200 }
201
202 $lng->loadLanguageModule("jscalendar");
203 $tpl->addBlockFile(
204 "CALENDAR_LANG_JAVASCRIPT",
205 "calendar_javascript",
206 "tpl.calendar.html",
207 "Services/Calendar"
208 );
209 $tpl->setCurrentBlock("calendar_javascript");
210 $tpl->setVariable("FULL_SUNDAY", $lng->txt("l_su"));
211 $tpl->setVariable("FULL_MONDAY", $lng->txt("l_mo"));
212 $tpl->setVariable("FULL_TUESDAY", $lng->txt("l_tu"));
213 $tpl->setVariable("FULL_WEDNESDAY", $lng->txt("l_we"));
214 $tpl->setVariable("FULL_THURSDAY", $lng->txt("l_th"));
215 $tpl->setVariable("FULL_FRIDAY", $lng->txt("l_fr"));
216 $tpl->setVariable("FULL_SATURDAY", $lng->txt("l_sa"));
217 $tpl->setVariable("SHORT_SUNDAY", $lng->txt("s_su"));
218 $tpl->setVariable("SHORT_MONDAY", $lng->txt("s_mo"));
219 $tpl->setVariable("SHORT_TUESDAY", $lng->txt("s_tu"));
220 $tpl->setVariable("SHORT_WEDNESDAY", $lng->txt("s_we"));
221 $tpl->setVariable("SHORT_THURSDAY", $lng->txt("s_th"));
222 $tpl->setVariable("SHORT_FRIDAY", $lng->txt("s_fr"));
223 $tpl->setVariable("SHORT_SATURDAY", $lng->txt("s_sa"));
224 $tpl->setVariable("FULL_JANUARY", $lng->txt("l_01"));
225 $tpl->setVariable("FULL_FEBRUARY", $lng->txt("l_02"));
226 $tpl->setVariable("FULL_MARCH", $lng->txt("l_03"));
227 $tpl->setVariable("FULL_APRIL", $lng->txt("l_04"));
228 $tpl->setVariable("FULL_MAY", $lng->txt("l_05"));
229 $tpl->setVariable("FULL_JUNE", $lng->txt("l_06"));
230 $tpl->setVariable("FULL_JULY", $lng->txt("l_07"));
231 $tpl->setVariable("FULL_AUGUST", $lng->txt("l_08"));
232 $tpl->setVariable("FULL_SEPTEMBER", $lng->txt("l_09"));
233 $tpl->setVariable("FULL_OCTOBER", $lng->txt("l_10"));
234 $tpl->setVariable("FULL_NOVEMBER", $lng->txt("l_11"));
235 $tpl->setVariable("FULL_DECEMBER", $lng->txt("l_12"));
236 $tpl->setVariable("SHORT_JANUARY", $lng->txt("s_01"));
237 $tpl->setVariable("SHORT_FEBRUARY", $lng->txt("s_02"));
238 $tpl->setVariable("SHORT_MARCH", $lng->txt("s_03"));
239 $tpl->setVariable("SHORT_APRIL", $lng->txt("s_04"));
240 $tpl->setVariable("SHORT_MAY", $lng->txt("s_05"));
241 $tpl->setVariable("SHORT_JUNE", $lng->txt("s_06"));
242 $tpl->setVariable("SHORT_JULY", $lng->txt("s_07"));
243 $tpl->setVariable("SHORT_AUGUST", $lng->txt("s_08"));
244 $tpl->setVariable("SHORT_SEPTEMBER", $lng->txt("s_09"));
245 $tpl->setVariable("SHORT_OCTOBER", $lng->txt("s_10"));
246 $tpl->setVariable("SHORT_NOVEMBER", $lng->txt("s_11"));
247 $tpl->setVariable("SHORT_DECEMBER", $lng->txt("s_12"));
248 $tpl->setVariable("ABOUT_CALENDAR", $lng->txt("about_calendar"));
249 $tpl->setVariable("ABOUT_CALENDAR_LONG", $lng->txt("about_calendar_long"));
250 $tpl->setVariable("ABOUT_TIME_LONG", $lng->txt("about_time"));
251 $tpl->setVariable("PREV_YEAR", $lng->txt("prev_year"));
252 $tpl->setVariable("PREV_MONTH", $lng->txt("prev_month"));
253 $tpl->setVariable("GO_TODAY", $lng->txt("go_today"));
254 $tpl->setVariable("NEXT_MONTH", $lng->txt("next_month"));
255 $tpl->setVariable("NEXT_YEAR", $lng->txt("next_year"));
256 $tpl->setVariable("SEL_DATE", $lng->txt("select_date"));
257 $tpl->setVariable("DRAG_TO_MOVE", $lng->txt("drag_to_move"));
258 $tpl->setVariable("PART_TODAY", $lng->txt("part_today"));
259 $tpl->setVariable("DAY_FIRST", $lng->txt("day_first"));
260 $tpl->setVariable("CLOSE", $lng->txt("close"));
261 $tpl->setVariable("TODAY", $lng->txt("today"));
262 $tpl->setVariable("TIME_PART", $lng->txt("time_part"));
263 $tpl->setVariable("DEF_DATE_FORMAT", $lng->txt("def_date_format"));
264 $tpl->setVariable("TT_DATE_FORMAT", $lng->txt("tt_date_format"));
265 $tpl->setVariable("WK", $lng->txt("wk"));
266 $tpl->setVariable("TIME", $lng->txt("time"));
267 $tpl->parseCurrentBlock();
268 $tpl->setCurrentBlock("CalendarJS");
269 $tpl->setVariable("LOCATION_JAVASCRIPT_CALENDAR", "./Services/Calendar/js/calendar.js");
270 $tpl->setVariable("LOCATION_JAVASCRIPT_CALENDAR_SETUP", "./Services/Calendar/js/calendar-setup.js");
271 $tpl->parseCurrentBlock();
272
273 self::$init_done = "done";
274 }

References $DIC, $lng, and $tpl.

◆ parseDateString()

static ilCalendarUtil::parseDateString ( string  $a_date,
bool  $a_add_time = false,
bool  $a_use_generic_format = false 
)
static

Parse (incoming) string to date/time object.

Parameters
string$a_date
bool$a_add_time1=hh:mm, 2=hh:mm:ss
bool$a_use_generic_format
Returns
array date, warnings, errors
Exceptions
ilDateTimeException

Definition at line 664 of file class.ilCalendarUtil.php.

664 : array
665 {
666 global $DIC;
667
668 $ilUser = $DIC['ilUser'];
669 if (!$a_use_generic_format) {
670 $out_format = self::getUserDateFormat($a_add_time, true);
671 } else {
672 $out_format = $a_add_time
673 ? "Y-m-d H:i:s"
674 : "Y-m-d";
675 }
676 $tmp = date_parse_from_format($out_format, $a_date);
677 $date = null;
678
679 if (!$tmp["error_count"] &&
680 !$tmp["warning_count"]) {
681 $format = $tmp["year"] . "-" .
682 str_pad($tmp["month"], 2, "0", STR_PAD_LEFT) . "-" .
683 str_pad($tmp["day"], 2, "0", STR_PAD_LEFT);
684
685 if ($a_add_time) {
686 $format .= " " .
687 str_pad($tmp["hour"], 2, "0", STR_PAD_LEFT) . ":" .
688 str_pad($tmp["minute"], 2, "0", STR_PAD_LEFT) . ":" .
689 str_pad($tmp["second"], 2, "0", STR_PAD_LEFT);
690
691 $date = new ilDateTime($format, IL_CAL_DATETIME, $ilUser->getTimeZone());
692 } else {
693 $date = new ilDate($format, IL_CAL_DATE);
694 }
695 }
696
697 return array(
698 "date" => $date
699 ,
700 "warnings" => sizeof($tmp["warnings"])
701 ? $tmp["warnings"]
702 : null
703 ,
704 "errors" => sizeof($tmp["errors"])
705 ? $tmp["errors"]
706 : null
707 );
708 }
static getUserDateFormat(int $a_add_time=0, bool $a_for_parsing=false)
Parse current user setting into date/time format.

References $DIC, $format, $ilUser, IL_CAL_DATE, and IL_CAL_DATETIME.

◆ parseIncomingDate()

static ilCalendarUtil::parseIncomingDate (   $a_value,
bool  $a_add_time = false 
)
static

Try to parse incoming value to date object.

Parameters
string | ilDateTime$a_value
int$a_add_time
Returns
ilDateTime|ilDate

Definition at line 716 of file class.ilCalendarUtil.php.

716 : ?ilDateTime
717 {
718 // already datetime object?
719 if ($a_value instanceof ilDateTime) {
720 return $a_value;
721 } elseif (trim($a_value)) {
722 // try user-specific format
723 $parsed = self::parseDateString($a_value, $a_add_time);
724 if (is_object($parsed["date"])) {
725 return $parsed["date"];
726 } else {
727 // try generic format
728 $parsed = self::parseDateString($a_value, $a_add_time, true);
729 if (is_object($parsed["date"])) {
730 return $parsed["date"];
731 }
732 }
733 }
734 return null;
735 }
static parseDateString(string $a_date, bool $a_add_time=false, bool $a_use_generic_format=false)
Parse (incoming) string to date/time object.

Referenced by ilDclGenericMultiInputGUI\checkInput(), ilDateDurationInputGUI\checkInput(), ilDateTimeInputGUI\checkInput(), ilBookingProcessGUI\confirmedBookingNumbers(), ilAdvancedMDFieldDefinitionDate\getLuceneSearchString(), ilAdvancedMDFieldDefinitionDateTime\getLuceneSearchString(), ilSessionStatisticsGUI\importDate(), ilADTDateSearchBridgeRange\importFromPost(), ilADTDateSearchBridgeSingle\importFromPost(), ilADTDateTimeSearchBridgeRange\importFromPost(), ilADTDateTimeSearchBridgeSingle\importFromPost(), ilDclGenericMultiInputGUI\setValue(), ilDateDurationInputGUI\setValueByArray(), ilDateTimeInputGUI\setValueByArray(), ilCourseContentGUI\updateManagedTimings(), and ilCourseContentGUI\updatePersonalTimings().

+ Here is the caller graph for this function:

Field Documentation

◆ $default_calendar

array ilCalendarUtil::$default_calendar = array()
staticprivate

Definition at line 31 of file class.ilCalendarUtil.php.

◆ $init_datetimepicker

bool ilCalendarUtil::$init_datetimepicker = false
staticprotected

Definition at line 33 of file class.ilCalendarUtil.php.

◆ $init_done

string ilCalendarUtil::$init_done
static

Definition at line 32 of file class.ilCalendarUtil.php.

◆ $today

ilDateTime ilCalendarUtil::$today = null
staticprivate

Definition at line 30 of file class.ilCalendarUtil.php.


The documentation for this class was generated from the following file: