MediaWiki REL1_33
CommentStoreComment.php
Go to the documentation of this file.
1<?php
23
30
32 public $id;
33
35 public $text;
36
38 public $message;
39
41 public $data;
42
50 public function __construct( $id, $text, Message $message = null, array $data = null ) {
51 $this->id = $id;
52 $this->text = $text;
53 $this->message = $message ?: new RawMessage( '$1', [ Message::plaintextParam( $text ) ] );
54 $this->data = $data;
55 }
56
66 public static function newUnsavedComment( $comment, array $data = null ) {
67 if ( $comment instanceof CommentStoreComment ) {
68 return $comment;
69 }
70
71 if ( $data !== null ) {
72 foreach ( $data as $k => $v ) {
73 if ( substr( $k, 0, 1 ) === '_' ) {
74 throw new InvalidArgumentException( 'Keys in $data beginning with "_" are reserved' );
75 }
76 }
77 }
78
79 if ( $comment instanceof Message ) {
80 $message = clone $comment;
81 // Avoid $wgForceUIMsgAsContentMsg
82 $text = $message->inLanguage( MediaWikiServices::getInstance()->getContentLanguage() )
83 ->setInterfaceMessageFlag( true )
84 ->text();
85 return new CommentStoreComment( null, $text, $message, $data );
86 } else {
87 return new CommentStoreComment( null, $comment, null, $data );
88 }
89 }
90}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
CommentStoreComment represents a comment stored by CommentStore.
string $text
Text version of the comment.
static newUnsavedComment( $comment, array $data=null)
Create a new, unsaved CommentStoreComment.
int null $id
Comment ID, if any.
__construct( $id, $text, Message $message=null, array $data=null)
Message $message
Message version of the comment.
array null $data
Structured data of the comment.
MediaWikiServices is the service locator for the application scope of MediaWiki.
The Message class provides methods which fulfil two basic services:
Definition Message.php:160
inLanguage( $lang)
Request the message in any language that is supported.
Definition Message.php:743
Variant of the Message class.
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
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a message
Definition hooks.txt:2162
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
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN boolean columns are always mapped to as the code does not always treat the column as a and VARBINARY columns should simply be TEXT The only exception is when VARBINARY is used to store true binary data
Definition postgres.txt:37