- Модуль: dav
- Путь к файлу: ~/bitrix/modules/dav/classes/general/xmldocument.php
- Класс: specifierCDavXmlDocument
- Вызов: CDavXmlDocument::CreateNewNode
public function CreateNewNode($tagname, $content = false, $attributes = false, $xmlns = null)
{
if ($xmlns == null && preg_match('/^(.*):([^:]+)$/', $tagname, $matches))
{
$xmlns = $matches[1];
$tagname = $matches[2];
}
else
{
$tagname = $tagname;
}
return new CDavXmlNode($tagname, $content, $attributes, $xmlns);
}