MediaWiki  1.27.2
NaiveForeignTitleFactory.php
Go to the documentation of this file.
1 <?php
43  public function createForeignTitle( $title, $ns = null ) {
44  $pieces = explode( ':', $title, 2 );
45 
47 
60  $isNamespacePartValid = is_null( $ns ) ?
61  ( $wgContLang->getNsIndex( $pieces[0] ) !== false ) :
62  $ns != 0;
63 
64  if ( count( $pieces ) === 2 && $isNamespacePartValid ) {
65  list( $namespaceName, $pageName ) = $pieces;
66  } else {
67  $namespaceName = '';
68  $pageName = $title;
69  }
70 
71  return new ForeignTitle( $ns, $namespaceName, $pageName );
72  }
73 }
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
A parser that translates page titles into ForeignTitle objects.
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
createForeignTitle($title, $ns=null)
Creates a ForeignTitle object based on the page title, and optionally the namespace ID...
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
A parser that translates page titles on a foreign wiki into ForeignTitle objects, with no knowledge o...
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition: design.txt:56
A simple, immutable structure to hold the title of a page on a foreign MediaWiki installation.