openrat-webdav

git clone http://git.code.weiherhei.de/openrat-webdav.git
Log | Files | Refs | README

PROPPATCH.class.php (247B)


      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 }