Webdav Schnittstelle für DMS - Erstversion

This commit is contained in:
Andreas Österreicher
2012-03-12 14:36:53 +00:00
parent ded8485d69
commit 1ac791563c
319 changed files with 41687 additions and 6 deletions
@@ -0,0 +1,29 @@
<?php
class Sabre_HTTP_ResponseMock extends Sabre_HTTP_Response {
public $headers = array();
public $status = '';
public $body = '';
function setHeader($name,$value,$overwrite = true) {
$this->headers[$name] = $value;
}
function sendStatus($code) {
$this->status = $this->getStatusMessage($code);
}
function sendBody($body) {
$this->body = $body;
}
}
?>