• Модуль: webdav
  • Путь к файлу: ~/bitrix/modules/webdav/classes/blankdocument.php
  • Класс: CWebDavBlankDocument
  • Вызов: CWebDavBlankDocument::__construct
public function __construct($type)
{
	$type = mb_strtolower($type);
	$type = trim($type, '.');

	if(!$this->issetType($type))
	{
		throw new Exception('Bad type');
	}

	$this->type = $this->getType($type);

	return;
}