39 lines
920 B
PHP
39 lines
920 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Event is an implementation of one of the
|
||
|
* Activity Streams Event object type
|
||
|
*
|
||
|
* @package activity-event-transformers
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Event is an implementation of one of the
|
||
|
* Activity Streams Event object type
|
||
|
*
|
||
|
* The Object is the primary base type for the Activity Streams
|
||
|
* vocabulary.
|
||
|
*
|
||
|
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-event
|
||
|
*/
|
||
|
class Event extends \Activitypub\Activity\Base_Object {
|
||
|
/**
|
||
|
* Event is an implementation of one of the
|
||
|
* Activity Streams
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $type = 'Event';
|
||
|
|
||
|
/**
|
||
|
* Extension invented by PeerTube whether comments/replies are <enabled>
|
||
|
* Mobilizon also implemented this as a fallback to their own
|
||
|
* repliesModerationOption.
|
||
|
*
|
||
|
* @see https://docs.joinpeertube.org/api/activitypub#video
|
||
|
* @see https://docs.joinmobilizon.org/contribute/activity_pub/
|
||
|
*
|
||
|
* @var bool
|
||
|
*/
|
||
|
protected $comments_enabled;
|
||
|
}
|