mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\XmlRpc\Value;
|
|
|
|
class ArrayValue extends AbstractCollection
|
|
{
|
|
/**
|
|
* Set the value of an array native type
|
|
*
|
|
* @param array $value
|
|
*/
|
|
public function __construct($value)
|
|
{
|
|
$this->type = self::XMLRPC_TYPE_ARRAY;
|
|
parent::__construct($value);
|
|
}
|
|
|
|
/**
|
|
* Generate the XML code that represent an array native MXL-RPC value
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function _generateXml()
|
|
{
|
|
$generator = $this->getGenerator();
|
|
$generator->openElement('value')
|
|
->openElement('array')
|
|
->openElement('data');
|
|
|
|
if (is_array($this->value)) {
|
|
foreach ($this->value as $val) {
|
|
$val->generateXml();
|
|
}
|
|
}
|
|
$generator->closeElement('data')
|
|
->closeElement('array')
|
|
->closeElement('value');
|
|
}
|
|
}
|