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