• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/manager.php
  • Класс: BitrixLandingManager
  • Вызов: Manager::getDocRoot
static function getDocRoot()
{
	static $docRoot = null;

	if ($docRoot === null)
	{
		$context = Application::getInstance()->getContext();
		$server = $context->getServer();
		$docRoot = $server->getDocumentRoot();
	}

	return $docRoot;
}