2017-10-10 15:55:13 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class RevisionTestModifyableContentHandler extends TextContentHandler {
|
|
|
|
|
|
|
|
|
|
public function __construct() {
|
2017-10-12 12:23:33 +00:00
|
|
|
parent::__construct( RevisionTestModifyableContent::MODEL_ID, [ CONTENT_FORMAT_TEXT ] );
|
2017-10-10 15:55:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function unserializeContent( $text, $format = null ) {
|
|
|
|
|
$this->checkFormat( $format );
|
|
|
|
|
|
|
|
|
|
return new RevisionTestModifyableContent( $text );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function makeEmptyContent() {
|
|
|
|
|
return new RevisionTestModifyableContent( '' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|