MediaWiki
1.34.0
TitleArray.php
Go to the documentation of this file.
1
<?php
27
use
Wikimedia\Rdbms\IResultWrapper
;
28
35
abstract
class
TitleArray
implements
Iterator {
42
static
function
newFromResult
(
$res
) {
43
$array =
null
;
44
if
( !
Hooks::run
(
'TitleArrayFromResult'
, [ &$array,
$res
] ) ) {
45
return
null
;
46
}
47
return
$array ??
new
TitleArrayFromResult
(
$res
);
48
}
49
}
TitleArray\newFromResult
static newFromResult( $res)
Definition:
TitleArray.php:42
$res
$res
Definition:
testCompression.php:52
Wikimedia\Rdbms\IResultWrapper
Result wrapper for grabbing data queried from an IDatabase object.
Definition:
IResultWrapper.php:24
TitleArrayFromResult
Definition:
TitleArrayFromResult.php:29
TitleArray
The TitleArray class only exists to provide the newFromResult method at pre- sent.
Definition:
TitleArray.php:35
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition:
Hooks.php:200
includes
TitleArray.php
Generated on Thu Dec 19 2019 14:55:03 for MediaWiki by
1.8.16