__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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
/**
 * Stackable KSES function.
 */

 // Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! function_exists( 'stackable_allow_wp_kses_allowed_html' ) ) {

	/**
	 * Fix block saving for Non-Super-Admins (no unfiltered_html capability).
	 * For Non-Super-Admins, some styles & HTML tags/attributes are removed upon saving,
	 * this allows Stackable HTML tags & attributes from being saved.
	 *
	 * For every Stackable block, add the HTML tags and attributes used here.
	 *
	 * @see The list of tags & attributes currently allowed: https://core.trac.wordpress.org/browser/tags/5.2/src/wp-includes/kses.php#L61
	 * @see https://github.com/gambitph/Stackable/issues/184
	 *
	 * @param array $tags Allowed HTML tags & attributes.
	 * @param string $context The context wherein the HTML is being filtered.
	 *
	 * @return array Modified HTML tags & attributes.
	 */
	function stackable_allow_wp_kses_allowed_html( $tags, $context ) {
		// For some reason, there are server setups that can call this too early and wp_get_current_user() is not yet defined.
		if ( ! function_exists( 'wp_get_current_user' ) || ! function_exists( 'current_user_can' ) ) {
			return $tags;
		}

		// Only allow these tags if the user can edit posts.
		if ( ! current_user_can( 'edit_posts' ) ) {
			return $tags;
		}

		$tags['style'] = array(
			'id' => true,
			'class' => true,
			'type' => true,
		);

		// Used by Separators & Icons.
		$tags['svg'] = array(
			'viewbox' => true,
			'filter' => true,
			'enablebackground' => true,
			'xmlns' => true,
			'class' => true,
			'preserveaspectratio' => true,
			'aria-hidden' => true,
			'data-*' => true,
			'role' => true,
			'height' => true,
			'width' => true,
			'style' => true,
		);
		$tags['path'] = array(
			'd' => true,
		);
		$tags['circle'] = array(
			'cx' => true,
			'cy' => true,
			'r' => true,
		);
		$tags['polygon'] = array(
			'points' => true,
		);
		$tags['polyline'] = array(
			'points' => true,
		);
		$tags['rect'] = array(
			'x' => true,
			'y' => true,
			'width' => true,
			'height' => true,
			'rx' => true,
			'ry' => true,
		);
		$tags['line'] = array(
			'x1' => true,
			'x2' => true,
			'y1' => true,
			'y2' => true,
		);
		$tags['clippath'] = array();
		$tags['filter'] = array();
		$tags['g'] = array();
		$tags['use'] = array(
			'xlink:href' => true,
		);
		$tags['text'] = array(
			'font-size' => true,
			'font-family' => true,
			'font-weight' => true,
			'font-*' => true,
		);
		$tags['fegaussianblur'] = array(
			'in' => true,
			'stddeviation' => true,
		);
		$tags['fecomponenttransfer'] = array();
		$tags['fefunca'] = array(
			'type' => true,
			'slope' => true,
		);
		$tags['femerge'] = array();
		$tags['femergenode'] = array(
			'in' => true,
		);
		// SVG gradients.
		$tags['defs'] = array();
		$tags['stop'] = array(
			'offset' => true,
			'style' => true,
			'stop-color' => true,
			'stop-opacity' => true,
		);
		$tags['lineargradient'] = array( // Intentionally made this lowercase since tags do not recognize caps.
			'id' => true,
			'x1' => true,
			'x2' => true,
			'y1' => true,
			'y2' => true,
			'gradientunits' => true,
			'gradienttransform' => true,
		);

		// Used by posts block.
		$tags['time'] = array(
			'datetime' => true,
		);

		_stackable_svg_attributes( $tags, 'path' );
		_stackable_svg_attributes( $tags, 'circle' );
		_stackable_svg_attributes( $tags, 'polygon' );
		_stackable_svg_attributes( $tags, 'polyline' );
		_stackable_svg_attributes( $tags, 'line' );
		_stackable_svg_attributes( $tags, 'rect' );
		_stackable_svg_attributes( $tags, 'g' );
		_stackable_svg_attributes( $tags, 'clippath' );
		_stackable_svg_attributes( $tags, 'filter' );
		_stackable_svg_attributes( $tags, 'text' );

		_stackable_common_attributes( $tags, 'div' );
		_stackable_common_attributes( $tags, 'h1' );
		_stackable_common_attributes( $tags, 'h2' );
		_stackable_common_attributes( $tags, 'h3' );
		_stackable_common_attributes( $tags, 'h4' );
		_stackable_common_attributes( $tags, 'h5' );
		_stackable_common_attributes( $tags, 'h6' );
		_stackable_common_attributes( $tags, 'svg' );

		return $tags;
	}

	function _stackable_svg_attributes( &$tags, $tag ) {
		$tags[ $tag ]['id'] = true;
		$tags[ $tag ]['class'] = true;
		$tags[ $tag ]['style'] = true;
		$tags[ $tag ]['fill'] = true;
		$tags[ $tag ]['fill-rule'] = true;
		$tags[ $tag ]['fill-opacity'] = true;
		$tags[ $tag ]['fill-*'] = true;
		$tags[ $tag ]['clip-path'] = true;
		$tags[ $tag ]['transform'] = true;
		$tags[ $tag ]['stroke'] = true;
		$tags[ $tag ]['stroke-width'] = true;
		$tags[ $tag ]['stroke-linejoin'] = true;
		$tags[ $tag ]['stroke-miterlimit'] = true;
		$tags[ $tag ]['stroke-*'] = true;
		$tags[ $tag ]['opacity'] = true;
	}

	function _stackable_common_attributes( &$tags, $tag ) {
		$tags[ $tag ]['aria-hidden'] = true; // Used by Separators & Icons
		$tags[ $tag ]['aria-expanded'] = true; // Used by Expand block.
		$tags[ $tag ]['aria-level'] = true; // Used by Accordion block.
		$tags[ $tag ]['role'] = true; // Used by Accordion block.
		$tags[ $tag ]['tabindex'] = true; // Used by Accordion block.
	}

	add_filter( 'wp_kses_allowed_html', 'stackable_allow_wp_kses_allowed_html', 10, 2 );
}

Filemanager

Name Type Size Permission Actions
block Folder 0775
block-components Folder 0775
compatibility Folder 0775
components Folder 0775
deprecated Folder 0775
design-library Folder 0775
lightbox Folder 0775
plugins Folder 0775
styles Folder 0775
welcome Folder 0775
admin.php File 1.42 KB 0775
blocks.php File 3.11 KB 0775
css-optimize.php File 16.42 KB 0775
dynamic-breakpoints.php File 20.72 KB 0775
editor-settings.php File 9.49 KB 0775
fonts.php File 5.44 KB 0775
global-settings.php File 37.62 KB 0775
icons.php File 1.31 KB 0775
index.php File 88 B 0775
init.php File 20.87 KB 0775
jetpack.php File 2.29 KB 0775
kses.php File 5.1 KB 0775
multisite.php File 3.27 KB 0775
pro.php File 5.21 KB 0775
stk-block-types.php File 38.5 KB 0775
unique-id.php File 1.34 KB 0775
Filemanager