openrat-webdav

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

POST.class.php (287B)


      1 <?php
      2 
      3 class DAV_POST extends DAV
      4 {
      5 
      6 	/**
      7 	 * Die Methode POST ist bei WebDav nicht sinnvoll.<br>
      8 	 * <br>
      9 	 * Ausgabe von HTTP-Status 405 (Method Not Allowed)
     10 	 */	
     11 	public function execute()
     12 	{
     13 		// Die Methode POST ist bei Webdav nicht sinnvoll.
     14 		$this->httpMethodNotAllowed();
     15 	}
     16 }