PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
app
/
vendor
/
akeeba
/
s3
/
src
<?php /** * Akeeba Engine * * @package akeebaengine * @copyright Copyright (c)2006-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ /** * Automatic aliasing of the old namespace to the new, as you use each old class. */ spl_autoload_register( static function (string $className) { $oldNS = 'Akeeba\Engine\Postproc\Connector\S3v4'; $newNS = 'Akeeba\S3'; $className = trim($className, '\\'); if (strpos($className, $oldNS) !== 0) { return false; } $newClassName = $newNS . '\\' . trim(substr($className, strlen($oldNS)), '\\'); if (class_exists($newClassName, true)) { class_alias($newClassName, $className, false); } return true; } );
[+]
..
[+]
Signature
[-] Input.php
[edit]
[+]
Exception
[+]
Response
[-] Request.php
[edit]
[-] aliasing.php
[edit]
[-] Signature.php
[edit]
[-] StorageClass.php
[edit]
[-] Connector.php
[edit]
[-] Response.php
[edit]
[-] Configuration.php
[edit]
[-] Acl.php
[edit]