2016-02-10 19:06:13 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-02-10 19:06:13 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-02-10 19:06:13 +03:00
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2016-02-10 19:06:13 +03:00
|
|
|
namespace OCA\DAV\CardDAV\Xml;
|
|
|
|
|
|
|
|
use Sabre\Xml\Writer;
|
2019-11-22 22:52:10 +03:00
|
|
|
use Sabre\Xml\XmlSerializable;
|
2016-02-10 19:06:13 +03:00
|
|
|
|
|
|
|
class Groups implements XmlSerializable {
|
2020-04-10 17:54:27 +03:00
|
|
|
public const NS_OWNCLOUD = 'http://owncloud.org/ns';
|
2016-02-10 19:06:13 +03:00
|
|
|
|
|
|
|
/** @var string[] of TYPE:CHECKSUM */
|
|
|
|
private $groups;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $groups
|
|
|
|
*/
|
|
|
|
public function __construct($groups) {
|
|
|
|
$this->groups = $groups;
|
|
|
|
}
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function xmlSerialize(Writer $writer) {
|
2016-02-10 19:06:13 +03:00
|
|
|
foreach ($this->groups as $group) {
|
|
|
|
$writer->writeElement('{' . self::NS_OWNCLOUD . '}group', $group);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|