MediaWiki REL1_31
LinkRendererFactory.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Linker;
22
25use User;
26
32
37
41 private $linkCache;
42
48 $this->titleFormatter = $titleFormatter;
49 $this->linkCache = $linkCache;
50 }
51
55 public function create() {
56 return new LinkRenderer( $this->titleFormatter, $this->linkCache );
57 }
58
63 public function createForUser( User $user ) {
64 $linkRenderer = $this->create();
65 $linkRenderer->setStubThreshold( $user->getStubThreshold() );
66
67 return $linkRenderer;
68 }
69
75 $linkRenderer = $this->create();
76
77 if ( in_array( 'forcearticlepath', $options, true ) ) {
78 $linkRenderer->setForceArticlePath( true );
79 }
80
81 if ( in_array( 'http', $options, true ) ) {
82 $linkRenderer->setExpandURLs( PROTO_HTTP );
83 } elseif ( in_array( 'https', $options, true ) ) {
84 $linkRenderer->setExpandURLs( PROTO_HTTPS );
85 }
86
87 if ( isset( $options['stubThreshold'] ) ) {
88 $linkRenderer->setStubThreshold(
89 $options['stubThreshold']
90 );
91 }
92
93 return $linkRenderer;
94 }
95}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Cache for article titles (prefixed DB keys) and ids linked from one source.
Definition LinkCache.php:34
Factory to create LinkRender objects.
__construct(TitleFormatter $titleFormatter, LinkCache $linkCache)
Class that generates HTML links for pages.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
getStubThreshold()
Get the user preferred stub threshold.
Definition User.php:3519
const PROTO_HTTPS
Definition Defines.php:230
const PROTO_HTTP
Definition Defines.php:229
the array() calling protocol came about after MediaWiki 1.4rc1.
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:2001
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 noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
Definition hooks.txt:2056
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:37
A title formatter service for MediaWiki.