PHPMailer\PHPMailer
PHPMailer::getTranslations()
Get the array of strings for the current language.
Метод класса: PHPMailer{}
Хуков нет.
Возвращает
Массив
.
Использование
$PHPMailer = new PHPMailer(); $PHPMailer->getTranslations();
Код PHPMailer::getTranslations() PHPMailer::getTranslations WP 6.6.2
public function getTranslations() { if (empty($this->language)) { $this->setLanguage(); // Set the default language. } return $this->language; }