MediaWiki  1.33.0
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->data );
108  }
109 
119  protected function fillParserOutput( Title $title, $revId,
120  ParserOptions $options, $generateHtml, ParserOutput &$output ) {
121  $output = new ParserOutput( $this->data );
122  }
123 }
ParserOptions
Set options of the Parser.
Definition: ParserOptions.php:42
ParserOutput
Definition: ParserOutput.php:25
DummyContentForTesting\getParserOutput
getParserOutput(Title $title, $revId=null, ParserOptions $options=null, $generateHtml=true)
Definition: DummyContentForTesting.php:104
DummyContentForTesting\fillParserOutput
fillParserOutput(Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
Definition: DummyContentForTesting.php:119
DummyContentForTesting\__construct
__construct( $data)
Definition: DummyContentForTesting.php:7
data
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of data
Definition: hooks.txt:6
DummyContentForTesting\getTextForSummary
getTextForSummary( $maxlength=250)
Returns a textual representation of the content suitable for use in edit summaries and log messages.
Definition: DummyContentForTesting.php:41
DummyContentForTesting\getTextForSearchIndex
getTextForSearchIndex()
Definition: DummyContentForTesting.php:22
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
DummyContentForTesting\serialize
serialize( $format=null)
Definition: DummyContentForTesting.php:13
$data
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
Definition: generatePhpCharToUpperMappings.php:13
DummyContentForTesting\isCountable
isCountable( $hasLinks=null)
Returns true if this content is countable as a "real" wiki page, provided that it's also in a countab...
Definition: DummyContentForTesting.php:91
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
$output
$output
Definition: SyntaxHighlight.php:334
AbstractContent
Base implementation for content objects.
Definition: AbstractContent.php:34
DummyContentForTesting\getWikitextForTransclusion
getWikitextForTransclusion()
Definition: DummyContentForTesting.php:30
DummyContentForTesting
Definition: DummyContentForTesting.php:3
DummyContentForTesting\MODEL_ID
const MODEL_ID
Definition: DummyContentForTesting.php:5
Title
Represents a title within MediaWiki.
Definition: Title.php:40
$options
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:1985
DummyContentForTesting\getSize
getSize()
returns the content's nominal size in bogo-bytes.
Definition: DummyContentForTesting.php:61
DummyContentForTesting\copy
copy()
Return a copy of this Content object.
Definition: DummyContentForTesting.php:79
DummyContentForTesting\getNativeData
getNativeData()
Returns native represenation of the data.
Definition: DummyContentForTesting.php:52