• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/update/googletonewsync.php
  • Класс: BitrixCalendarUpdateGoogleToNewSync
  • Вызов: GoogleToNewSync::loadCurrentStatus
private function loadCurrentStatus(): array
{
	$status = Option::get(self::$moduleId, self::OPTION_STATUS, 'default');
	$status = $status !== 'default' ? @unserialize($status, ['allowed_classes' => false]) : [];
	$status = is_array($status) ? $status : [];

	if (empty($status))
	{
		$status = [
			'steps' => 0,
			'count' => $this->getTotalCountEvents(),
			'lastEventId' => 0,
		];
	}

	return $status;
}