add phpmailer class to CONTENIDO autoloader
Dieser Commit ist enthalten in:
Ursprung
9838e73235
Commit
3424b2acfe
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
|
@ -8,4 +8,9 @@ $pluginName = basename(dirname(__DIR__, 1));
|
|||
$cfg['plugins'][$pluginName] = cRegistry::getBackendPath() . $cfg['path']['plugins'] . "$pluginName/";
|
||||
|
||||
plugin_include($pluginName, 'vendor/autoload.php');
|
||||
plugin_include($pluginName, 'classes/PHPMailer.php');
|
||||
|
||||
$pluginClassesPath = cRegistry::getBackendPath(true) . cRegistry::getConfigValue('path', 'plugins') . "$pluginName/classes" . DIRECTORY_SEPARATOR;
|
||||
|
||||
cAutoload::addClassmapConfig([
|
||||
'PHPMailer' => $pluginClassesPath . 'PHPMailer.php'
|
||||
]);
|
Laden …
In neuem Issue referenzieren