• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/exchangeclientrequest.php
  • Класс: CDavExchangeClientRequest
  • Вызов: CDavExchangeClientRequest::CreateDeleteItemBody
public function CreateDeleteItemBody($itemId = 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($itemId))
	{
		$itemId = [$itemId];
	}

	foreach ($itemId as $value)
	{
		$this->body .= "    rn";
	}

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