__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* @package Gantry5
* @author Tiger12 http://tiger12.com
* @originalCreator RocketTheme (Gantry Framework)
* @currentDeveloper Tiger12, LLC
* @copyright Copyright (C) 2007 - 2021 Tiger12, 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()
{
try {
/** @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;
}
} catch (\Exception $e) {
// Catch errors when trying to get site properties from admin
$this->theme = '';
$this->url = '';
$this->title = '';
$this->description = '';
}
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Base | Folder | 0775 |
|
|
| Markdown | Folder | 0775 |
|
|
| Services | Folder | 0775 |
|
|
| Assignments.php | File | 6.82 KB | 0664 |
|
| Atoms.php | File | 9.39 KB | 0664 |
|
| Configurations.php | File | 545 B | 0664 |
|
| Document.php | File | 12.31 KB | 0664 |
|
| Exception.php | File | 1.23 KB | 0664 |
|
| Exporter.php | File | 18.69 KB | 0664 |
|
| Gantry.php | File | 1.76 KB | 0664 |
|
| Menu.php | File | 28.65 KB | 0664 |
|
| Outlines.php | File | 9.13 KB | 0664 |
|
| Page.php | File | 5.09 KB | 0664 |
|
| Platform.php | File | 22.11 KB | 0664 |
|
| Positions.php | File | 631 B | 0664 |
|
| Request.php | File | 620 B | 0664 |
|
| Site.php | File | 1.39 KB | 0664 |
|
| Theme.php | File | 6.63 KB | 0664 |
|
| ThemeInstaller.php | File | 19.55 KB | 0664 |
|
| Translator.php | File | 804 B | 0664 |
|