...Человеческий поиск в разработке...
- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/classes/general/user_counter.php
- Класс: \CCrmUserCounter
- Вызов: CCrmUserCounter::GetValue
public function GetValue($forceSync = false) { if($this->curValue !== null) { return $this->curValue; } if($this->code === '') { return 0; } $this->curValue = CUserCounter::GetValue($this->userID, $this->code, SITE_ID); if(!$this->CheckLastCalculatedTime() || $forceSync) { $this->Synchronize(); } return $this->curValue; }