CCrmUserCounter::GetValue

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmUserCounter
  4. GetValue
  • Модуль: 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;
}

Добавить комментарий