File manager - Edit - /home/xfekoga/rooftopcleaners/wp-content/plugins/fluent-smtp/app/Services/Mailer/Providers/Smtp/ValidatorTrait.php
Back
<?php namespace FluentMail\App\Services\Mailer\Providers\Smtp; use FluentMail\Includes\Support\Arr; use FluentMail\App\Services\Mailer\ValidatorTrait as BaseValidatorTrait; trait ValidatorTrait { use BaseValidatorTrait; public function validateProviderInformation($connection) { $errors = []; $keyStoreType = Arr::get($connection, 'key_store', 'db'); if (!Arr::get($connection, 'host')) { $errors['host']['required'] = __('SMTP host is required.', 'fluent-smtp'); } if (!Arr::get($connection, 'port')) { $errors['port']['required'] = __('SMTP port is required.', 'fluent-smtp'); } if (Arr::get($connection, 'auth') == 'yes') { if ($keyStoreType == 'wp_config') { if (!defined('FLUENTMAIL_SMTP_USERNAME') || !FLUENTMAIL_SMTP_USERNAME) { $errors['username']['required'] = __('Please define FLUENTMAIL_SMTP_USERNAME in wp-config.php file.', 'fluent-smtp'); } if (!defined('FLUENTMAIL_SMTP_PASSWORD') || !FLUENTMAIL_SMTP_PASSWORD) { $errors['password']['required'] = __('Please define FLUENTMAIL_SMTP_PASSWORD in wp-config.php file.', 'fluent-smtp'); } } else { if (!Arr::get($connection, 'username')) { $errors['username']['required'] = __('SMTP username is required.', 'fluent-smtp'); } if (!Arr::get($connection, 'password')) { $errors['password']['required'] = __('SMTP password is required.', 'fluent-smtp'); } } } if ($errors) { $this->throwValidationException($errors); } } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings