403Webshell
Server IP : 81.19.159.101  /  Your IP : 216.73.217.111
Web Server : Apache
System : Linux www58.world4you.com 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64
User : ftp8817043 ( 2681)
PHP Version : 8.4.21
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/.sites/103/site8817043/web/wp-content/plugins/akeebabackupwp/app/Solo/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/.sites/103/site8817043/web/wp-content/plugins/akeebabackupwp/app/Solo/Container.php
<?php
/**
 * @package   solo
 * @copyright Copyright (c)2014-2025 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU General Public License version 3, or later
 */

namespace Solo;

use Solo\Application\UserManager;
use Solo\Helper\HashHelper;

/**
 * Dependency injection container for Solo
 *
 * @property-read  string $iconBaseName  The base name for logo icon files
 */
class Container extends \Awf\Container\Container
{
	public function __construct(array $values = [])
	{
		$this->iconBaseName = 'solo';

		$values['application_name']     = $values['application_name'] ?? 'Solo';
		$values['applicationNamespace'] = $values['applicationNamespace'] ?? '\\Solo';

		$values['session_segment_name'] = $values['session_segment_name'] ?? call_user_func(
			function () use ($values) {
				$installationId = 'default';

				if (function_exists('base64_encode'))
				{
					$installationId = base64_encode(__DIR__);
				}

				if (function_exists('md5'))
				{
					$installationId = HashHelper::md5(__DIR__);
				}

				if (function_exists('sha1'))
				{
					$installationId = HashHelper::sha1(__DIR__);
				}

				return $values['application_name'] . '_' . $installationId;
			}
		);

		$values['userManager'] = $values['userManager'] ?? function (Container $c)
		{
			return new UserManager($c);
		};

		parent::__construct($values);
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit