File dav/method/PROPPATCH.class.php

Last commit: Mon Nov 4 23:56:38 2019 +0100	Jan Dankert	Refactoring: Renaming WebDAV to DAV base class.
1 <?php 2 3 class DAV_PROPPATCH extends DAV 4 { 5 6 /** 7 * Webdav-Methode PROPPATCH ist nicht implementiert. 8 */ 9 public function execute() 10 { 11 // TODO: Multistatus erzeugen. 12 // Evtl. ist '409 Conflict' besser? 13 $this->httpMethodNotAllowed(); 14 } 15 16 }
Download dav/method/PROPPATCH.class.php
History Mon, 4 Nov 2019 23:56:38 +0100 Jan Dankert Refactoring: Renaming WebDAV to DAV base class. Mon, 4 Nov 2019 23:54:13 +0100 Jan Dankert Refactoring: Splitting DAV methods into single files.