CAllCrmQuote::getCompatibilityAdapter

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CAllCrmQuote
  4. getCompatibilityAdapter
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_quote.php
  • Класс: \CAllCrmQuote
  • Вызов: CAllCrmQuote::getCompatibilityAdapter
private function getCompatibilityAdapter(): Crm\Entity\Compatibility\Adapter
{
	if (!$this->compatibiltyAdapter)
	{
		$this->compatibiltyAdapter = static::createCompatibilityAdapter();

		if ($this->compatibiltyAdapter instanceof Crm\Entity\Compatibility\Adapter\Operation)
		{
			$this->compatibiltyAdapter
				///bind newly created adapter to this instance
				->setCheckPermissions((bool)$this->bCheckPermission)
				->setErrorMessageContainer($this->LAST_ERROR)
				->setErrorCollectionContainer($this->lastErrors)
			;
		}
	}

	return $this->compatibiltyAdapter;
}

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