CBPDocumentService::getFieldTypeObject

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPDocumentService
  4. getFieldTypeObject
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/documentservice.php
  • Класс: CBPDocumentService
  • Вызов: CBPDocumentService::getFieldTypeObject
public function getFieldTypeObject(array $parameterDocumentType, array $property)
{
	$type = $property['Type'] ?? null;
	$typeClass = $this->getTypeClass($parameterDocumentType, $type);
	if ($typeClass && class_exists($typeClass))
	{
		return new FieldType($property, $parameterDocumentType, $typeClass);
	}
	return null;
}

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