MediaWiki  1.33.0
EmailNotification.php
Go to the documentation of this file.
1 <?php
28 
49 
53  const USER_TALK = 'user_talk';
57  const WATCHLIST = 'watchlist';
61  const ALL_CHANGES = 'all_changes';
62 
63  protected $subject, $body, $replyto, $from;
65  protected $mailTargets = [];
66 
70  protected $title;
71 
75  protected $editor;
76 
87  public function getPageStatus() {
88  return $this->pageStatus;
89  }
90 
105  $minorEdit, $oldid = false, $pageStatus = 'changed'
106  ) {
108 
109  if ( $title->getNamespace() < 0 ) {
110  return;
111  }
112 
113  // update wl_notificationtimestamp for watchers
114  $config = RequestContext::getMain()->getConfig();
115  $watchers = [];
116  if ( $config->get( 'EnotifWatchlist' ) || $config->get( 'ShowUpdatedMarker' ) ) {
117  $watchers = MediaWikiServices::getInstance()->getWatchedItemStore()->updateNotificationTimestamp(
118  $editor,
119  $title,
120  $timestamp
121  );
122  }
123 
124  $sendEmail = true;
125  // $watchers deals with $wgEnotifWatchlist.
126  // If nobody is watching the page, and there are no users notified on all changes
127  // don't bother creating a job/trying to send emails, unless it's a
128  // talk page with an applicable notification.
129  if ( $watchers === [] && !count( $wgUsersNotifiedOnAllChanges ) ) {
130  $sendEmail = false;
131  // Only send notification for non minor edits, unless $wgEnotifMinorEdits
132  if ( !$minorEdit || ( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
133  $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
134  if ( $wgEnotifUserTalk
135  && $isUserTalkPage
136  && $this->canSendUserTalkEmail( $editor, $title, $minorEdit )
137  ) {
138  $sendEmail = true;
139  }
140  }
141  }
142 
143  if ( $sendEmail ) {
144  JobQueueGroup::singleton()->lazyPush( new EnotifNotifyJob(
145  $title,
146  [
147  'editor' => $editor->getName(),
148  'editorID' => $editor->getId(),
149  'timestamp' => $timestamp,
150  'summary' => $summary,
151  'minorEdit' => $minorEdit,
152  'oldid' => $oldid,
153  'watchers' => $watchers,
154  'pageStatus' => $pageStatus
155  ]
156  ) );
157  }
158  }
159 
177  $oldid, $watchers, $pageStatus = 'changed' ) {
178  # we use $wgPasswordSender as sender's address
182 
183  # The following code is only run, if several conditions are met:
184  # 1. EmailNotification for pages (other than user_talk pages) must be enabled
185  # 2. minor edits (changes) are only regarded if the global flag indicates so
186 
187  $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
188 
189  $this->title = $title;
190  $this->timestamp = $timestamp;
191  $this->summary = $summary;
192  $this->minorEdit = $minorEdit;
193  $this->oldid = $oldid;
194  $this->editor = $editor;
195  $this->composed_common = false;
196  $this->pageStatus = $pageStatus;
197 
198  $formattedPageStatus = [ 'deleted', 'created', 'moved', 'restored', 'changed' ];
199 
200  Hooks::run( 'UpdateUserMailerFormattedPageStatus', [ &$formattedPageStatus ] );
201  if ( !in_array( $this->pageStatus, $formattedPageStatus ) ) {
202  throw new MWException( 'Not a valid page status!' );
203  }
204 
205  $userTalkId = false;
206 
207  if ( !$minorEdit || ( $wgEnotifMinorEdits && !$editor->isAllowed( 'nominornewtalk' ) ) ) {
208  if ( $wgEnotifUserTalk
209  && $isUserTalkPage
210  && $this->canSendUserTalkEmail( $editor, $title, $minorEdit )
211  ) {
212  $targetUser = User::newFromName( $title->getText() );
213  $this->compose( $targetUser, self::USER_TALK );
214  $userTalkId = $targetUser->getId();
215  }
216 
217  if ( $wgEnotifWatchlist ) {
218  // Send updates to watchers other than the current editor
219  // and don't send to watchers who are blocked and cannot login
220  $userArray = UserArray::newFromIDs( $watchers );
221  foreach ( $userArray as $watchingUser ) {
222  if ( $watchingUser->getOption( 'enotifwatchlistpages' )
223  && ( !$minorEdit || $watchingUser->getOption( 'enotifminoredits' ) )
224  && $watchingUser->isEmailConfirmed()
225  && $watchingUser->getId() != $userTalkId
226  && !in_array( $watchingUser->getName(), $wgUsersNotifiedOnAllChanges )
227  && !( $wgBlockDisablesLogin && $watchingUser->isBlocked() )
228  && Hooks::run( 'SendWatchlistEmailNotification', [ $watchingUser, $title, $this ] )
229  ) {
230  $this->compose( $watchingUser, self::WATCHLIST );
231  }
232  }
233  }
234  }
235 
237  if ( $editor->getName() == $name ) {
238  // No point notifying the user that actually made the change!
239  continue;
240  }
242  $this->compose( $user, self::ALL_CHANGES );
243  }
244 
245  $this->sendMails();
246  }
247 
254  private function canSendUserTalkEmail( $editor, $title, $minorEdit ) {
256  $isUserTalkPage = ( $title->getNamespace() == NS_USER_TALK );
257 
258  if ( $wgEnotifUserTalk && $isUserTalkPage ) {
259  $targetUser = User::newFromName( $title->getText() );
260 
261  if ( !$targetUser || $targetUser->isAnon() ) {
262  wfDebug( __METHOD__ . ": user talk page edited, but user does not exist\n" );
263  } elseif ( $targetUser->getId() == $editor->getId() ) {
264  wfDebug( __METHOD__ . ": user edited their own talk page, no notification sent\n" );
265  } elseif ( $wgBlockDisablesLogin && $targetUser->isBlocked() ) {
266  wfDebug( __METHOD__ . ": talk page owner is blocked and cannot login, no notification sent\n" );
267  } elseif ( $targetUser->getOption( 'enotifusertalkpages' )
268  && ( !$minorEdit || $targetUser->getOption( 'enotifminoredits' ) )
269  ) {
270  if ( !$targetUser->isEmailConfirmed() ) {
271  wfDebug( __METHOD__ . ": talk page owner doesn't have validated email\n" );
272  } elseif ( !Hooks::run( 'AbortTalkPageEmailNotification', [ $targetUser, $title ] ) ) {
273  wfDebug( __METHOD__ . ": talk page update notification is aborted for this user\n" );
274  } else {
275  wfDebug( __METHOD__ . ": sending talk page update notification\n" );
276  return true;
277  }
278  } else {
279  wfDebug( __METHOD__ . ": talk page owner doesn't want notifications\n" );
280  }
281  }
282  return false;
283  }
284 
288  private function composeCommonMailtext() {
292 
293  $this->composed_common = true;
294 
295  # You as the WikiAdmin and Sysops can make use of plenty of
296  # named variables when composing your notification emails while
297  # simply editing the Meta pages
298 
299  $keys = [];
300  $postTransformKeys = [];
301  $pageTitleUrl = $this->title->getCanonicalURL();
302  $pageTitle = $this->title->getPrefixedText();
303 
304  if ( $this->oldid ) {
305  // Always show a link to the diff which triggered the mail. See T34210.
306  $keys['$NEWPAGE'] = "\n\n" . wfMessage( 'enotif_lastdiff',
307  $this->title->getCanonicalURL( [ 'diff' => 'next', 'oldid' => $this->oldid ] ) )
308  ->inContentLanguage()->text();
309 
310  if ( !$wgEnotifImpersonal ) {
311  // For personal mail, also show a link to the diff of all changes
312  // since last visited.
313  $keys['$NEWPAGE'] .= "\n\n" . wfMessage( 'enotif_lastvisited',
314  $this->title->getCanonicalURL( [ 'diff' => '0', 'oldid' => $this->oldid ] ) )
315  ->inContentLanguage()->text();
316  }
317  $keys['$OLDID'] = $this->oldid;
318  // Deprecated since MediaWiki 1.21, not used by default. Kept for backwards-compatibility.
319  $keys['$CHANGEDORCREATED'] = wfMessage( 'changed' )->inContentLanguage()->text();
320  } else {
321  # clear $OLDID placeholder in the message template
322  $keys['$OLDID'] = '';
323  $keys['$NEWPAGE'] = '';
324  // Deprecated since MediaWiki 1.21, not used by default. Kept for backwards-compatibility.
325  $keys['$CHANGEDORCREATED'] = wfMessage( 'created' )->inContentLanguage()->text();
326  }
327 
328  $keys['$PAGETITLE'] = $this->title->getPrefixedText();
329  $keys['$PAGETITLE_URL'] = $this->title->getCanonicalURL();
330  $keys['$PAGEMINOREDIT'] = $this->minorEdit ?
331  "\n\n" . wfMessage( 'enotif_minoredit' )->inContentLanguage()->text() :
332  '';
333  $keys['$UNWATCHURL'] = $this->title->getCanonicalURL( 'action=unwatch' );
334 
335  if ( $this->editor->isAnon() ) {
336  # real anon (user:xxx.xxx.xxx.xxx)
337  $keys['$PAGEEDITOR'] = wfMessage( 'enotif_anon_editor', $this->editor->getName() )
338  ->inContentLanguage()->text();
339  $keys['$PAGEEDITOR_EMAIL'] = wfMessage( 'noemailtitle' )->inContentLanguage()->text();
340 
341  } else {
342  $keys['$PAGEEDITOR'] = $wgEnotifUseRealName && $this->editor->getRealName() !== ''
343  ? $this->editor->getRealName() : $this->editor->getName();
344  $emailPage = SpecialPage::getSafeTitleFor( 'Emailuser', $this->editor->getName() );
345  $keys['$PAGEEDITOR_EMAIL'] = $emailPage->getCanonicalURL();
346  }
347 
348  $keys['$PAGEEDITOR_WIKI'] = $this->editor->getUserPage()->getCanonicalURL();
349  $keys['$HELPPAGE'] = wfExpandUrl(
350  Skin::makeInternalOrExternalUrl( wfMessage( 'helppage' )->inContentLanguage()->text() )
351  );
352 
353  # Replace this after transforming the message, T37019
354  $postTransformKeys['$PAGESUMMARY'] = $this->summary == '' ? ' - ' : $this->summary;
355 
356  // Now build message's subject and body
357 
358  // Messages:
359  // enotif_subject_deleted, enotif_subject_created, enotif_subject_moved,
360  // enotif_subject_restored, enotif_subject_changed
361  $this->subject = wfMessage( 'enotif_subject_' . $this->pageStatus )->inContentLanguage()
362  ->params( $pageTitle, $keys['$PAGEEDITOR'] )->text();
363 
364  // Messages:
365  // enotif_body_intro_deleted, enotif_body_intro_created, enotif_body_intro_moved,
366  // enotif_body_intro_restored, enotif_body_intro_changed
367  $keys['$PAGEINTRO'] = wfMessage( 'enotif_body_intro_' . $this->pageStatus )
368  ->inContentLanguage()->params( $pageTitle, $keys['$PAGEEDITOR'], $pageTitleUrl )
369  ->text();
370 
371  $body = wfMessage( 'enotif_body' )->inContentLanguage()->plain();
372  $body = strtr( $body, $keys );
373  $body = MessageCache::singleton()->transform( $body, false, null, $this->title );
374  $this->body = wordwrap( strtr( $body, $postTransformKeys ), 72 );
375 
376  # Reveal the page editor's address as REPLY-TO address only if
377  # the user has not opted-out and the option is enabled at the
378  # global configuration level.
379  $adminAddress = new MailAddress( $wgPasswordSender,
380  wfMessage( 'emailsender' )->inContentLanguage()->text() );
382  && ( $this->editor->getEmail() != '' )
383  && $this->editor->getOption( 'enotifrevealaddr' )
384  ) {
385  $editorAddress = MailAddress::newFromUser( $this->editor );
386  if ( $wgEnotifFromEditor ) {
387  $this->from = $editorAddress;
388  } else {
389  $this->from = $adminAddress;
390  $this->replyto = $editorAddress;
391  }
392  } else {
393  $this->from = $adminAddress;
394  $this->replyto = new MailAddress( $wgNoReplyAddress );
395  }
396  }
397 
406  function compose( $user, $source ) {
407  global $wgEnotifImpersonal;
408 
409  if ( !$this->composed_common ) {
410  $this->composeCommonMailtext();
411  }
412 
413  if ( $wgEnotifImpersonal ) {
414  $this->mailTargets[] = MailAddress::newFromUser( $user );
415  } else {
416  $this->sendPersonalised( $user, $source );
417  }
418  }
419 
423  function sendMails() {
424  global $wgEnotifImpersonal;
425  if ( $wgEnotifImpersonal ) {
426  $this->sendImpersonal( $this->mailTargets );
427  }
428  }
429 
441  function sendPersonalised( $watchingUser, $source ) {
442  global $wgEnotifUseRealName;
443  // From the PHP manual:
444  // Note: The to parameter cannot be an address in the form of
445  // "Something <someone@example.com>". The mail command will not parse
446  // this properly while talking with the MTA.
447  $to = MailAddress::newFromUser( $watchingUser );
448 
449  # $PAGEEDITDATE is the time and date of the page change
450  # expressed in terms of individual local time of the notification
451  # recipient, i.e. watching user
452  $contLang = MediaWikiServices::getInstance()->getContentLanguage();
453  $body = str_replace(
454  [ '$WATCHINGUSERNAME',
455  '$PAGEEDITDATE',
456  '$PAGEEDITTIME' ],
457  [ $wgEnotifUseRealName && $watchingUser->getRealName() !== ''
458  ? $watchingUser->getRealName() : $watchingUser->getName(),
459  $contLang->userDate( $this->timestamp, $watchingUser ),
460  $contLang->userTime( $this->timestamp, $watchingUser ) ],
461  $this->body );
462 
463  $headers = [];
464  if ( $source === self::WATCHLIST ) {
465  $headers['List-Help'] = 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Watchlist';
466  }
467 
468  return UserMailer::send( $to, $this->from, $this->subject, $body, [
469  'replyTo' => $this->replyto,
470  'headers' => $headers,
471  ] );
472  }
473 
480  function sendImpersonal( $addresses ) {
481  if ( empty( $addresses ) ) {
482  return null;
483  }
484 
485  $contLang = MediaWikiServices::getInstance()->getContentLanguage();
486  $body = str_replace(
487  [ '$WATCHINGUSERNAME',
488  '$PAGEEDITDATE',
489  '$PAGEEDITTIME' ],
490  [ wfMessage( 'enotif_impersonal_salutation' )->inContentLanguage()->text(),
491  $contLang->date( $this->timestamp, false, false ),
492  $contLang->time( $this->timestamp, false, false ) ],
493  $this->body );
494 
495  return UserMailer::send( $addresses, $this->from, $this->subject, $body, [
496  'replyTo' => $this->replyto,
497  ] );
498  }
499 
500 }
EmailNotification\$summary
$summary
Definition: EmailNotification.php:64
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
EmailNotification\composeCommonMailtext
composeCommonMailtext()
Generate the generic "this page has been changed" e-mail text.
Definition: EmailNotification.php:288
User\getId
getId()
Get the user's ID.
Definition: User.php:2425
EmailNotification\compose
compose( $user, $source)
Compose a mail to a given user and either queue it for sending, or send it now, depending on settings...
Definition: EmailNotification.php:406
$wgEnotifMinorEdits
$wgEnotifMinorEdits
Potentially send notification mails on minor edits to pages.
Definition: DefaultSettings.php:1825
EmailNotification\WATCHLIST
const WATCHLIST
Notification is due to a watchlisted page being edited.
Definition: EmailNotification.php:57
EmailNotification\notifyOnPageChange
notifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit, $oldid=false, $pageStatus='changed')
Send emails corresponding to the user $editor editing the page $title.
Definition: EmailNotification.php:104
captcha-old.count
count
Definition: captcha-old.py:249
$wgUsersNotifiedOnAllChanges
$wgUsersNotifiedOnAllChanges
Array of usernames who will be sent a notification email for every change which occurs on a wiki.
Definition: DefaultSettings.php:1851
UserMailer\send
static send( $to, $from, $subject, $body, $options=[])
This function will perform a direct (authenticated) login to a SMTP Server to use for mail relaying i...
Definition: UserMailer.php:115
$wgEnotifFromEditor
bool $wgEnotifFromEditor
Allow sending of e-mail notifications with the editor's address as sender.
Definition: DefaultSettings.php:1767
EmailNotification\sendMails
sendMails()
Send any queued mails.
Definition: EmailNotification.php:423
$wgEnotifWatchlist
$wgEnotifWatchlist
Allow users to enable email notification ("enotif") on watchlist changes.
Definition: DefaultSettings.php:1785
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:585
EmailNotification\$body
$body
Definition: EmailNotification.php:63
EmailNotification\$replyto
$replyto
Definition: EmailNotification.php:63
MailAddress\newFromUser
static newFromUser(User $user)
Create a new MailAddress object for the given user.
Definition: MailAddress.php:66
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
SpecialPage\getSafeTitleFor
static getSafeTitleFor( $name, $subpage=false)
Get a localised Title object for a page name with a possibly unvalidated subpage.
Definition: SpecialPage.php:111
MailAddress
Stores a single person's name and email address.
Definition: MailAddress.php:32
$wgEnotifUseRealName
$wgEnotifUseRealName
Use real name instead of username in e-mail "from" field.
Definition: DefaultSettings.php:1845
$wgNoReplyAddress
$wgNoReplyAddress
Reply-To address for e-mail notifications.
Definition: DefaultSettings.php:1665
MWException
MediaWiki exception.
Definition: MWException.php:26
Title\getNamespace
getNamespace()
Get the namespace index, i.e.
Definition: Title.php:994
EmailNotification\$oldid
$oldid
Definition: EmailNotification.php:64
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
EmailNotification\$minorEdit
$minorEdit
Definition: EmailNotification.php:64
UserArray\newFromIDs
static newFromIDs( $ids)
Definition: UserArray.php:45
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:949
MessageCache\singleton
static singleton()
Get the signleton instance of this class.
Definition: MessageCache.php:114
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
$wgEnotifUserTalk
$wgEnotifUserTalk
Allow users to enable email notification ("enotif") when someone edits their user talk page.
Definition: DefaultSettings.php:1794
EmailNotification\$timestamp
$timestamp
Definition: EmailNotification.php:64
NS_USER_TALK
const NS_USER_TALK
Definition: Defines.php:67
EmailNotification\actuallyNotifyOnPageChange
actuallyNotifyOnPageChange( $editor, $title, $timestamp, $summary, $minorEdit, $oldid, $watchers, $pageStatus='changed')
Immediate version of notifyOnPageChange().
Definition: EmailNotification.php:176
EmailNotification\sendPersonalised
sendPersonalised( $watchingUser, $source)
Does the per-user customizations to a notification e-mail (name, timestamp in proper timezone,...
Definition: EmailNotification.php:441
title
title
Definition: parserTests.txt:245
$wgEnotifRevealEditorAddress
bool $wgEnotifRevealEditorAddress
Allow sending of e-mail notifications with the editor's address in "Reply-To".
Definition: DefaultSettings.php:1810
$wgBlockDisablesLogin
$wgBlockDisablesLogin
If true, blocked users will not be allowed to login.
Definition: DefaultSettings.php:5009
RequestContext\getMain
static getMain()
Get the RequestContext object associated with the main request.
Definition: RequestContext.php:430
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
Title
Represents a title within MediaWiki.
Definition: Title.php:40
EmailNotification\canSendUserTalkEmail
canSendUserTalkEmail( $editor, $title, $minorEdit)
Definition: EmailNotification.php:254
JobQueueGroup\singleton
static singleton( $domain=false)
Definition: JobQueueGroup.php:70
EmailNotification\USER_TALK
const USER_TALK
Notification is due to user's user talk being edited.
Definition: EmailNotification.php:53
EmailNotification\$mailTargets
$mailTargets
Definition: EmailNotification.php:65
EmailNotification\sendImpersonal
sendImpersonal( $addresses)
Same as sendPersonalised but does impersonal mail suitable for bulk mailing.
Definition: EmailNotification.php:480
EmailNotification\getPageStatus
getPageStatus()
Extensions that have hooks for UpdateUserMailerFormattedPageStatus (to provide additional pageStatus ...
Definition: EmailNotification.php:87
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
from
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable from
Definition: APACHE-LICENSE-2.0.txt:43
EmailNotification\$title
Title $title
Definition: EmailNotification.php:70
$keys
$keys
Definition: testCompression.php:67
$source
$source
Definition: mwdoc-filter.php:46
$wgEnotifImpersonal
$wgEnotifImpersonal
Send a generic mail instead of a personalised mail for each user.
Definition: DefaultSettings.php:1834
EmailNotification\$editor
User $editor
Definition: EmailNotification.php:75
EmailNotification
This module processes the email notifications when the current page is changed.
Definition: EmailNotification.php:48
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
EmailNotification\$subject
$subject
Definition: EmailNotification.php:63
wfMessage
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 set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
$wgPasswordSender
$wgPasswordSender
Sender email address for e-mail notifications.
Definition: DefaultSettings.php:1658
EmailNotification\$composed_common
$composed_common
Definition: EmailNotification.php:64
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:48
EmailNotification\ALL_CHANGES
const ALL_CHANGES
Notification because user is notified for all changes.
Definition: EmailNotification.php:61
EnotifNotifyJob
Job for email notification mails.
Definition: EnotifNotifyJob.php:29
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
User\getName
getName()
Get the user name, or the IP of an anonymous user.
Definition: User.php:2452
EmailNotification\$pageStatus
$pageStatus
Definition: EmailNotification.php:64
Title\getText
getText()
Get the text form (spaces not underscores) of the main part.
Definition: Title.php:952
EmailNotification\$from
$from
Definition: EmailNotification.php:63
Skin\makeInternalOrExternalUrl
static makeInternalOrExternalUrl( $name)
If url string starts with http, consider as external URL, else internal.
Definition: Skin.php:1192
wfExpandUrl
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
Definition: GlobalFunctions.php:515
User\isAllowed
isAllowed( $action='')
Internal mechanics of testing a permission.
Definition: User.php:3859