| Current Path : /home/z/i/e/zieirix/www/libraries/gantry5/src/classes/Gantry/Framework/ |
| Current File : /home/z/i/e/zieirix/www/libraries/gantry5/src/classes/Gantry/Framework/Site.php |
<?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;
}
}
}