MediaWiki  1.27.2
DummyContentForTesting.php
Go to the documentation of this file.
1 <?php
2 
4 
5  public function __construct( $data ) {
6  parent::__construct( "testing" );
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->getNativeData() );
106  }
107 
117  protected function fillParserOutput( Title $title, $revId,
119  $output = new ParserOutput( $this->getNativeData() );
120  }
121 }
getSize()
returns the content's nominal size in bogo-bytes.
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
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state $generateHtml
Definition: hooks.txt:1004
Set options of the Parser.
fillParserOutput(Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
getNativeData()
Returns native represenation of the data.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context $revId
Definition: hooks.txt:1004
Represents a title within MediaWiki.
Definition: Title.php:34
getTextForSummary($maxlength=250)
Returns a textual representation of the content suitable for use in edit summaries and log messages...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1004
getParserOutput(Title $title, $revId=null, ParserOptions $options=null, $generateHtml=true)
Base implementation for content objects.
isCountable($hasLinks=null)
Returns true if this content is countable as a "real" wiki page, provided that it's also in a countab...
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
serialize($format=null)
Convenience method for serializing this Content object.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
Definition: hooks.txt:1004
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
copy()
Return a copy of this Content object.