41 public function get(
$code, $key ) {
42 if ( $this->writesDone && $this->dbw ) {
51 [
'lc_lang' =>
$code,
'lc_key' => $key ],
59 if ( $this->readOnly ) {
62 throw new MWException( __METHOD__ .
": Invalid language \"$code\"" );
66 $this->readOnly = $this->dbw->isReadOnly();
68 $this->currentLang =
$code;
73 if ( $this->readOnly ) {
75 } elseif ( is_null( $this->currentLang ) ) {
76 throw new MWException( __CLASS__ .
': must call startWrite() before finishWrite()' );
79 $this->dbw->startAtomic( __METHOD__ );
83 [
'lc_lang' => $this->currentLang ],
86 foreach ( array_chunk( $this->
batch, 500 ) as
$rows ) {
87 $this->dbw->insert(
'l10n_cache',
$rows, __METHOD__ );
89 $this->writesDone =
true;
91 if ( $this->dbw->wasReadOnlyError() ) {
92 $this->readOnly =
true;
97 $this->dbw->endAtomic( __METHOD__ );
99 $this->currentLang =
null;
104 if ( $this->readOnly ) {
106 } elseif ( is_null( $this->currentLang ) ) {
107 throw new MWException( __CLASS__ .
': must call startWrite() before set()' );
unserialize( $serialized)
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
LCStore implementation which uses the standard DB functions to store data.
finishWrite()
Finish a write transaction.
startWrite( $code)
Start a write transaction.
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
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
returning false will NOT prevent logging $e
Interface for the persistence layer of LocalisationCache.
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a batch