StatusNet >= 1.0 support it.
break;
}
- // XXX: deprecated; use ActivityVerb::SHARE instead
-
- $repeat = null;
-
- if (!empty($this->repeat_of)) {
- $repeat = Notice::getKV('id', $this->repeat_of);
- if (!empty($repeat)) {
- $ctx->forwardID = $repeat->uri;
- $ctx->forwardUrl = $repeat->bestUrl();
- }
- }
-
$act->context = $ctx;
$source = $this->getSource();
'href' => $attnURI));
}
- // XXX: shoulda used ActivityVerb::SHARE
-
- if (!empty($this->context->forwardID)) {
- if (!empty($this->context->forwardUrl)) {
- $xs->element('ostatus:forward',
- array('ref' => $this->context->forwardID,
- 'href' => $this->context->forwardUrl));
- } else {
- $xs->element('ostatus:forward',
- array('ref' => $this->context->forwardID));
- }
- }
-
if (!empty($this->context->location)) {
$loc = $this->context->location;
$xs->element('georss:point', null, $loc->lat . ' ' . $loc->lon);
public $attention = array();
public $attentionType = array();
public $conversation;
- public $forwardID; // deprecated, use ActivityVerb::SHARE instead
- public $forwardUrl; // deprecated, use ActivityVerb::SHARE instead
public $scope;
const THR = 'http://purl.org/syndication/thread/1.0';
$context['inReplyTo'] = $this->getInReplyToArray();
$context['conversation'] = $this->conversation;
- $context['forwardId'] = $this->forwardID;
- $context['forwardUrl'] = $this->forwardUrl;
return array_filter($context);
}