| Total Complexity | 85 |
| Total Lines | 614 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like XoopsMailer often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use XoopsMailer, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 36 | class XoopsMailer |
||
| 37 | { |
||
| 38 | /** |
||
| 39 | * reference to a {@link XoopsMultiMailer} |
||
| 40 | * |
||
| 41 | * @var XoopsMultiMailer |
||
| 42 | * @access protected |
||
| 43 | * @since 21.02.2003 14:14:13 |
||
| 44 | */ |
||
| 45 | protected $multimailer; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * sender email address |
||
| 49 | * |
||
| 50 | * @var string |
||
| 51 | */ |
||
| 52 | private $fromEmail; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * sender name |
||
| 56 | * |
||
| 57 | * @var string |
||
| 58 | */ |
||
| 59 | private $fromName; |
||
| 60 | |||
| 61 | /** |
||
| 62 | * sender UID |
||
| 63 | * |
||
| 64 | * @var XoopsUser |
||
| 65 | */ |
||
| 66 | private $fromUser; |
||
| 67 | |||
| 68 | /** |
||
| 69 | * array of user class objects |
||
| 70 | * |
||
| 71 | * @var array |
||
| 72 | */ |
||
| 73 | private $toUsers; |
||
| 74 | |||
| 75 | /** |
||
| 76 | * array of email addresses |
||
| 77 | * |
||
| 78 | * @var array |
||
| 79 | */ |
||
| 80 | private $toEmails; |
||
| 81 | |||
| 82 | // private |
||
| 83 | /** |
||
| 84 | * custom headers |
||
| 85 | * |
||
| 86 | * @var array |
||
| 87 | */ |
||
| 88 | private $headers; |
||
| 89 | |||
| 90 | /** |
||
| 91 | * subjet of mail |
||
| 92 | * |
||
| 93 | * @var string |
||
| 94 | */ |
||
| 95 | private $subject; |
||
| 96 | |||
| 97 | /** |
||
| 98 | * body of mail |
||
| 99 | * |
||
| 100 | * @var string |
||
| 101 | */ |
||
| 102 | private $body; |
||
| 103 | |||
| 104 | /** |
||
| 105 | * error messages |
||
| 106 | * |
||
| 107 | * @var array |
||
| 108 | */ |
||
| 109 | private $errors; |
||
| 110 | |||
| 111 | /** |
||
| 112 | * messages upon success |
||
| 113 | * |
||
| 114 | * @var array |
||
| 115 | */ |
||
| 116 | private $success; |
||
| 117 | |||
| 118 | /** |
||
| 119 | * @var bool |
||
| 120 | */ |
||
| 121 | private $isMail; |
||
| 122 | |||
| 123 | /** |
||
| 124 | * @var bool |
||
| 125 | */ |
||
| 126 | private $isPM; |
||
| 127 | |||
| 128 | /** |
||
| 129 | * @var array |
||
| 130 | */ |
||
| 131 | private $assignedTags; |
||
| 132 | |||
| 133 | /** |
||
| 134 | * @var string |
||
| 135 | */ |
||
| 136 | private $template; |
||
| 137 | |||
| 138 | /** |
||
| 139 | * @var string |
||
| 140 | */ |
||
| 141 | private $templatedir; |
||
| 142 | |||
| 143 | /** |
||
| 144 | * @var string |
||
| 145 | */ |
||
| 146 | protected $charSet = 'iso-8859-1'; |
||
| 147 | |||
| 148 | /** |
||
| 149 | * @var string |
||
| 150 | */ |
||
| 151 | protected $encoding = '8bit'; |
||
| 152 | |||
| 153 | /** |
||
| 154 | * @var string |
||
| 155 | */ |
||
| 156 | private $priority; |
||
| 157 | |||
| 158 | /** |
||
| 159 | * @var string |
||
| 160 | */ |
||
| 161 | private $LE; |
||
| 162 | |||
| 163 | /** |
||
| 164 | * Constructor |
||
| 165 | * |
||
| 166 | * @return XoopsMailer |
||
| 167 | */ |
||
| 168 | public function __construct() |
||
| 169 | { |
||
| 170 | $this->multimailer = new XoopsMultiMailer(); |
||
| 171 | $this->reset(); |
||
| 172 | } |
||
| 173 | |||
| 174 | /** |
||
| 175 | * reset all properties to default |
||
| 176 | * |
||
| 177 | * @param bool $value |
||
| 178 | * @return void |
||
| 179 | */ |
||
| 180 | public function setHTML($value = true) |
||
| 181 | { |
||
| 182 | $this->multimailer->isHTML($value); |
||
| 183 | } |
||
| 184 | |||
| 185 | /** |
||
| 186 | * reset all properties to default |
||
| 187 | * |
||
| 188 | * @return void |
||
| 189 | */ |
||
| 190 | public function reset() |
||
| 191 | { |
||
| 192 | $this->fromEmail = ""; |
||
| 193 | $this->fromName = ""; |
||
| 194 | $this->fromUser = null; // RMV-NOTIFY |
||
| 195 | $this->priority = ''; |
||
| 196 | $this->toUsers = array(); |
||
| 197 | $this->toEmails = array(); |
||
| 198 | $this->headers = array(); |
||
| 199 | $this->subject = ""; |
||
| 200 | $this->body = ""; |
||
| 201 | $this->errors = array(); |
||
| 202 | $this->success = array(); |
||
| 203 | $this->isMail = false; |
||
| 204 | $this->isPM = false; |
||
| 205 | $this->assignedTags = array(); |
||
| 206 | $this->template = ""; |
||
| 207 | $this->templatedir = ""; |
||
| 208 | // Change below to \r\n if you have problem sending mail |
||
| 209 | $this->LE = "\n"; |
||
| 210 | } |
||
| 211 | |||
| 212 | /** |
||
| 213 | * @param string $value |
||
| 214 | * @return void |
||
| 215 | */ |
||
| 216 | public function setTemplateDir($value = null) |
||
| 217 | { |
||
| 218 | $xoops = Xoops::getInstance(); |
||
| 219 | if ($value === null && $xoops->isModule()) { |
||
| 220 | $value = $xoops->module->getVar('dirname', 'n'); |
||
| 221 | } else { |
||
| 222 | $value = str_replace(DIRECTORY_SEPARATOR, "/", $value); |
||
| 223 | } |
||
| 224 | $this->templatedir = $value; |
||
| 225 | } |
||
| 226 | |||
| 227 | /** |
||
| 228 | * @return bool|string |
||
| 229 | */ |
||
| 230 | private function getTemplatePath() |
||
| 231 | { |
||
| 232 | $xoops = Xoops::getInstance(); |
||
| 233 | if (!$path = $this->templatedir) { |
||
| 234 | $path = \XoopsBaseConfig::get('root-path') . "/locale/"; |
||
| 235 | } elseif (false === strpos($path, '/')) { |
||
| 236 | $path = \XoopsBaseConfig::get('root-path') . "/modules/" . $path . "/locale/"; |
||
| 237 | } elseif (substr($path, -1, 1) !== "/") { |
||
| 238 | $path .= "/"; |
||
| 239 | } |
||
| 240 | if (XoopsLoad::fileExists($path . $xoops->getConfig('locale') . "/templates/" . $this->template)) { |
||
| 241 | return $path . $xoops->getConfig('locale') . "/templates/" . $this->template; |
||
| 242 | } elseif (XoopsLoad::fileExists($path . "en_US/templates/" . $this->template)) { |
||
| 243 | return $path . "en_US/templates/" . $this->template; |
||
| 244 | } elseif (XoopsLoad::fileExists($path . $this->template)) { |
||
| 245 | return $path . $this->template; |
||
| 246 | } else { |
||
| 247 | return false; |
||
| 248 | } |
||
| 249 | } |
||
| 250 | |||
| 251 | /** |
||
| 252 | * @param string $value |
||
| 253 | * @return void |
||
| 254 | */ |
||
| 255 | public function setTemplate($value) |
||
| 256 | { |
||
| 257 | $this->template = $value; |
||
| 258 | } |
||
| 259 | |||
| 260 | /** |
||
| 261 | * @param string $value |
||
| 262 | * @return void |
||
| 263 | */ |
||
| 264 | public function setFromEmail($value) |
||
| 265 | { |
||
| 266 | $this->fromEmail = trim($value); |
||
| 267 | } |
||
| 268 | |||
| 269 | /** |
||
| 270 | * @param string $value |
||
| 271 | * @return void |
||
| 272 | */ |
||
| 273 | public function setFromName($value) |
||
| 274 | { |
||
| 275 | $this->fromName = trim($value); |
||
| 276 | } |
||
| 277 | |||
| 278 | /** |
||
| 279 | * @param XoopsUser $user |
||
| 280 | * @return void |
||
| 281 | */ |
||
| 282 | public function setFromUser(XoopsUser $user) |
||
| 283 | { |
||
| 284 | $this->fromUser = $user; |
||
| 285 | } |
||
| 286 | |||
| 287 | /** |
||
| 288 | * @param string $value |
||
| 289 | * @return void |
||
| 290 | */ |
||
| 291 | public function setPriority($value) |
||
| 292 | { |
||
| 293 | $this->priority = trim($value); |
||
| 294 | } |
||
| 295 | |||
| 296 | /** |
||
| 297 | * @param string $value |
||
| 298 | * @return void |
||
| 299 | */ |
||
| 300 | public function setSubject($value) |
||
| 301 | { |
||
| 302 | $this->subject = trim($value); |
||
| 303 | } |
||
| 304 | |||
| 305 | /** |
||
| 306 | * @param string $value |
||
| 307 | * @return void |
||
| 308 | */ |
||
| 309 | public function setBody($value) |
||
| 312 | } |
||
| 313 | |||
| 314 | /** |
||
| 315 | * @return void |
||
| 316 | */ |
||
| 317 | public function useMail() |
||
| 318 | { |
||
| 319 | $this->isMail = true; |
||
| 320 | } |
||
| 321 | |||
| 322 | /** |
||
| 323 | * @return void |
||
| 324 | */ |
||
| 325 | public function usePM() |
||
| 326 | { |
||
| 327 | $this->isPM = true; |
||
| 328 | } |
||
| 329 | |||
| 330 | /** |
||
| 331 | * @param bool $debug |
||
| 332 | * @return bool |
||
| 333 | */ |
||
| 334 | public function send($debug = false) |
||
| 335 | { |
||
| 336 | $xoops = Xoops::getInstance(); |
||
| 337 | if ($this->body == "" && $this->template == "") { |
||
| 338 | if ($debug) { |
||
| 339 | $this->errors[] = XoopsLocale::E_MESSAGE_BODY_NOT_SET; |
||
| 340 | } |
||
| 341 | return false; |
||
| 342 | } elseif ($this->template != "") { |
||
| 343 | $path = $this->getTemplatePath(); |
||
| 344 | if (!($fd = @fopen($path, 'r'))) { |
||
| 345 | if ($debug) { |
||
| 346 | $this->errors[] = XoopsLocale::E_TEMPLATE_FILE_NOT_OPENED; |
||
| 347 | } |
||
| 348 | return false; |
||
| 349 | } |
||
| 350 | $this->setBody(fread($fd, filesize($path))); |
||
| 351 | } |
||
| 352 | $headers = ''; |
||
| 353 | // for sending mail only |
||
| 354 | if ($this->isMail || !empty($this->toEmails)) { |
||
| 355 | if (!empty($this->priority)) { |
||
| 356 | $this->headers[] = "X-Priority: " . $this->priority; |
||
| 357 | } |
||
| 358 | // $this->headers[] = "X-Mailer: PHP/".phpversion(); |
||
| 359 | // $this->headers[] = "Return-Path: ".$this->fromEmail; |
||
| 360 | $headers = join($this->LE, $this->headers); |
||
| 361 | } |
||
| 362 | // TODO: we should have an option of no-reply for private messages and emails |
||
| 363 | // to which we do not accept replies. e.g. the site admin doesn't want a |
||
| 364 | // a lot of message from people trying to unsubscribe. Just make sure to |
||
| 365 | // give good instructions in the message. |
||
| 366 | // add some standard tags (user-dependent tags are included later) |
||
| 367 | |||
| 368 | $this->assign('X_ADMINMAIL', $xoops->getConfig('adminmail')); |
||
| 369 | $this->assign('X_SITENAME', $xoops->getConfig('sitename')); |
||
| 370 | $this->assign('X_SITEURL', \XoopsBaseConfig::get('url') . "/"); |
||
| 371 | // TODO: also X_ADMINNAME?? |
||
| 372 | // TODO: X_SIGNATURE, X_DISCLAIMER ?? - these are probably best |
||
| 373 | // done as includes if mail templates ever get this sophisticated |
||
| 374 | // replace tags with actual values |
||
| 375 | foreach ($this->assignedTags as $k => $v) { |
||
| 376 | $this->body = str_replace("{" . $k . "}", $v, $this->body); |
||
| 377 | $this->subject = str_replace("{" . $k . "}", $v, $this->subject); |
||
| 378 | } |
||
| 379 | $this->body = str_replace("\r\n", "\n", $this->body); |
||
| 380 | $this->body = str_replace("\r", "\n", $this->body); |
||
| 381 | $this->body = str_replace("\n", $this->LE, $this->body); |
||
| 382 | // send mail to specified mail addresses, if any |
||
| 383 | foreach ($this->toEmails as $mailaddr) { |
||
| 384 | if (!$this->sendMail($mailaddr, $this->subject, $this->body, $headers)) { |
||
| 385 | if ($debug) { |
||
| 386 | $this->errors[] = sprintf(XoopsLocale::EF_EMAIL_NOT_SENT_TO, $mailaddr); |
||
| 387 | } |
||
| 388 | } else { |
||
| 389 | if ($debug) { |
||
| 390 | $this->success[] = sprintf(XoopsLocale::SF_EMAIL_SENT_TO, $mailaddr); |
||
| 391 | } |
||
| 392 | } |
||
| 393 | } |
||
| 394 | // send message to specified users, if any |
||
| 395 | // NOTE: we don't send to LIST of recipients, because the tags |
||
| 396 | // below are dependent on the user identity; i.e. each user |
||
| 397 | // receives (potentially) a different message |
||
| 398 | foreach ($this->toUsers as $user) { |
||
| 399 | /* @var $user XoopsUser */ |
||
| 400 | // set some user specific variables |
||
| 401 | $subject = str_replace("{X_UNAME}", $user->getVar("uname"), $this->subject); |
||
| 402 | $text = str_replace("{X_UID}", $user->getVar("uid"), $this->body); |
||
| 403 | $text = str_replace("{X_UEMAIL}", $user->getVar("email"), $text); |
||
| 404 | $text = str_replace("{X_UNAME}", $user->getVar("uname"), $text); |
||
| 405 | $text = str_replace("{X_UACTLINK}", \XoopsBaseConfig::get('url') . "/register.php?op=actv&id=" . $user->getVar("uid") . "&actkey=" . $user->getVar('actkey'), $text); |
||
| 406 | // send mail |
||
| 407 | if ($this->isMail) { |
||
| 408 | if (!$this->sendMail($user->getVar("email"), $subject, $text, $headers)) { |
||
| 409 | if ($debug) { |
||
| 410 | $this->errors[] = sprintf(XoopsLocale::EF_EMAIL_NOT_SENT_TO, $user->getVar("uname")); |
||
| 411 | } |
||
| 412 | } else { |
||
| 413 | if ($debug) { |
||
| 414 | $this->success[] = sprintf(XoopsLocale::SF_EMAIL_SENT_TO, $user->getVar("uname")); |
||
| 415 | } |
||
| 416 | } |
||
| 417 | } |
||
| 418 | // send private message |
||
| 419 | if ($this->isPM) { |
||
| 420 | if (!$this->sendPM($user->getVar("uid"), $subject, $text)) { |
||
| 421 | if ($debug) { |
||
| 422 | $this->errors[] = sprintf(XoopsLocale::EF_PRIVATE_MESSAGE_NOT_SENT_TO, $user->getVar("uname")); |
||
| 423 | } |
||
| 424 | } else { |
||
| 425 | if ($debug) { |
||
| 426 | $this->success[] = sprintf(XoopsLocale::SF_PRIVATE_MESSAGE_SENT_TO, $user->getVar("uname")); |
||
| 427 | } |
||
| 428 | } |
||
| 429 | } |
||
| 430 | flush(); |
||
| 431 | } |
||
| 432 | if (count($this->errors) > 0) { |
||
| 433 | return false; |
||
| 434 | } |
||
| 435 | return true; |
||
| 436 | } |
||
| 437 | |||
| 438 | /** |
||
| 439 | * @param int $uid |
||
| 440 | * @param string $subject |
||
| 441 | * @param string $body |
||
| 442 | * @return bool |
||
| 443 | */ |
||
| 444 | private function sendPM($uid, $subject, $body) |
||
| 445 | { |
||
| 446 | $xoops = Xoops::getInstance(); |
||
| 447 | $pm_handler = $xoops->getHandlerPrivateMessage(); |
||
| 448 | $pm = $pm_handler->create(); |
||
| 449 | $pm->setVar("subject", $subject); |
||
| 450 | // RMV-NOTIFY |
||
| 451 | $pm->setVar('from_userid', !empty($this->fromUser) ? $this->fromUser->getVar('uid') : (!$xoops->isUser() ? 1 |
||
| 452 | : $xoops->user->getVar('uid'))); |
||
| 453 | $pm->setVar("msg_text", $body); |
||
| 454 | $pm->setVar("to_userid", $uid); |
||
| 455 | $pm->setVar('msg_time', time()); |
||
| 456 | if (!$pm_handler->insert($pm)) { |
||
| 457 | return false; |
||
| 458 | } |
||
| 459 | return true; |
||
| 460 | } |
||
| 461 | |||
| 462 | /** |
||
| 463 | * Send email |
||
| 464 | * |
||
| 465 | * Uses the new XoopsMultiMailer |
||
| 466 | * |
||
| 467 | * @param string $email |
||
| 468 | * @param string $subject |
||
| 469 | * @param string $body |
||
| 470 | * @param array $headers |
||
| 471 | * @return bool |
||
| 472 | */ |
||
| 473 | private function sendMail($email, $subject, $body, $headers) |
||
| 474 | { |
||
| 475 | $subject = $this->encodeSubject($subject); |
||
| 476 | $this->encodeBody($body); |
||
| 477 | $this->multimailer->ClearAllRecipients(); |
||
| 478 | $this->multimailer->AddAddress($email); |
||
| 479 | $this->multimailer->Subject = $subject; |
||
| 480 | $this->multimailer->Body = $body; |
||
| 481 | $this->multimailer->CharSet = $this->charSet; |
||
| 482 | $this->multimailer->Encoding = $this->encoding; |
||
| 483 | if (!empty($this->fromName)) { |
||
| 484 | $this->multimailer->FromName = $this->encodeFromName($this->fromName); |
||
| 485 | } |
||
| 486 | if (!empty($this->fromEmail)) { |
||
| 487 | $this->multimailer->Sender = $this->multimailer->From = $this->fromEmail; |
||
| 488 | } |
||
| 489 | |||
| 490 | $this->multimailer->ClearCustomHeaders(); |
||
| 491 | foreach ($this->headers as $header) { |
||
| 492 | $this->multimailer->AddCustomHeader($header); |
||
| 493 | } |
||
| 494 | if (!$this->multimailer->Send()) { |
||
| 495 | $this->errors[] = $this->multimailer->ErrorInfo; |
||
| 496 | return false; |
||
| 497 | } |
||
| 498 | return true; |
||
| 499 | } |
||
| 500 | |||
| 501 | /** |
||
| 502 | * @param bool $ashtml |
||
| 503 | * @return string |
||
| 504 | */ |
||
| 505 | public function getErrors($ashtml = true) |
||
| 506 | { |
||
| 507 | if (!$ashtml) { |
||
| 508 | return $this->errors; |
||
| 509 | } else { |
||
| 510 | $ret = ""; |
||
| 511 | if (!empty($this->errors)) { |
||
| 512 | $ret = "<h4>" . XoopsLocale::ERRORS . "</h4>"; |
||
| 513 | foreach ($this->errors as $error) { |
||
| 514 | $ret .= $error . "<br />"; |
||
| 515 | } |
||
| 516 | } |
||
| 517 | return $ret; |
||
| 518 | } |
||
| 519 | } |
||
| 520 | |||
| 521 | // public |
||
| 522 | function getSuccess($ashtml = true) |
||
| 523 | { |
||
| 524 | if (!$ashtml) { |
||
| 525 | return $this->success; |
||
| 526 | } else { |
||
| 527 | $ret = ""; |
||
| 528 | if (!empty($this->success)) { |
||
| 529 | foreach ($this->success as $suc) { |
||
| 530 | $ret .= $suc . "<br />"; |
||
| 531 | } |
||
| 532 | } |
||
| 533 | return $ret; |
||
| 534 | } |
||
| 535 | } |
||
| 536 | |||
| 537 | /** |
||
| 538 | * @param string|array $tag |
||
| 539 | * @param null $value |
||
| 540 | * @return void |
||
| 541 | */ |
||
| 542 | public function assign($tag, $value = null) |
||
| 543 | { |
||
| 544 | if (is_array($tag)) { |
||
| 545 | foreach ($tag as $k => $v) { |
||
| 546 | $this->assign($k, $v); |
||
| 547 | } |
||
| 548 | } else { |
||
| 549 | if (!empty($tag) && isset($value)) { |
||
| 550 | $tag = strtoupper(trim($tag)); |
||
| 551 | // RMV-NOTIFY |
||
| 552 | // TEMPORARY FIXME: until the X_tags are all in here |
||
| 553 | // if ( substr($tag, 0, 2) != "X_" ) { |
||
| 554 | $this->assignedTags[$tag] = $value; |
||
| 555 | // } |
||
| 556 | } |
||
| 557 | } |
||
| 558 | } |
||
| 559 | |||
| 560 | /** |
||
| 561 | * @param string $value |
||
| 562 | * @return void |
||
| 563 | */ |
||
| 564 | public function addHeaders($value) |
||
| 565 | { |
||
| 566 | $this->headers[] = trim($value) . $this->LE; |
||
| 567 | } |
||
| 568 | |||
| 569 | /** |
||
| 570 | * @param $email |
||
| 571 | * @return void |
||
| 572 | */ |
||
| 573 | public function setToEmails($email) |
||
| 574 | { |
||
| 575 | if (!is_array($email)) { |
||
| 576 | $xoops = Xoops::getInstance(); |
||
| 577 | if ($xoops->checkEmail($email)) { |
||
| 578 | array_push($this->toEmails, $email); |
||
| 579 | } |
||
| 580 | } else { |
||
| 581 | foreach ($email as $e) { |
||
| 582 | $this->setToEmails($e); |
||
| 583 | } |
||
| 584 | } |
||
| 585 | } |
||
| 586 | |||
| 587 | /** |
||
| 588 | * @param XoopsUser|array $user |
||
| 589 | * @return void |
||
| 590 | */ |
||
| 591 | public function setToUsers($users) |
||
| 592 | { |
||
| 593 | if ($users instanceof XoopsUser) { |
||
| 594 | array_push($this->toUsers, $users); |
||
| 595 | } elseif (is_array($users)) { |
||
| 596 | foreach ($users as $u) { |
||
| 597 | $this->setToUsers($u); |
||
| 598 | } |
||
| 599 | } |
||
| 600 | } |
||
| 601 | |||
| 602 | /** |
||
| 603 | * @param XoopsGroup $group |
||
| 604 | * @return void |
||
| 605 | */ |
||
| 606 | public function setToGroups($groups) |
||
| 607 | { |
||
| 608 | if ($groups instanceof XoopsGroup) { |
||
| 609 | $this->setToUsers(Xoops::getInstance() |
||
| 610 | ->getHandlerMember() |
||
| 611 | ->getUsersByGroup($groups->getVar('groupid'), true)); |
||
| 612 | |||
| 613 | } elseif (is_array($groups)) { |
||
| 614 | foreach ($groups as $g) { |
||
| 615 | $this->setToGroups($g); |
||
| 616 | } |
||
| 617 | } |
||
| 618 | } |
||
| 619 | |||
| 620 | /** |
||
| 621 | * abstract, to be overridden by lang specific mail class, if needed |
||
| 622 | * |
||
| 623 | * @param $text |
||
| 624 | * @return |
||
| 625 | */ |
||
| 626 | public function encodeFromName($text) |
||
| 627 | { |
||
| 628 | return $text; |
||
| 629 | } |
||
| 630 | |||
| 631 | /** |
||
| 632 | * abstract, to be overridden by lang specific mail class, if needed |
||
| 633 | * |
||
| 634 | * @param string $text |
||
| 635 | * @return string |
||
| 636 | */ |
||
| 637 | public function encodeSubject($text) |
||
| 638 | { |
||
| 639 | return $text; |
||
| 640 | } |
||
| 641 | |||
| 642 | /** |
||
| 643 | * abstract, to be overridden by lang specific mail class, if needed |
||
| 644 | * |
||
| 645 | * @param string $text |
||
| 646 | * @return void |
||
| 647 | */ |
||
| 648 | public function encodeBody(&$text) |
||
| 650 | } |
||
| 651 | } |
||
| 652 |
Let?s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let?s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: