1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
eventofflinequery.php
См. документацию.
1<?php
2namespace Bitrix\Rest;
3
4
5use Bitrix\Main\Entity\Query;
6
8{
9 public function mark(string $processId): void
10 {
11 $ids = $this->setSelect(['ID'])->fetchAll();
12
13 if (!empty($ids))
14 {
15 EventOfflineTable::updateMulti($ids, ['PROCESS_ID' => $processId]);
16 }
17 }
18}
setSelect(array $select)
Определения query.php:338
mark(string $processId)
Определения eventofflinequery.php:9
Определения chain.php:3