MediaWiki  1.33.0
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 }
CommentStoreComment\newUnsavedComment
static newUnsavedComment( $comment, array $data=null)
Create a new, unsaved CommentStoreComment.
Definition: CommentStoreComment.php:66
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
CommentStoreComment\$text
string $text
Text version of the comment.
Definition: CommentStoreComment.php:35
CommentStoreComment\$data
array null $data
Structured data of the comment.
Definition: CommentStoreComment.php:41
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
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
array
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))
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 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:2154
CommentStoreComment\$message
Message $message
Message version of the comment.
Definition: CommentStoreComment.php:38
text
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
Definition: All_system_messages.txt:1267
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:50
CommentStoreComment\$id
int null $id
Comment ID, if any.
Definition: CommentStoreComment.php:32
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
RawMessage
Variant of the Message class.
Definition: RawMessage.php:34
CommentStoreComment
CommentStoreComment represents a comment stored by CommentStore.
Definition: CommentStoreComment.php:29