MediaWiki  1.33.0
LinkRendererFactory.php
Go to the documentation of this file.
1 <?php
21 namespace MediaWiki\Linker;
22 
25 use User;
26 
32 
36  private $titleFormatter;
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 
74  public function createFromLegacyOptions( array $options ) {
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 }
LinkCache
Cache for article titles (prefixed DB keys) and ids linked from one source.
Definition: LinkCache.php:34
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
MediaWiki\Linker\LinkRenderer
Class that generates HTML links for pages.
Definition: LinkRenderer.php:41
User\getStubThreshold
getStubThreshold()
Get the user preferred stub threshold.
Definition: User.php:3535
MediaWiki\Linker\LinkRendererFactory\createFromLegacyOptions
createFromLegacyOptions(array $options)
Definition: LinkRendererFactory.php:74
MediaWiki\Linker\LinkRendererFactory
Factory to create LinkRender objects.
Definition: LinkRendererFactory.php:31
$linkRenderer
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:1985
MediaWiki\Linker\LinkRendererFactory\createForUser
createForUser(User $user)
Definition: LinkRendererFactory.php:63
User
User
Definition: All_system_messages.txt:425
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
MediaWiki\Linker\LinkRendererFactory\__construct
__construct(TitleFormatter $titleFormatter, LinkCache $linkCache)
Definition: LinkRendererFactory.php:47
MediaWiki\Linker
Definition: LinkRenderer.php:21
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
PROTO_HTTPS
const PROTO_HTTPS
Definition: Defines.php:220
PROTO_HTTP
const PROTO_HTTP
Definition: Defines.php:219
$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
MediaWiki\Linker\LinkRendererFactory\$titleFormatter
TitleFormatter $titleFormatter
Definition: LinkRendererFactory.php:36
TitleFormatter
A title formatter service for MediaWiki.
Definition: TitleFormatter.php:34
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:48
MediaWiki\Linker\LinkRendererFactory\create
create()
Definition: LinkRendererFactory.php:55
MediaWiki\Linker\LinkRendererFactory\$linkCache
LinkCache $linkCache
Definition: LinkRendererFactory.php:41