• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/office365.php
  • Класс: COffice365OAuthInterfaceOld
  • Вызов: COffice365OAuthInterfaceOld::__construct
public function __construct($tenant = false, $appID = false, $appSecret = false, $code=false)
{
	if($tenant === false)
	{
		$tenant = trim(CSocServOffice365OAuth::GetOption("office365_tenant"));
	}

	$this->setTenant($tenant);

	return parent::__construct($appID, $appSecret, $code);
}