Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/rest/lib/ |
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/rest/lib/eventofflinequery.php |
<?php namespace Bitrix\Rest; use Bitrix\Main\Entity\Query; class EventOfflineQuery extends Query { public function mark(string $processId): void { $ids = $this->setSelect(['ID'])->fetchAll(); if (!empty($ids)) { EventOfflineTable::updateMulti($ids, ['PROCESS_ID' => $processId]); } } }