• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/exchange/entitycollisiontype.php
  • Класс: BitrixSaleExchangeEntityCollisionType
  • Вызов: EntityCollisionType::getDescriptions
static function getDescriptions($types)
    {
        $result = array();
        if(is_array($types))
        {
            foreach($types as $typeId)
            {
                $typeId = intval($typeId);
                $descr = self::getDescription($typeId);
                if($descr !== '')
                {
                    $result[$typeId] = $descr;
                }
            }
        }
        return $result;
    }