ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
SupportedCollationSet.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
Sabre\CardDAV\Xml\Property
;
4
5
use
Sabre\Xml\Writer
;
6
use
Sabre\Xml\XmlSerializable
;
7
18
class
SupportedCollationSet
implements
XmlSerializable
{
19
39
function
xmlSerialize
(
Writer
$writer) {
40
41
foreach
([
'i;ascii-casemap'
,
'i;octet'
,
'i;unicode-casemap'
] as $coll) {
42
$writer->
writeElement
(
'{urn:ietf:params:xml:ns:carddav}supported-collation'
, $coll);
43
}
44
45
}
46
47
}
Sabre\Xml\XmlSerializable
Objects implementing XmlSerializable can control how they are represented in Xml. ...
Definition:
XmlSerializable.php:13
Sabre\CardDAV\Xml\Property\SupportedCollationSet\xmlSerialize
xmlSerialize(Writer $writer)
The xmlSerialize method is called during xml writing.
Definition:
SupportedCollationSet.php:39
XmlSerializable
Writer
Sabre\CardDAV\Xml\Property\SupportedCollationSet
supported-collation-set property
Definition:
SupportedCollationSet.php:18
Sabre\CardDAV\Xml\Property
Definition:
SupportedAddressData.php:3
php
Sabre\Xml\Writer\writeElement
writeElement($name, $content=null)
Write a full element tag and it's contents.
Definition:
Writer.php:189
Sabre\Xml\Writer
The XML Writer class.
Definition:
Writer.php:31
libs
composer
vendor
sabre
dav
lib
CardDAV
Xml
Property
SupportedCollationSet.php
Generated on Thu Jan 16 2025 19:01:50 for ILIAS by
1.8.13 (using
Doxyfile
)