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