• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/bizproctype/usertypepropertyemployee.php
  • Класс: BitrixIblockBizprocTypeUserTypePropertyEmployee
  • Вызов: UserTypePropertyEmployee::fixUserPrefix
static function fixUserPrefix($value)
	{
		if (!static::isCompatibleMode())
		{
			if (is_array($value) && isset($value['VALUE']))
				$value['VALUE'] = CBPHelper::stripUserPrefix($value['VALUE']);
			else
				$value = CBPHelper::stripUserPrefix($value);
		}

		return $value;
	}