ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Service.php
Go to the documentation of this file.
1<?php
2
3namespace Sabre\DAV\Xml;
4
13
20 public $elementMap = [
21 '{DAV:}multistatus' => 'Sabre\\DAV\\Xml\\Response\\MultiStatus',
22 '{DAV:}response' => 'Sabre\\DAV\\Xml\\Element\\Response',
23
24 // Requests
25 '{DAV:}propfind' => 'Sabre\\DAV\\Xml\\Request\\PropFind',
26 '{DAV:}propertyupdate' => 'Sabre\\DAV\\Xml\\Request\\PropPatch',
27 '{DAV:}mkcol' => 'Sabre\\DAV\\Xml\\Request\\MkCol',
28
29 // Properties
30 '{DAV:}resourcetype' => 'Sabre\\DAV\\Xml\\Property\\ResourceType',
31
32 ];
33
42 public $namespaceMap = [
43 'DAV:' => 'd',
44 'http://sabredav.org/ns' => 's',
45 ];
46
47}
An exception for terminatinating execution or to throw for unit testing.
XML service for WebDAV.
Definition: Service.php:12
$elementMap
This is a list of XML elements that we automatically map to PHP classes.
Definition: Service.php:20
XML parsing and writing service.
Definition: Service.php:16