
| Current Path : /proc/thread-self/root/usr/share/jj/app/libraries/SabreForRainLoop/DAV/Property/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/share/jj/app/libraries/SabreForRainLoop/DAV/Property/ResponseList.php |
<?php
namespace SabreForRainLoop\DAV\Property;
use SabreForRainLoop\DAV;
/**
* ResponseList property
*
* This class represents multiple {DAV:}response XML elements.
* This is used by the Server class to encode items within a multistatus
* response.
*
* @copyright Copyright (C) 2007-2013 fruux GmbH (https://fruux.com/).
* @author Evert Pot (http://evertpot.com/)
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
*/
class ResponseList extends DAV\Property {
/**
* Response objects.
*
* @var array
*/
private $responses;
/**
* The only valid argument is a list of SabreForRainLoop\DAV\Property\Response
* objects.
*
* @param array $responses;
*/
public function __construct($responses) {
foreach($responses as $response) {
if (!($response instanceof Response)) {
throw new \InvalidArgumentException('You must pass an array of SabreForRainLoop\DAV\Property\Response objects');
}
}
$this->responses = $responses;
}
/**
* serialize
*
* @param DAV\Server $server
* @param \DOMElement $dom
* @return void
*/
public function serialize(DAV\Server $server,\DOMElement $dom) {
foreach($this->responses as $response) {
$response->serialize($server, $dom);
}
}
}