use Bitrix\Main\ORM\Query\Query; use Bitrix\Main\UserTable; $profile = (new Query(UserTable::getEntity())) ->setSelect(['UF_REFERRER', 'ID']) ->where('ID', $profileId) ->exec() ->fetchObject(); if(!$profile) return ''; return (string)$profile->getUfReferrer();
Обсуждают сегодня