| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.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 : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/dansnotreville-fr/plugins/system/nrframework/NRFramework/ |
Upload File : |
<?php
/**
* @author Tassos.gr <info@tassos.gr>
* @link https://www.tassos.gr
* @copyright Copyright © 2023 Tassos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
namespace NRFramework;
use \NRFramework\WebClient;
use \NRFramework\CacheManager;
defined('_JEXEC') or die;
/**
* Framework Factory Class
*
* Used to decouple the framework from it's dependencies and make unit testing easier.
*
* @todo Rename class to Container and make all methods static.
*/
class Factory
{
public function isFrontend()
{
return $this->getApplication()->isClient('site');
}
public static function getCondition($name)
{
return \NRFramework\Conditions\ConditionsHelper::getInstance()->getCondition($name);
}
public function getDbo()
{
return \JFactory::getDbo();
}
public function getApplication()
{
return \JFactory::getApplication();
}
public function getCookie($cookie_name)
{
return \JFactory::getApplication()->input->cookie->get($cookie_name, null, 'string');
}
public function getDocument()
{
return \JFactory::getDocument();
}
public function getUser($id = null)
{
return \NRFramework\User::get($id);
}
public function getCache()
{
return CacheManager::getInstance(\JFactory::getCache('tassos', ''));
}
public function getDate($date = 'now', $tz = null)
{
return \JFactory::getDate($date, $tz);
}
public function getURI()
{
return \JURI::getInstance();
}
public function getURL()
{
return \JURI::getInstance()->toString();
}
public function getLanguage()
{
return \JFactory::getLanguage();
}
public function getSession()
{
return \JFactory::getSession();
}
public function getDevice()
{
return WebClient::getDeviceType();
}
public function getBrowser()
{
return WebClient::getBrowser();
}
public function getExecuter($php_code)
{
return new \NRFramework\Executer($php_code);
}
}