| Server IP : 46.105.57.169 / Your IP : 216.73.217.8 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.22 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.7.20176
*
* @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\Registry\Registry as JRegistry;
class Template
{
public static function get(): object
{
$application = \RegularLabs\Library\Application::get();
if (!method_exists($application, 'getTemplate')) {
return self::getEmpty();
}
$template = $application->getTemplate(\true);
if (!is_object($template)) {
return self::getEmpty((string) $template);
}
$template->id ??= 0;
$template->parent ??= '';
$template->params = self::normalizeParams($template->params ?? null);
$template->template ??= '';
return $template;
}
public static function getId(): int
{
return (int) self::get()->id;
}
public static function getName(): string
{
return (string) self::get()->template;
}
public static function getParams(): JRegistry
{
return self::get()->params;
}
private static function getEmpty(string $name = ''): object
{
return (object) ['id' => 0, 'parent' => '', 'params' => new JRegistry(), 'template' => $name];
}
private static function normalizeParams(mixed $params): JRegistry
{
if ($params instanceof JRegistry) {
return $params;
}
return new JRegistry($params);
}
}