101 lines
2.5 KiB
PHP
101 lines
2.5 KiB
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\PropTypes\Classes_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Primitives\String_Prop_Type;
|
|
use Elementor\Utils;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
class Atomic_Heading extends Atomic_Widget_Base {
|
|
public function get_name() {
|
|
return 'a-heading';
|
|
}
|
|
|
|
public function get_title() {
|
|
return esc_html__( 'Atomic Heading', 'elementor' );
|
|
}
|
|
|
|
public function get_icon() {
|
|
return 'eicon-t-letter';
|
|
}
|
|
|
|
protected function render() {
|
|
$settings = $this->get_atomic_settings();
|
|
|
|
$tag = $settings['tag'];
|
|
$title = $settings['title'];
|
|
$attrs = array_filter( [
|
|
'class' => $settings['classes'] ?? '',
|
|
] );
|
|
|
|
echo sprintf(
|
|
'<%1$s %2$s>%3$s</%1$s>',
|
|
// TODO: we should avoid using `validate html tag` and use the enum validation instead.
|
|
Utils::validate_html_tag( $tag ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
Utils::render_html_attributes( $attrs ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
esc_html( $title )
|
|
);
|
|
}
|
|
|
|
protected function define_atomic_controls(): array {
|
|
return [
|
|
Section::make()
|
|
->set_label( __( 'Content', 'elementor' ) )
|
|
->set_items( [
|
|
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',
|
|
],
|
|
]),
|
|
|
|
Textarea_Control::bind_to( 'title' )
|
|
->set_label( __( 'Title', 'elementor' ) )
|
|
->set_placeholder( __( 'Type your title here', 'elementor' ) ),
|
|
]),
|
|
];
|
|
}
|
|
|
|
protected static function define_props_schema(): array {
|
|
return [
|
|
'classes' => Classes_Prop_Type::make()
|
|
->default( [] ),
|
|
|
|
'tag' => String_Prop_Type::make()
|
|
->enum( [ 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ] )
|
|
->default( 'h2' ),
|
|
|
|
'title' => String_Prop_Type::make()
|
|
->default( __( 'Your Title Here', 'elementor' ) ),
|
|
];
|
|
}
|
|
}
|