MediaWiki REL1_31
HashtableReplacer.php
Go to the documentation of this file.
1<?php
25 private $table, $index;
26
31 public function __construct( $table, $index = 0 ) {
32 $this->table = $table;
33 $this->index = $index;
34 }
35
40 public function replace( array $matches ) {
41 return $this->table[$matches[$this->index]];
42 }
43}
Class to perform replacement based on a simple hashtable lookup.
replace(array $matches)
__construct( $table, $index=0)
Base class for "replacers", objects used in preg_replace_callback() and StringUtils::delimiterReplace...
Definition Replacer.php:25
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if so it s not worth the trouble Since there is a job queue in the jobs table
Definition deferred.txt:16