MediaWiki  1.29.1
CodeContentHandler.php
Go to the documentation of this file.
1 <?php
29 abstract class CodeContentHandler extends TextContentHandler {
30 
41  public function getPageLanguage( Title $title, Content $content = null ) {
42  return Language::factory( 'en' );
43  }
44 
55  public function getPageViewLanguage( Title $title, Content $content = null ) {
56  return Language::factory( 'en' );
57  }
58 
63  protected function getContentClass() {
64  throw new MWException( 'Subclass must override' );
65  }
66 
67 }
CodeContentHandler
Content handler for code content such as CSS, JavaScript, JSON, etc.
Definition: CodeContentHandler.php:29
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
MWException
MediaWiki exception.
Definition: MWException.php:26
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
$content
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup 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 $content
Definition: hooks.txt:1049
CodeContentHandler\getPageLanguage
getPageLanguage(Title $title, Content $content=null)
Returns the English language, because code is English, and should be handled as such.
Definition: CodeContentHandler.php:41
TextContentHandler
Base content handler implementation for flat text contents.
Definition: TextContentHandler.php:31
CodeContentHandler\getPageViewLanguage
getPageViewLanguage(Title $title, Content $content=null)
Returns the English language, because code is English, and should be handled as such.
Definition: CodeContentHandler.php:55
Content
Base interface for content objects.
Definition: Content.php:34
Title
Represents a title within MediaWiki.
Definition: Title.php:39
CodeContentHandler\getContentClass
getContentClass()
Definition: CodeContentHandler.php:63
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183