mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-28 02:00:57 +00:00
89 lines
1.5 KiB
PHP
89 lines
1.5 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace MediaWiki\Extension\DiscussionTools;
|
||
|
|
||
|
abstract class ThreadItem {
|
||
|
private $type;
|
||
|
private $range;
|
||
|
private $level;
|
||
|
|
||
|
private $id = null;
|
||
|
private $replies = [];
|
||
|
|
||
|
/**
|
||
|
* @param string $type
|
||
|
* @param int $level
|
||
|
* @param ImmutableRange $range
|
||
|
*/
|
||
|
public function __construct(
|
||
|
string $type, int $level, ImmutableRange $range
|
||
|
) {
|
||
|
$this->type = $type;
|
||
|
$this->level = $level;
|
||
|
$this->range = $range;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string Thread item type
|
||
|
*/
|
||
|
public function getType() : string {
|
||
|
return $this->type;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return int Thread item level
|
||
|
*/
|
||
|
public function getLevel() : int {
|
||
|
return $this->level;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return ImmutableRange Thread item range
|
||
|
*/
|
||
|
public function getRange() : ImmutableRange {
|
||
|
return $this->range;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string|null Thread ID
|
||
|
*/
|
||
|
public function getId() : ?string {
|
||
|
return $this->id;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return CommentItem[] Thread item replies
|
||
|
*/
|
||
|
public function getReplies() : array {
|
||
|
return $this->replies;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $level Thread item level
|
||
|
*/
|
||
|
public function setLevel( int $level ) : void {
|
||
|
$this->level = $level;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param ImmutableRange $range Thread item range
|
||
|
*/
|
||
|
public function setRange( ImmutableRange $range ) : void {
|
||
|
$this->range = $range;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string|null $id Thread ID
|
||
|
*/
|
||
|
public function setId( ?string $id ) : void {
|
||
|
$this->id = $id;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param CommentItem $reply Reply comment
|
||
|
*/
|
||
|
public function addReply( CommentItem $reply ) : void {
|
||
|
$this->replies[] = $reply;
|
||
|
}
|
||
|
}
|