136 lines
3.5 KiB
PHP
136 lines
3.5 KiB
PHP
<?php
|
|
namespace Elementor\Modules\AtomicWidgets\Elements\Atomic_Tabs;
|
|
|
|
use Elementor\Modules\AtomicWidgets\Elements\Atomic_Element_Base;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Primitives\Boolean_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Primitives\String_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Size_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\Styles\Style_Definition;
|
|
use Elementor\Modules\AtomicWidgets\Styles\Style_Variant;
|
|
use Elementor\Modules\AtomicWidgets\Controls\Section;
|
|
use Elementor\Modules\AtomicWidgets\Controls\Types\Text_Control;
|
|
use Elementor\Modules\AtomicWidgets\Elements\Atomic_Paragraph\Atomic_Paragraph;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Classes_Prop_Type;
|
|
use Elementor\Modules\AtomicWidgets\PropTypes\Attributes_Prop_Type;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
class Atomic_Tab_Panel extends Atomic_Element_Base {
|
|
const BASE_STYLE_KEY = 'base';
|
|
|
|
public static function get_type() {
|
|
return 'e-tab-panel';
|
|
}
|
|
|
|
public static function get_element_type(): string {
|
|
return 'e-tab-panel';
|
|
}
|
|
|
|
public function get_title() {
|
|
return esc_html__( 'Atomic Tab Panel', 'elementor' );
|
|
}
|
|
|
|
public function get_keywords() {
|
|
return [ 'ato', 'atom', 'atoms', 'atomic', 'tab', 'panel', 'tabs' ];
|
|
}
|
|
|
|
public function get_icon() {
|
|
return 'eicon-tabs';
|
|
}
|
|
|
|
public function should_show_in_panel() {
|
|
return false;
|
|
}
|
|
|
|
protected static function define_props_schema(): array {
|
|
return [
|
|
'classes' => Classes_Prop_Type::make()
|
|
->default( [] ),
|
|
'tab-id' => String_Prop_Type::make(),
|
|
'attributes' => Attributes_Prop_Type::make(),
|
|
];
|
|
}
|
|
|
|
protected function define_atomic_controls(): array {
|
|
return [
|
|
Section::make()
|
|
->set_label( __( 'Settings', 'elementor' ) )
|
|
->set_id( 'settings' )
|
|
->set_items( [] ),
|
|
];
|
|
}
|
|
|
|
protected function define_base_styles(): array {
|
|
$display = String_Prop_Type::generate( 'block' );
|
|
|
|
return [
|
|
static::BASE_STYLE_KEY => Style_Definition::make()
|
|
->add_variant(
|
|
Style_Variant::make()
|
|
->add_prop( 'display', $display )
|
|
->add_prop( 'padding', $this->get_base_padding() )
|
|
->add_prop( 'min-width', $this->get_base_min_width() )
|
|
),
|
|
];
|
|
}
|
|
|
|
protected function get_base_padding(): array {
|
|
return Size_Prop_Type::generate( [
|
|
'size' => 10,
|
|
'unit' => 'px',
|
|
] );
|
|
}
|
|
|
|
protected function get_base_min_width(): array {
|
|
return Size_Prop_Type::generate( [
|
|
'size' => 30,
|
|
'unit' => 'px',
|
|
] );
|
|
}
|
|
|
|
protected function define_initial_attributes() {
|
|
return [
|
|
'role' => 'tabpanel',
|
|
];
|
|
}
|
|
|
|
protected function define_default_children() {
|
|
return [
|
|
Atomic_Paragraph::generate()
|
|
->settings( [
|
|
'text' => String_Prop_Type::generate( 'Tab Content' ),
|
|
] )
|
|
->build(),
|
|
];
|
|
}
|
|
|
|
protected function add_render_attributes() {
|
|
parent::add_render_attributes();
|
|
$settings = $this->get_atomic_settings();
|
|
$base_style_class = $this->get_base_styles_dictionary()[ static::BASE_STYLE_KEY ];
|
|
$initial_attributes = $this->define_initial_attributes();
|
|
|
|
$attributes = [
|
|
'class' => [
|
|
'e-con',
|
|
'e-atomic-element',
|
|
$base_style_class,
|
|
...( $settings['classes'] ?? [] ),
|
|
],
|
|
];
|
|
|
|
if ( ! empty( $settings['tab-id'] ) ) {
|
|
$attributes['data-tab-id'] = esc_attr( $settings['tab-id'] );
|
|
$attributes['aria-labelledby'] = esc_attr( $settings['tab-id'] );
|
|
}
|
|
|
|
if ( ! empty( $settings['_cssid'] ) ) {
|
|
$attributes['id'] = esc_attr( $settings['_cssid'] );
|
|
}
|
|
|
|
$this->add_render_attribute( '_wrapper', array_merge( $initial_attributes, $attributes ) );
|
|
}
|
|
}
|