File dav/method/LOCK.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_LOCK extends DAV 4 { 5 /** 6 * Die Methode LOCK sollte garnicht aufgerufen werden, da wir nur 7 * Dav-Level 1 implementieren und dies dem Client auch mitteilen.<br> 8 * <br> 9 * Ausgabe von HTTP-Status 412 (Precondition failed) 10 */ 11 function execute() 12 { 13 $this->httpStatus('412 Precondition failed'); 14 $this->davOPTIONS(); 15 } 16 }
Download dav/method/LOCK.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.