__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 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;
/**
* Class Page
* @package Gantry\Framework
*/
class Page extends Base\Page
{
/** @var string */
public $home;
/** @var string */
public $outline;
/** @var string */
public $language;
/** @var string */
public $direction;
/**
* Page constructor.
* @param Gantry $container
*/
public function __construct($container)
{
parent::__construct($container);
$site = Gantry::instance()['site'];
$this->home = \is_front_page();
$this->outline = $container['configuration'];
$this->language = str_replace('_', '-', (string)$site->language);
$this->direction = function_exists('is_rtl') && is_rtl() ? 'rtl' : 'ltr';
}
/**
* @param array $args
* @return string
*/
public function url(array $args = [])
{
return \home_url(\add_query_arg($args, $GLOBALS['wp']->request));
}
/**
* @return string
*/
public function htmlAttributes()
{
$attributes = [
'lang' => $this->language,
'dir' => $this->direction
]
+ (array) $this->config->get('page.html', []);
return $this->getAttributes($attributes);
}
/**
* @param array $attributes
* @return string
*/
public function bodyAttributes($attributes = [])
{
// TODO: we might need something like
// class="{{body_class}}" data-template="{{ twigTemplate|default('base.twig') }}"
$body_classes = \apply_filters('gantry5_body_classes', [
'site',
'outline-' . Gantry::instance()['configuration'],
'dir-' . $this->direction
]);
$wp_body_class = \get_body_class($body_classes);
if(is_array($wp_body_class) && !empty($wp_body_class)) {
$attributes['class'] = array_merge_recursive($attributes['class'], $wp_body_class);
}
return $this->getAttributes((array) $this->config->get('page.body.attribs'), $attributes);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Base | Folder | 0775 |
|
|
| Markdown | Folder | 0775 |
|
|
| Services | Folder | 0775 |
|
|
| Assignments.php | File | 2.02 KB | 0775 |
|
| Atoms.php | File | 9.32 KB | 0775 |
|
| Configurations.php | File | 472 B | 0775 |
|
| Document.php | File | 7.37 KB | 0775 |
|
| Exception.php | File | 1.16 KB | 0775 |
|
| Exporter.php | File | 478 B | 0775 |
|
| Gantry.php | File | 3.56 KB | 0775 |
|
| Importer.php | File | 492 B | 0775 |
|
| Menu.php | File | 19.96 KB | 0775 |
|
| OutlineChooser.php | File | 324 B | 0775 |
|
| Outlines.php | File | 911 B | 0775 |
|
| Page.php | File | 2.26 KB | 0775 |
|
| Platform.php | File | 10.84 KB | 0775 |
|
| Positions.php | File | 558 B | 0775 |
|
| Request.php | File | 962 B | 0775 |
|
| Site.php | File | 577 B | 0775 |
|
| Theme.php | File | 21.46 KB | 0775 |
|
| ThemeInstaller.php | File | 710 B | 0775 |
|
| Translator.php | File | 1.68 KB | 0775 |
|