Blame view
sources/3rdparty/sabre/dav/tests/Sabre/DAV/PartialUpdate/FileMock.php
1.06 KB
|
6d9380f96
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
<?php
namespace Sabre\DAV\PartialUpdate;
use Sabre\DAV;
class FileMock implements IFile {
protected $data = '';
function put($str) {
if (is_resource($str)) {
$str = stream_get_contents($str);
}
$this->data = $str;
}
function putRange($str,$start) {
if (is_resource($str)) {
$str = stream_get_contents($str);
}
$this->data = substr($this->data, 0, $start) . $str . substr($this->data, $start + strlen($str));
}
function get() {
return $this->data;
}
function getContentType() {
return 'text/plain';
}
function getSize() {
return strlen($this->data);
}
function getETag() {
return '"' . $this->data . '"';
}
function delete() {
throw new DAV\Exception\MethodNotAllowed();
}
function setName($name) {
throw new DAV\Exception\MethodNotAllowed();
}
function getName() {
return 'partial';
}
function getLastModified() {
return null;
}
}
|