• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/queue/cache.php
  • Класс: BitrixImOpenLinesQueueCache
  • Вызов: Cache::startCacheIsOperator
public function startCacheIsOperator(): bool
{
	$result = false;
	if ($this->validIsOperator())
	{
		$result = true;

		$this->cache->startDataCache();
		$this->taggedCache->startTagCache($this->getCacheDirIsOperator());
		$this->taggedCache->registerTag(self::getUserIsOperatorCacheTag($this->userId));
	}

	return $result;
}