• Модуль: imconnector
  • Путь к файлу: ~/bitrix/modules/imconnector/lib/Tools/Connectors/Notifications.php
  • Класс: BitrixImConnectorToolsConnectorsNotifications
  • Вызов: Notifications::addUserConsentAgreementTerms
public function addUserConsentAgreementTerms(): bool
{
	$result = false;

	$agreementId = self::getIdAgreementTerms();
	if(!empty($agreementId))
	{
		$result = Consent::addByContext(
			$agreementId,
			self::DATA_PROVIDER_CODE
		);
	}

	return (bool)$result;
}