MediaWiki  1.27.2
RaggettInternalPHP.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Tidy;
4 
15  protected function cleanWrapped( $text, $stderr = false, &$retval = null ) {
16  if ( !class_exists( 'tidy' ) ) {
17  wfWarn( "Unable to load internal tidy class." );
18  $retval = -1;
19 
20  return null;
21  }
22 
23  $tidy = new \tidy;
24  $tidy->parseString( $text, $this->config['tidyConfigFile'], 'utf8' );
25 
26  if ( $stderr ) {
27  $retval = $tidy->getStatus();
28  return $tidy->errorBuffer;
29  }
30 
31  $tidy->cleanRepair();
32  $retval = $tidy->getStatus();
33  if ( $retval == 2 ) {
34  // 2 is magic number for fatal error
35  // http://www.php.net/manual/en/function.tidy-get-status.php
36  $cleansource = null;
37  } else {
38  $cleansource = tidy_get_output( $tidy );
39  if ( !empty( $this->config['debugComment'] ) && $retval > 0 ) {
40  $cleansource .= "<!--\nTidy reports:\n" .
41  str_replace( '-->', '--&gt;', $tidy->errorBuffer ) .
42  "\n-->";
43  }
44  }
45 
46  return $cleansource;
47  }
48 
49  public function supportsValidate() {
50  return true;
51  }
52 }
wfWarn($msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
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
cleanWrapped($text, $stderr=false, &$retval=null)
Use the HTML tidy extension to use the tidy library in-process, saving the overhead of spawning a new...
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 local account incomplete not yet checked for validity & $retval
Definition: hooks.txt:242