MediaWiki
REL1_32
RaggettInternalHHVM.php
Go to the documentation of this file.
1
<?php
2
3
namespace
MediaWiki\Tidy
;
4
8
class
RaggettInternalHHVM
extends
RaggettBase
{
18
protected
function
cleanWrapped
( $text, $stderr =
false
, &
$retval
=
null
) {
19
if
( $stderr ) {
20
throw
new \Exception(
"\$stderr cannot be used with RaggettInternalHHVM"
);
21
}
22
$cleansource = tidy_repair_string( $text, $this->config[
'tidyConfigFile'
],
'utf8'
);
23
if
( $cleansource ===
false
) {
24
$cleansource =
null
;
25
$retval
= -1;
26
}
else
{
27
$retval
= 0;
28
}
29
30
return
$cleansource;
31
}
32
}
MediaWiki\Tidy\RaggettBase
Definition
RaggettBase.php:10
MediaWiki\Tidy\RaggettInternalHHVM
Definition
RaggettInternalHHVM.php:8
MediaWiki\Tidy\RaggettInternalHHVM\cleanWrapped
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...
Definition
RaggettInternalHHVM.php:18
$retval
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:266
MediaWiki\Tidy
Definition
RaggettBase.php:3
includes
tidy
RaggettInternalHHVM.php
Generated on Mon Nov 25 2024 15:57:50 for MediaWiki by
1.10.0