This way you can avoid rendering HTML and storing ParserCache entries Bug: T285987 Change-Id: I3c7023b776f2a1e35dafdbb6ac0eb3eb73ae5fd4
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
class DummyContentHandlerForTesting extends ContentHandler {
|
|
|
|
public function __construct( $dataModel, $formats = [ DummyContentForTesting::MODEL_ID ] ) {
|
|
parent::__construct( $dataModel, $formats );
|
|
}
|
|
|
|
protected function getContentClass() {
|
|
return DummyContentForTesting::class;
|
|
}
|
|
|
|
/**
|
|
* @see ContentHandler::serializeContent
|
|
*
|
|
* @param Content $content
|
|
* @param string|null $format
|
|
*
|
|
* @return string
|
|
*/
|
|
public function serializeContent( Content $content, $format = null ) {
|
|
return $content->serialize();
|
|
}
|
|
|
|
/**
|
|
* @see ContentHandler::unserializeContent
|
|
*
|
|
* @param string $blob
|
|
* @param string|null $format Unused.
|
|
*
|
|
* @return Content
|
|
*/
|
|
public function unserializeContent( $blob, $format = null ) {
|
|
$d = unserialize( $blob );
|
|
|
|
return new DummyContentForTesting( $d );
|
|
}
|
|
|
|
/**
|
|
* Creates an empty Content object of the type supported by this ContentHandler.
|
|
* @return DummyContentForTesting
|
|
*/
|
|
public function makeEmptyContent() {
|
|
return new DummyContentForTesting( '' );
|
|
}
|
|
|
|
public function generateHTMLOnEdit(): bool {
|
|
return false;
|
|
}
|
|
}
|