• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/lib/network.php
  • Класс: BitrixSocialservicesNetwork
  • Вызов: Network::getAuthUrl
static function getAuthUrl($mode = "page", $addScope = null)
{
	if(Option::get("socialservices", "bitrix24net_id", "") != "")
	{
		$o = new CSocServBitrix24Net();

		if($addScope !== null)
		{
			$o->addScope($addScope);
		}

		return $o->getUrl($mode);
	}

	return false;
}