MediaWiki  1.33.0
MailAddress.php
Go to the documentation of this file.
1 <?php
32 class MailAddress {
36  public $name;
37 
41  public $realName;
42 
46  public $address;
47 
53  public function __construct( $address, $name = null, $realName = null ) {
54  $this->address = strval( $address );
55  $this->name = strval( $name );
56  $this->realName = strval( $realName );
57  }
58 
66  public static function newFromUser( User $user ) {
67  return new MailAddress( $user->getEmail(), $user->getName(), $user->getRealName() );
68  }
69 
74  function toString() {
75  if ( !$this->address ) {
76  return '';
77  }
78 
79  # PHP's mail() implementation under Windows is somewhat shite, and
80  # can't handle "Joe Bloggs <joe@bloggs.com>" format email addresses,
81  # so don't bother generating them
82  if ( $this->name === '' || wfIsWindows() ) {
83  return $this->address;
84  }
85 
86  global $wgEnotifUseRealName;
87  $name = ( $wgEnotifUseRealName && $this->realName !== '' ) ? $this->realName : $this->name;
89  // Must only be quoted if string does not use =? encoding (T191931)
90  if ( $quoted === $name ) {
91  $quoted = '"' . addslashes( $quoted ) . '"';
92  }
93 
94  return "$quoted <{$this->address}>";
95  }
96 
97  function __toString() {
98  return $this->toString();
99  }
100 }
MailAddress\$name
string $name
Definition: MailAddress.php:36
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
UserMailer\quotedPrintable
static quotedPrintable( $string, $charset='')
Converts a string into quoted-printable format.
Definition: UserMailer.php:507
MailAddress\$realName
string $realName
Definition: MailAddress.php:41
MailAddress\toString
toString()
Return formatted and quoted address to insert into SMTP headers.
Definition: MailAddress.php:74
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
MailAddress
Stores a single person's name and email address.
Definition: MailAddress.php:32
name
and how to run hooks for an and one after Each event has a name
Definition: hooks.txt:6
$wgEnotifUseRealName
$wgEnotifUseRealName
Use real name instead of username in e-mail "from" field.
Definition: DefaultSettings.php:1845
MailAddress\__construct
__construct( $address, $name=null, $realName=null)
Definition: MailAddress.php:53
wfIsWindows
wfIsWindows()
Check if the operating system is Windows.
Definition: GlobalFunctions.php:1951
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:48
MailAddress\$address
string $address
Definition: MailAddress.php:46
MailAddress\__toString
__toString()
Definition: MailAddress.php:97