| 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/Model/ |
Upload File : |
<?php
/**
* @package solo
* @copyright Copyright (c)2014-2025 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
namespace Solo\Model;
use Awf\Mvc\Model;
use Solo\Model\OAuth2\ProviderInterface;
class Oauth2 extends Model
{
/**
* Returns the provider object for the requested engine
*
* @param string $engine The requested engine
*
* @return ProviderInterface The provider object
* @throws \InvalidArgumentException If the engine is not available
* @since 9.9.1
*/
public function getProvider(string $engine): ProviderInterface
{
$className = __NAMESPACE__ . '\\OAuth2\\' . ucfirst(strtolower($engine)) . 'Engine';
if (!class_exists($className))
{
throw new \InvalidArgumentException(sprintf("Invalid engine: %s", $engine));
}
return new $className($this->getContainer());
}
/**
* Is the requested provider enabled in the component options?
*
* @param string $engine The requested engine
*
* @return bool
* @since 9.9.1
*/
public function isEnabled(string $engine): bool
{
$key = sprintf('oauth2_client_%s', strtolower($engine));
return $this->getContainer()->appConfig->get($key, 0) != 0;
}
}