%PDF- %PDF-
| Direktori : /var/www/projetos/stb.ind.br/wp-content/themes/maxbizz/inc/backend/elementor/widgets/ |
| Current File : /var/www/projetos/stb.ind.br/wp-content/themes/maxbizz/inc/backend/elementor/widgets/accordions.php |
<?php
namespace Elementor; // Custom widgets must be defined in the Elementor namespace
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure)
/**
* Widget Name: Accordions
*/
class Maxbizz_Accordions extends Widget_Base{
// The get_name() method is a simple one, you just need to return a widget name that will be used in the code.
public function get_name() {
return 'iaccordions';
}
// The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label.
public function get_title() {
return __( 'OT Accordions', 'maxbizz' );
}
// The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string.
public function get_icon() {
return 'eicon-accordion';
}
// The get_categories method, lets you set the category of the widget, return the category name as a string.
public function get_categories() {
return [ 'category_maxbizz' ];
}
protected function _register_controls() {
//Content Service box
$this->start_controls_section(
'content_section',
[
'label' => __( 'Accordions', 'maxbizz' ),
]
);
$repeater = new Repeater();
$repeater->add_control(
'acc_title',
[
'label' => __( 'Title & Content', 'maxbizz' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Accordion Title', 'maxbizz' ),
'placeholder' => __( 'Accordion Title', 'maxbizz' ),
'label_block' => true,
]
);
$repeater->add_control(
'acc_content',
[
'label' => __( 'Content', 'maxbizz' ),
'default' => __( 'Accordion Content', 'maxbizz' ),
'placeholder' => __( 'Accordion Content', 'maxbizz' ),
'type' => Controls_Manager::WYSIWYG,
'show_label' => false,
]
);
$this->add_control(
'ot_accs',
[
'label' => __( 'Accordion Items', 'maxbizz' ),
'type' => Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'default' => [
[
'acc_title' => __( 'Accordion #1', 'maxbizz' ),
'acc_content' => __( 'The basic philosophy of our studio is to create individual, aesthetically stunning solutions for our customers by lightning-fast development of projects employing unique styles.', 'maxbizz' ),
],
[
'acc_title' => __( 'Accordion #2', 'maxbizz' ),
'acc_content' => __( 'The basic philosophy of our studio is to create individual, aesthetically stunning solutions for our customers by lightning-fast development of projects employing unique styles.', 'maxbizz' ),
],
],
'title_field' => '{{{ acc_title }}}',
]
);
$this->end_controls_section();
//Style
/* title */
$this->start_controls_section(
'style_title',
[
'label' => __( 'Title', 'maxbizz' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'bg_title',
[
'label' => __( 'Background', 'maxbizz' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .acc-item:not(.current) .acc-toggle' => 'background: {{VALUE}};',
],
]
);
$this->add_control(
'bg_title_active',
[
'label' => __( 'Background Active', 'maxbizz' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .acc-item.current .acc-toggle' => 'background: {{VALUE}}; border-color: {{VALUE}};',
],
]
);
$this->add_control(
'title_border',
[
'label' => __( 'Border Color', 'maxbizz' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .acc-item:not(.current) .acc-toggle' => 'border-color: {{VALUE}};',
]
]
);
$this->add_control(
'title_color',
[
'label' => __( 'Color', 'maxbizz' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .acc-item:not(.current) .acc-toggle' => 'color: {{VALUE}};',
]
]
);
$this->add_control(
'title_color_active',
[
'label' => __( 'Color Active', 'maxbizz' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .acc-item.current .acc-toggle' => 'color: {{VALUE}};',
]
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'selector' => '{{WRAPPER}} .acc-toggle',
]
);
$this->add_responsive_control(
'title_padding',
[
'label' => __( 'Padding', 'maxbizz' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .acc-item .acc-toggle' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_section();
/* content */
$this->start_controls_section(
'style_content',
[
'label' => __( 'Content', 'maxbizz' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'bg_content',
[
'label' => __( 'Background', 'maxbizz' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .acc-item .acc-content' => 'background: {{VALUE}};',
],
]
);
$this->add_control(
'content_color',
[
'label' => __( 'Color', 'maxbizz' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .acc-content' => 'color: {{VALUE}};',
]
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'content_typography',
'selector' => '{{WRAPPER}} .acc-content',
]
);
$this->add_responsive_control(
'content_padding',
[
'label' => __( 'Padding', 'maxbizz' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .acc-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
$migrated = isset( $settings['__fa4_migrated']['icon_close'] );
if ( ! isset( $settings['icon'] ) && ! Icons_Manager::is_migration_allowed() ) {
// @todo: remove when deprecated
// added as bc in 2.6
// add old default
$settings['icon'] = 'fas fa-plus';
$settings['select_icon_active'] = 'far fa-window-minimize';
}
$is_new = empty( $settings['icon'] ) && Icons_Manager::is_migration_allowed();
$has_icon = ( ! $is_new || ! empty( $settings['icon_close']['value'] ) );
?>
<div class="ot-accordions">
<?php if ( $settings['ot_accs'] ) : foreach ( $settings['ot_accs'] as $key => $accs ) { ?>
<div class="acc-item">
<div class="acc-toggle flex-middle" <?php if( $key === 0 ){ echo 'data-default="yes"'; } ?> ><?php echo $accs['acc_title']; ?>
<i class="ot-flaticon-arrowsoutline"></i>
</div>
<div class="acc-content">
<?php echo $accs['acc_content']; ?>
</div>
</div>
<?php } endif; ?>
</div>
<?php
}
protected function _content_template() {}
}
// After the Maxbizz_Accordions class is defined, I must register the new widget class with Elementor:
Plugin::instance()->widgets_manager->register_widget_type( new Maxbizz_Accordions() );