MediaWiki REL1_31
FakeResultWrapper.php
Go to the documentation of this file.
1<?php
2
3namespace Wikimedia\Rdbms;
4
5use stdClass;
6
17 function __construct( array $rows ) {
18 parent::__construct( null, $rows );
19 }
20
21 function numRows() {
22 return count( $this->result );
23 }
24
25 function fetchRow() {
26 if ( $this->pos < count( $this->result ) ) {
27 $this->currentRow = $this->result[$this->pos];
28 } else {
29 $this->currentRow = false;
30 }
31 $this->pos++;
32 if ( is_object( $this->currentRow ) ) {
33 return get_object_vars( $this->currentRow );
34 } else {
35 return $this->currentRow;
36 }
37 }
38
39 function seek( $row ) {
40 $this->pos = $row;
41 }
42
43 function free() {
44 }
45
46 function fetchObject() {
47 $this->fetchRow();
48 if ( $this->currentRow ) {
49 return (object)$this->currentRow;
50 } else {
51 return false;
52 }
53 }
54
55 function rewind() {
56 $this->pos = 0;
57 $this->currentRow = null;
58 }
59
60 function next() {
61 return $this->fetchObject();
62 }
63}
64
65class_alias( FakeResultWrapper::class, 'FakeResultWrapper' );
Overloads the relevant methods of the real ResultsWrapper so it doesn't go anywhere near an actual da...
fetchObject()
Fetch the next row from the given result object, in object form.
numRows()
Get the number of rows in a result object.
fetchRow()
Fetch the next row from the given result object, in associative array form.
seek( $row)
Change the position of the cursor in a result object.
Result wrapper for grabbing data queried from an IDatabase object.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
Definition hooks.txt:2783