• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/update/initlocaldatatogoogle.php
  • Класс: BitrixCalendarUpdateInitLocalDataToGoogle
  • Вызов: InitLocalDataToGoogle::stopChannels
private function stopChannels($connection)
{
	GoogleApiPush::stopChannel(GoogleApiPush::getPush(GoogleApiPush::TYPE_CONNECTION, (int)$connection['ID']));
	if (isset($connection['SECTION_LIST']) && is_string($connection['SECTION_LIST']))
	{
		foreach (explode(',', $connection['SECTION_LIST']) as $sectionId)
		{
			GoogleApiPush::stopChannel(GoogleApiPush::getPush(GoogleApiPush::TYPE_SECTION, $sectionId));
		}
	}

	return $connection;
}