MediaWiki  1.29.1
LinkRendererFactory.php
Go to the documentation of this file.
1 <?php
22 namespace MediaWiki\Linker;
23 
26 use User;
27 
33 
37  private $titleFormatter;
38 
42  private $linkCache;
43 
49  $this->titleFormatter = $titleFormatter;
50  $this->linkCache = $linkCache;
51  }
52 
56  public function create() {
57  return new LinkRenderer( $this->titleFormatter, $this->linkCache );
58  }
59 
64  public function createForUser( User $user ) {
65  $linkRenderer = $this->create();
66  $linkRenderer->setStubThreshold( $user->getStubThreshold() );
67 
68  return $linkRenderer;
69  }
70 
75  public function createFromLegacyOptions( array $options ) {
76  $linkRenderer = $this->create();
77 
78  if ( in_array( 'forcearticlepath', $options, true ) ) {
79  $linkRenderer->setForceArticlePath( true );
80  }
81 
82  if ( in_array( 'http', $options, true ) ) {
83  $linkRenderer->setExpandURLs( PROTO_HTTP );
84  } elseif ( in_array( 'https', $options, true ) ) {
85  $linkRenderer->setExpandURLs( PROTO_HTTPS );
86  }
87 
88  if ( isset( $options['stubThreshold'] ) ) {
89  $linkRenderer->setStubThreshold(
90  $options['stubThreshold']
91  );
92  }
93 
94  return $linkRenderer;
95  }
96 }
LinkCache
Cache for article titles (prefixed DB keys) and ids linked from one source.
Definition: LinkCache.php:34
MediaWiki\Linker\LinkRenderer
Class that generates HTML links for pages.
Definition: LinkRenderer.php:42
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
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:246
User\getStubThreshold
getStubThreshold()
Get the user preferred stub threshold.
Definition: User.php:3218
MediaWiki\Linker\LinkRendererFactory\createFromLegacyOptions
createFromLegacyOptions(array $options)
Definition: LinkRendererFactory.php:75
MediaWiki\Linker\LinkRendererFactory
Factory to create LinkRender objects.
Definition: LinkRendererFactory.php:32
$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:1956
MediaWiki\Linker\LinkRendererFactory\createForUser
createForUser(User $user)
Definition: LinkRendererFactory.php:64
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:48
MediaWiki\Linker
Definition: LinkRenderer.php:22
PROTO_HTTPS
const PROTO_HTTPS
Definition: Defines.php:218
PROTO_HTTP
const PROTO_HTTP
Definition: Defines.php:217
MediaWiki\Linker\LinkRendererFactory\$titleFormatter
TitleFormatter $titleFormatter
Definition: LinkRendererFactory.php:37
TitleFormatter
A title formatter service for MediaWiki.
Definition: TitleFormatter.php:35
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:50
MediaWiki\Linker\LinkRendererFactory\create
create()
Definition: LinkRendererFactory.php:56
$options
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 as context as context $options
Definition: hooks.txt:1049
array
the array() calling protocol came about after MediaWiki 1.4rc1.
MediaWiki\Linker\LinkRendererFactory\$linkCache
LinkCache $linkCache
Definition: LinkRendererFactory.php:42