• Модуль: security
  • Путь к файлу: ~/bitrix/modules/security/lib/hostrestriction.php
  • Класс: BitrixSecurityHostRestriction
  • Вызов: HostRestriction::process
public function process($host = null)
{
	if (is_null($host))
		$host = $this->getTargetHost();

	if ($this->isValidHost($host))
		return $this;

	if ($this->isLogNeeded)
		$this->log($host);

	$this->doActions();

	return $this;
}