blob: 7a4497118a38ccb85a21df7da95d64d4ac6090b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
class RevisionTestModifyableContent extends TextContent {
public const MODEL_ID = "RevisionTestModifyableContent";
public function __construct( $text ) {
parent::__construct( $text, self::MODEL_ID );
}
public function copy() {
return new RevisionTestModifyableContent( $this->mText );
}
public function getText() {
return $this->mText;
}
public function setText( $text ) {
$this->mText = $text;
}
}
|