MediaWiki  1.33.0
DoubleReplacer.php
Go to the documentation of this file.
1 <?php
26 class DoubleReplacer extends Replacer {
32  public function __construct( $from, $to, $index = 0 ) {
33  wfDeprecated( __METHOD__, '1.32' );
34  $this->from = $from;
35  $this->to = $to;
36  $this->index = $index;
37  }
38 
43  public function replace( array $matches ) {
44  return str_replace( $this->from, $this->to, $matches[$this->index] );
45  }
46 }
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
wfDeprecated
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Definition: GlobalFunctions.php:1078
$matches
$matches
Definition: NoLocalSettings.php:24
Replacer
Base class for "replacers", objects used in preg_replace_callback() and StringUtils::delimiterReplace...
Definition: Replacer.php:27
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))
DoubleReplacer\replace
replace(array $matches)
Definition: DoubleReplacer.php:43
DoubleReplacer\__construct
__construct( $from, $to, $index=0)
Definition: DoubleReplacer.php:32
DoubleReplacer
Class to perform secondary replacement within each replacement string.
Definition: DoubleReplacer.php:26
from
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable from
Definition: APACHE-LICENSE-2.0.txt:43