MediaWiki  1.33.0
DummyNonTextContent.php
Go to the documentation of this file.
1 <?php
2 
4 
5  public function __construct( $data ) {
6  parent::__construct( "testing-nontext" );
7 
8  $this->data = $data;
9  }
10 
11  public function serialize( $format = null ) {
12  return serialize( $this->data );
13  }
14 
20  public function getTextForSearchIndex() {
21  return '';
22  }
23 
28  public function getWikitextForTransclusion() {
29  return false;
30  }
31 
39  public function getTextForSummary( $maxlength = 250 ) {
40  return '';
41  }
42 
50  public function getNativeData() {
51  return $this->data;
52  }
53 
59  public function getSize() {
60  return strlen( $this->data );
61  }
62 
77  public function copy() {
78  return $this;
79  }
80 
89  public function isCountable( $hasLinks = null ) {
90  return false;
91  }
92 
102  public function getParserOutput( Title $title, $revId = null,
103  ParserOptions $options = null, $generateHtml = true
104  ) {
105  return new ParserOutput( $this->serialize() );
106  }
107 
117  protected function fillParserOutput( Title $title, $revId,
118  ParserOptions $options, $generateHtml, ParserOutput &$output ) {
119  $output = new ParserOutput( $this->serialize() );
120  }
121 }
ParserOptions
Set options of the Parser.
Definition: ParserOptions.php:42
DummyNonTextContent\getSize
getSize()
returns the content's nominal size in bogo-bytes.
Definition: DummyNonTextContent.php:59
ParserOutput
Definition: ParserOutput.php:25
DummyNonTextContent\copy
copy()
Return a copy of this Content object.
Definition: DummyNonTextContent.php:77
DummyNonTextContent\getNativeData
getNativeData()
Returns native represenation of the data.
Definition: DummyNonTextContent.php:50
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
DummyNonTextContent\getTextForSummary
getTextForSummary( $maxlength=250)
Returns a textual representation of the content suitable for use in edit summaries and log messages.
Definition: DummyNonTextContent.php:39
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
$data
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
Definition: generatePhpCharToUpperMappings.php:13
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
DummyNonTextContent\__construct
__construct( $data)
Definition: DummyNonTextContent.php:5
$output
$output
Definition: SyntaxHighlight.php:334
DummyNonTextContent\getWikitextForTransclusion
getWikitextForTransclusion()
Definition: DummyNonTextContent.php:28
DummyNonTextContent\getParserOutput
getParserOutput(Title $title, $revId=null, ParserOptions $options=null, $generateHtml=true)
Definition: DummyNonTextContent.php:102
AbstractContent
Base implementation for content objects.
Definition: AbstractContent.php:34
DummyNonTextContent\fillParserOutput
fillParserOutput(Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
Definition: DummyNonTextContent.php:117
DummyNonTextContent\serialize
serialize( $format=null)
Definition: DummyNonTextContent.php:11
Title
Represents a title within MediaWiki.
Definition: Title.php:40
DummyNonTextContent\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: DummyNonTextContent.php:89
$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
DummyNonTextContent
Definition: DummyNonTextContent.php:3
DummyNonTextContent\getTextForSearchIndex
getTextForSearchIndex()
Definition: DummyNonTextContent.php:20