• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/main/uiselector/crmdynamics.php
  • Класс: Bitrix\Crm\Integration\Main\UISelector\CrmDynamics
  • Вызов: CrmDynamics::getPrefix
static function getPrefix($options = []): string
{
	$prefix = (
		is_array($options)
		&& isset($options['prefixType'])
		&& mb_strtolower($options['prefixType']) === 'short'
			? CCrmOwnerTypeAbbr::ResolveByTypeID($options['typeId'])
			: self::PREFIX_FULL . $options['typeId']
	);

	return $prefix . '_';
}