CCrmProductRestProxy::getFieldsInfo

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmProductRestProxy
  4. getFieldsInfo
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
  • Класс: \CCrmProductRestProxy
  • Вызов: CCrmProductRestProxy::getFieldsInfo
protected function getFieldsInfo()
{
	if(!CModule::IncludeModule('iblock'))
	{
		throw new RestException('Could not load iblock module.');
	}

	if(!$this->FIELDS_INFO)
	{
		$this->FIELDS_INFO = CCrmProduct::GetFieldsInfo();
		foreach ($this->FIELDS_INFO  as $code=>&$field)
		{
			$field['CAPTION'] = CCrmProduct::GetFieldCaption($code);
		}
		$this->preparePropertyFieldsInfo($this->FIELDS_INFO);
	}
	return $this->FIELDS_INFO;
}

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