• Модуль: bitrixcloud
  • Путь к файлу: ~/bitrix/modules/bitrixcloud/classes/general/monitoring_result.php
  • Класс: CBitrixCloudMonitoringDomainResult
  • Вызов: CBitrixCloudMonitoringDomainResult::fromXMLNode
static function fromXMLNode(CDataXMLNode $node)
{
	$name = $node->getAttribute("name");
	$tests = array();
	foreach ($node->children() as $nodeTest)
	{
		$tests[] = CBitrixCloudMonitoringTest::fromXMLNode($nodeTest);
	}
	return new CBitrixCloudMonitoringDomainResult($name, $tests);
}