MediaWiki  1.34.0
TitleArray.php
Go to the documentation of this file.
1 <?php
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