403Webshell
Server IP : 15.235.198.142  /  Your IP : 216.73.216.190
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/yme/wp-content/plugins/elementor/modules/global-classes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/yme/wp-content/plugins/elementor/modules/global-classes/global-classes-css-file.php
<?php

namespace Elementor\Modules\GlobalClasses;

use Elementor\Core\Files\CSS\Post as Post_CSS;
use Elementor\Modules\AtomicWidgets\Styles\Styles_Renderer;
use Elementor\Plugin;

class Global_Classes_CSS_File extends Post_CSS {

	const FILE_PREFIX = 'global-classes-';

	const META_KEY = '_elementor_css__global_classes';

	public function __construct( $kit_id = null ) {
		$kit_id = $kit_id ?? Plugin::$instance->kits_manager->get_active_id();

		parent::__construct( $kit_id );
	}

	public function get_name() {
		return 'global-classes';
	}

	protected function get_file_handle_id() {
		return 'elementor-global-classes-' . $this->get_post_id();
	}

	protected function get_enqueue_dependencies() {
		return [];
	}

	protected function get_inline_dependency() {
		return '';
	}

	protected function render( $context ) {
		$global_classes = Global_Classes_Repository::make()
			->context( $context )
			->all();

		if ( $global_classes->get_items()->is_empty() ) {
			return;
		}

		$sorted_items = $global_classes
			->get_order()
			->reverse()
			->map(
				fn( $id ) => $global_classes->get_items()->get( $id )
			);

		$css = Styles_Renderer::make(
			Plugin::$instance->breakpoints->get_breakpoints_config()
		)->on_prop_transform( function( $key, $value ) {
			if ( 'font-family' !== $key ) {
				return;
			}

			$this->add_font( $value );
		} )->render( $sorted_items->all() );

		$this->get_stylesheet()->add_raw_css( $css );
	}

	protected function render_css() {
		$this->render( Global_Classes_Repository::CONTEXT_FRONTEND );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit