RevisionTestModifyableContentHandler.php 456 B

1234567891011121314151617181920
  1. <?php
  2. class RevisionTestModifyableContentHandler extends TextContentHandler {
  3. public function __construct() {
  4. parent::__construct( RevisionTestModifyableContent::MODEL_ID, [ CONTENT_FORMAT_TEXT ] );
  5. }
  6. public function unserializeContent( $text, $format = null ) {
  7. $this->checkFormat( $format );
  8. return new RevisionTestModifyableContent( $text );
  9. }
  10. public function makeEmptyContent() {
  11. return new RevisionTestModifyableContent( '' );
  12. }
  13. }