• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/fields/field.php
  • Класс: BitrixSalesCenterFieldsField
  • Вызов: Field::__construct
public function __construct(string $name, array $params = [])
{
	$this->name = $name;
	if (!empty($params['title']) && is_string($params['title']))
	{
		$this->title = $params['title'];
	}

	if (isset($params['entity']) && $params['entity'] instanceof Entity)
	{
		$this->setEntity($params['entity']);
	}
}