• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/googleapipush.php
  • Класс: BitrixCalendarSyncGoogleApiPush
  • Вызов: GoogleApiPush::isWrongChannel
static function isWrongChannel(string $error = null): bool
{
	return !empty($error)
		&& preg_match(
			"/^[404] Channel '[a-z0-9 _]*' not found for project '[a-z0-9 _]*'/i",
			$error
		);
}