• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/sitebutton/channelmanager.php
  • Класс: Bitrix\Crm\SiteButton\ChannelManager
  • Вызов: ChannelManager::getChannelArray
static function getChannelArray($type)
{
	$channel = self::getByType($type);
	if (!$channel)
	{
		return null;
	}

	return array(
		'TYPE' => $channel::getType(),
		'NAME' => $channel::getName(),
		'PATH_LIST' => $channel::getPathList(),
		'PATH_ADD' => $channel::getPathAdd(),
		'PATH_EDIT' => $channel::getPathEdit(),
		'RESOURCES' => $channel::getResources(),
		'LIST' => $channel::getList()
	);
}