blob: fd253f2123318045bdd8fd1dc91ad80d154b57eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
class DummyContentHandlerForTesting extends ContentHandler {
public function __construct( $dataModel ) {
parent::__construct( $dataModel, array( "testing" ) );
}
/**
* @see ContentHandler::serializeContent
*
* @param Content $content
* @param string $format
*
* @return string
*/
public function serializeContent( Content $content, $format = null ) {
return $content->serialize();
}
/**
* @see ContentHandler::unserializeContent
*
* @param string $blob
* @param string $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.
*
*/
public function makeEmptyContent() {
return new DummyContentForTesting( '' );
}
}
|