MediaWiki REL1_31
DataUpdate.php
Go to the documentation of this file.
1<?php
28abstract class DataUpdate implements DeferrableUpdate {
30 protected $ticket;
32 protected $causeAction = 'unknown';
34 protected $causeAgent = 'unknown';
35
36 public function __construct() {
37 // noop
38 }
39
44 public function setTransactionTicket( $ticket ) {
45 $this->ticket = $ticket;
46 }
47
52 public function setCause( $action, $user ) {
53 $this->causeAction = $action;
54 $this->causeAgent = $user;
55 }
56
60 public function getCauseAction() {
61 return $this->causeAction;
62 }
63
67 public function getCauseAgent() {
68 return $this->causeAgent;
69 }
70
78 public static function runUpdates( array $updates ) {
79 foreach ( $updates as $update ) {
80 $update->doUpdate();
81 }
82 }
83}
Abstract base class for update jobs that do something with some secondary data extracted from article...
string $causeAction
Short update cause action description.
mixed $ticket
Result from LBFactory::getEmptyTransactionTicket()
static runUpdates(array $updates)
Convenience method, calls doUpdate() on every DataUpdate in the array.
setCause( $action, $user)
setTransactionTicket( $ticket)
string $causeAgent
Short update cause user description.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
the array() calling protocol came about after MediaWiki 1.4rc1.
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 $user
Definition hooks.txt:247
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Interface that deferrable updates should implement.