MediaWiki  1.30.0
CommentStoreComment.php
Go to the documentation of this file.
1 <?php
24 
31 
33  public $id;
34 
36  public $text;
37 
39  public $message;
40 
42  public $data;
43 
51  public function __construct( $id, $text, Message $message = null, array $data = null ) {
52  $this->id = $id;
53  $this->text = $text;
54  $this->message = $message ?: new RawMessage( '$1', [ $text ] );
55  $this->data = $data;
56  }
57 
67  public static function newUnsavedComment( $comment, array $data = null ) {
69 
70  if ( $comment instanceof CommentStoreComment ) {
71  return $comment;
72  }
73 
74  if ( $data !== null ) {
75  foreach ( $data as $k => $v ) {
76  if ( substr( $k, 0, 1 ) === '_' ) {
77  throw new InvalidArgumentException( 'Keys in $data beginning with "_" are reserved' );
78  }
79  }
80  }
81 
82  if ( $comment instanceof Message ) {
83  $message = clone $comment;
84  $text = $message->inLanguage( $wgContLang ) // Avoid $wgForceUIMsgAsContentMsg
85  ->setInterfaceMessageFlag( true )
86  ->text();
87  return new CommentStoreComment( null, $text, $message, $data );
88  } else {
89  return new CommentStoreComment( null, $comment, null, $data );
90  }
91  }
92 }
CommentStoreComment\newUnsavedComment
static newUnsavedComment( $comment, array $data=null)
Create a new, unsaved CommentStoreComment.
Definition: CommentStoreComment.php:67
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
CommentStoreComment\$text
string $text
Text version of the comment.
Definition: CommentStoreComment.php:36
CommentStoreComment\$data
array null $data
Structured data of the comment.
Definition: CommentStoreComment.php:42
php
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:35
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:40
message
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 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:2133
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
CommentStoreComment\$message
Message $message
Message version of the comment.
Definition: CommentStoreComment.php:39
as
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
Definition: distributors.txt:9
CommentStoreComment\__construct
__construct( $id, $text, Message $message=null, array $data=null)
Definition: CommentStoreComment.php:51
CommentStoreComment\$id
int null $id
Comment ID, if any.
Definition: CommentStoreComment.php:33
RawMessage
Variant of the Message class.
Definition: RawMessage.php:34
CommentStoreComment
CommentStoreComment represents a comment stored by CommentStore.
Definition: CommentStoreComment.php:30
data
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of data
Definition: hooks.txt:6
array
the array() calling protocol came about after MediaWiki 1.4rc1.
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56