. * * @category Feed * @package StatusNet * @author Evan Prodromou * @author Zach Copley * @copyright 2010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ if (!defined('STATUSNET')) { exit(1); } class PoCoURL { const URLS = 'urls'; const TYPE = 'type'; const VALUE = 'value'; const PRIMARY = 'primary'; public $type; public $value; public $primary; function __construct($type, $value, $primary = false) { $this->type = $type; $this->value = $value; $this->primary = $primary; } function asString() { $xs = new XMLStringer(true); $this->outputTo($xs); return $xs->getString(); } function outputTo($xo) { $xo->elementStart('poco:urls'); $xo->element('poco:type', null, $this->type); $xo->element('poco:value', null, $this->value); if (!empty($this->primary)) { $xo->element('poco:primary', null, 'true'); } $xo->elementEnd('poco:urls'); } /** * Return this PoCo URL as an array suitable for serializing in JSON * * @array $url the url */ function asArray() { $url = array(); $url['type'] = $this->type; $url['value'] = $this->value; if (!empty($this->primary)) { $url['primary'] = 'true'; } return $url; } }