| Server IP : 157.230.181.24 / Your IP : 216.73.217.11 Web Server : Apache/2.4.58 (Ubuntu) System : Linux conductive 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/vhosts/maxons/public/modules/swiftmailer/ |
Upload File : |
<?php
/**
* Implements hook_requirements().
*/
function swiftmailer_requirements($phase) {
$requirements = [];
if ($phase == 'install') {
// if (!class_exists('Swift_Mailer')) {
if (!class_exists('SWIFTMailSystem')) {
$requirements['swiftmailer_library'] = [
'description' => t('Swift Mailer requires the external Swift Mailer library. The recommended way of solving this dependency is using the <a href=":url">Composer Manager</a> module.', [':url' => 'https://www.drupal.org/project/composer_manager']),
'severity' => REQUIREMENT_ERROR,
];
}
}
return $requirements;
}
/**
* Implements hook_install().
*/
function swiftmailer_install() {
$settings = Drupal::configFactory()->getEditable('mailsystem.settings');
$settings->set('modules.swiftmailer.none', [
'formatter' => 'swiftmailer',
'sender' => 'swiftmailer'
])->save();
}