ActivityObject has attribute for other elements

This commit is contained in:
Evan Prodromou 2010-12-19 10:16:44 -05:00
parent 9480bf1d10
commit 688841fb41

View File

@ -106,6 +106,8 @@ class ActivityObject
public $largerImage;
public $description;
public $extra; // For extra stuff
/**
* Constructor
*
@ -565,6 +567,11 @@ class ActivityObject
$xs->raw($this->poco->asString());
}
foreach ($this->extra as $el) {
list($tag, $attrs, $content) = $el;
$xs->element($tag, $attrs, $content);
}
$xs->elementEnd($tag);
return $xs->getString();