MediaWiki  1.33.0
MWTidy.php
Go to the documentation of this file.
1 <?php
29 class MWTidy {
30  private static $instance;
31 
42  public static function tidy( $text ) {
43  $driver = self::singleton();
44  if ( !$driver ) {
45  throw new MWException( __METHOD__ .
46  ': tidy is disabled, caller should have checked MWTidy::isEnabled()' );
47  }
48  return $driver->tidy( $text );
49  }
50 
54  public static function isEnabled() {
55  return self::singleton() !== false;
56  }
57 
61  public static function singleton() {
62  global $wgTidyConfig;
63  if ( self::$instance === null ) {
64  self::$instance = self::factory( $wgTidyConfig );
65  }
66  return self::$instance;
67  }
68 
76  public static function factory( array $config = null ) {
77  return new MediaWiki\Tidy\RemexDriver( $config ?? [] );
78  }
79 
85  public static function setInstance( $instance ) {
86  wfDeprecated( __METHOD__, '1.33' );
87  self::$instance = $instance;
88  }
89 
93  public static function destroySingleton() {
94  self::$instance = null;
95  }
96 }
MWTidy\isEnabled
static isEnabled()
Definition: MWTidy.php:54
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
MWException
MediaWiki exception.
Definition: MWException.php:26
MediaWiki\Tidy\RemexDriver
Definition: RemexDriver.php:12
MWTidy\factory
static factory(array $config=null)
Create a new Tidy driver object from configuration.
Definition: MWTidy.php:76
wfDeprecated
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Definition: GlobalFunctions.php:1078
MWTidy\$instance
static $instance
Definition: MWTidy.php:30
MWTidy
Class to interact with and configure Remex tidy.
Definition: MWTidy.php:29
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))
MWTidy\setInstance
static setInstance( $instance)
Set the driver to be used.
Definition: MWTidy.php:85
$wgTidyConfig
$wgTidyConfig
Configuration for HTML postprocessing tool.
Definition: DefaultSettings.php:4243
MWTidy\singleton
static singleton()
Definition: MWTidy.php:61
MWTidy\destroySingleton
static destroySingleton()
Destroy the current singleton instance.
Definition: MWTidy.php:93
MWTidy\tidy
static tidy( $text)
Interface with Remex tidy.
Definition: MWTidy.php:42