• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/binding/entity.php
  • Класс: BitrixLandingBindingEntity
  • Вызов: Entity::bindSite
public function bindSite(int $siteId): bool
{
	if (self::isForbiddenBindingAction())
	{
		return false;
	}

	$siteId = intval($siteId);

	$success = $this->bind($siteId, $this::ENTITY_TYPE_SITE);

	if ($success && method_exists($this, 'addSiteRights'))
	{
		$this->addSiteRights($siteId);
	}

	return $success;
}