| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/saint-martin-lg/libraries/regularlabs/src/ |
Upload File : |
<?php
/**
* @package Regular Labs Library
* @version 26.5.22170
*
* @author Peter van Westen <info@regularlabs.com>
* @link https://regularlabs.com
* @copyright Copyright © 2026 Regular Labs All Rights Reserved
* @license GNU General Public License version 2 or later
*/
namespace RegularLabs\Library;
defined('_JEXEC') or die;
use Joomla\CMS\Application\CMSApplicationInterface as JCMSApplicationInterface;
use Joomla\CMS\Cache\CacheControllerFactoryInterface as JCacheControllerFactoryInterface;
use Joomla\CMS\Factory as JFactory;
use Joomla\CMS\User\UserFactoryInterface;
use Joomla\DI\Container;
class Runtime
{
public static function getApplication(): JCMSApplicationInterface
{
return JFactory::getApplication();
}
public static function getCacheControllerFactory(): JCacheControllerFactoryInterface
{
return self::getContainer()->get(JCacheControllerFactoryInterface::class);
}
public static function getConfig(string $key, mixed $default = null): mixed
{
return self::getApplication()->get($key, $default);
}
public static function getContainer(): Container
{
return JFactory::getContainer();
}
public static function getSiteApplication(): JCMSApplicationInterface
{
return self::getContainer()->get('Joomla\CMS\Application\SiteApplication');
}
public static function getUserFactory(): UserFactoryInterface
{
return self::getContainer()->get(UserFactoryInterface::class);
}
}