• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/exchangeclientrequest.php
  • Класс: CDavExchangeClientRequest
  • Вызов: CDavExchangeClientRequest::CreateDeleteFolderBody
public function CreateDeleteFolderBody($folderId = null)
{
	$this->body  = "<"."?xml version="1.0" encoding="utf-8"?".">rn";
	$this->body .= "rn";
	$this->body .= " rn";
	$this->body .= "  rn";
	$this->body .= "   rn";

	if (!is_array($folderId))
		$folderId = array($folderId);

	foreach ($folderId as $value)
	{
		if (!in_array($value, self::$arDistinguishedFolderIdNameType))
			$this->body .= "     rn";
	}

	$this->body .= "   rn";
	$this->body .= "  rn";
	$this->body .= " rn";
	$this->body .= "";
}