• Модуль: pull
  • Путь к файлу: ~/bitrix/modules/pull/classes/general/pull_channel.php
  • Класс: CPullChannel
  • Вызов: CPullChannel::SignPublicChannel
static function SignPublicChannel($channelId)
{
	$signatureKey = BitrixPullConfig::getSignatureKey();
	if ($signatureKey === "" || !is_string($channelId))
	{
		return "";
	}

	return $channelId.".".static::GetPublicSignature($channelId);
}