• Модуль: webservice
  • Путь к файлу: ~/bitrix/modules/webservice/classes/general/xmlcreator.php
  • Класс: CXMLCreator
  • Вызов: CXMLCreator::_getAttributs
function _getAttributs()
{
	$attributs = "";
	if (is_array($this->attributs)){
		foreach($this->attributs as $key=>$val)
		{
			$attributs .= " " . static::xmlspecialchars($key). "="" . static::xmlspecialchars($val) . """;
		}
	}
	return $attributs;
}