• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar.php
  • Класс: CCalendar
  • Вызов: CCalendar::getTasksForUpdateUFRights
static function getTasksForUpdateUFRights(): array
{
	if (!Loader::includeModule('webdav'))
	{
		return [];
	}

	if (self::$tasksForUpdateUFRights === null)
	{
		self::$tasksForUpdateUFRights = CWebDavIblock::GetTasks() ?? [];
	}

	return self::$tasksForUpdateUFRights;
}