File manager - Edit - /home/verseaumee/ptitsanes/libraries/gantry5/src/classes/Gantry/Framework/Site.php
Back
<?php /** * @package Gantry5 * @author RocketTheme http://www.rockettheme.com * @copyright Copyright (C) 2007 - 2021 RocketTheme, LLC * @license GNU/GPLv2 and later * * http://www.gnu.org/licenses/gpl-2.0.html */ namespace Gantry\Framework; use Joomla\CMS\Application\CMSApplication; use Joomla\CMS\Document\HtmlDocument; use Joomla\CMS\Factory; /** * Class Site * @package Gantry\Framework */ class Site { /** @var string */ public $theme; /** @var string */ public $url; /** @var string */ public $title; /** @var string */ public $description; public function __construct() { /** @var CMSApplication $application */ $application = Factory::getApplication(); $document = $application->getDocument(); if ($document instanceof HtmlDocument) { $this->theme = $document->template; $this->url = $document->baseurl; $this->title = $document->title; $this->description = $document->description; } } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings