MediaWiki REL1_31
DummyContentForTesting.php
Go to the documentation of this file.
1<?php
2
4
5 const MODEL_ID = "testing";
6
7 public function __construct( $data ) {
8 parent::__construct( self::MODEL_ID );
9
10 $this->data = $data;
11 }
12
13 public function serialize( $format = null ) {
14 return serialize( $this->data );
15 }
16
22 public function getTextForSearchIndex() {
23 return '';
24 }
25
30 public function getWikitextForTransclusion() {
31 return false;
32 }
33
41 public function getTextForSummary( $maxlength = 250 ) {
42 return '';
43 }
44
52 public function getNativeData() {
53 return $this->data;
54 }
55
61 public function getSize() {
62 return strlen( $this->data );
63 }
64
79 public function copy() {
80 return $this;
81 }
82
91 public function isCountable( $hasLinks = null ) {
92 return false;
93 }
94
104 public function getParserOutput( Title $title, $revId = null,
105 ParserOptions $options = null, $generateHtml = true
106 ) {
107 return new ParserOutput( $this->getNativeData() );
108 }
109
119 protected function fillParserOutput( Title $title, $revId,
120 ParserOptions $options, $generateHtml, ParserOutput &$output ) {
121 $output = new ParserOutput( $this->getNativeData() );
122 }
123}
serialize()
Base implementation for content objects.
getParserOutput(Title $title, $revId=null, ParserOptions $options=null, $generateHtml=true)
copy()
Return a copy of this Content object.
getTextForSummary( $maxlength=250)
Returns a textual representation of the content suitable for use in edit summaries and log messages.
isCountable( $hasLinks=null)
Returns true if this content is countable as a "real" wiki page, provided that it's also in a countab...
getSize()
returns the content's nominal size in bogo-bytes.
fillParserOutput(Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
getNativeData()
Returns native represenation of the data.
Set options of the Parser.
Represents a title within MediaWiki.
Definition Title.php:39
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2255
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001