• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/internals/entity.php
  • Класс: BitrixSaleInternalsEntity
  • Вызов: Entity::initField
public function initField($name, $value)
{
	$allFields = static::getAllFields();
	if (!isset($allFields[$name]))
	{
		throw new MainArgumentOutOfRangeException($name);
	}

	$this->fields->init($name, $value);
}