• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/ws_contact.php
  • Класс: \CCrmContactWS
  • Вызов: CCrmContactWS::GetSourceList
static function GetSourceList()
{
	$ar = CCrmStatus::GetStatusListEx('SOURCE');
	$CXMLCreatorR = new CXMLCreator('CHOISES');

	foreach ($ar as $key => $value)
	{
		$CXMLCreator = new CXMLCreator('CHOISE', true);
		$CXMLCreator->setAttribute('id', $key);
		$CXMLCreator->setData($value);
		$CXMLCreatorR->addChild($CXMLCreator);
	}

	return $CXMLCreatorR;
}