• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Badge/Badge.php
  • Класс: Bitrix\Crm\Badge\Badge
  • Вызов: Badge::__construct
public function __construct(string $value)
{
	if (!in_array($value, $this->getValuesFromMap(), true))
	{
		throw new ArgumentException('Unknown badge value: ' . $value . ' for type: ' . $this->getType());
	}

	$this->value = $value;
}