| Server IP : 198.38.94.67 / Your IP : 216.73.217.178 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/public_html/wp-content/plugins/haru-frames/includes/widgets/ |
Upload File : |
<?php
/**
* @package HaruTheme/Haru Frames
* @version 1.0.0
* @author Administrator <admin@harutheme.com>
* @copyright Copyright (c) 2017, HaruTheme
* @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later
* @link http://harutheme.com
*/
namespace Haru_Frames\Widgets;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
use \Elementor\Widget_Base;
use \Elementor\Controls_Manager;
use \Elementor\Utils;
use \Elementor\Repeater;
use \Elementor\Plugin;
use \Haru_Frames\Classes\Haru_Template;
if ( ! class_exists( 'Haru_Frames_Text_List_Widget' ) ) {
class Haru_Frames_Text_List_Widget extends Widget_Base {
public function get_name() {
return 'haru-text-list';
}
public function get_title() {
return esc_html__( 'Haru Text List', 'haru-frames' );
}
public function get_icon() {
return 'eicon-text';
}
public function get_categories() {
return [ 'haru-elements' ];
}
public function get_keywords() {
return [
'heading',
'list',
'text',
];
}
public function get_custom_help_url() {
return 'https://document.harutheme.com/elementor/';
}
protected function register_controls() {
$this->start_controls_section(
'content_section',
[
'label' => esc_html__( 'Content', 'haru-frames' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'pre_style',
[
'label' => __( 'Pre Text List', 'haru-frames' ),
'description' => __( 'If you choose Pre Text List you will use Style default from our theme.', 'haru-frames' ),
'type' => Controls_Manager::SELECT,
'default' => 'style-1',
'options' => [
'style-1' => __( 'Pre Text List 1', 'haru-frames' ),
]
]
);
$repeater = new Repeater();
$repeater->add_control(
'list_title', [
'label' => esc_html__( 'Title', 'haru-frames' ),
'type' => Controls_Manager::TEXTAREA,
'default' => esc_html__( 'List Title' , 'haru-frames' ),
'label_block' => true,
]
);
$repeater->add_control(
'list_sub_title', [
'label' => esc_html__( 'Sub Title', 'haru-frames' ),
'type' => Controls_Manager::TEXT,
'default' => esc_html__( 'List Sub Title' , 'haru-frames' ),
'label_block' => true,
]
);
$this->add_control(
'list',
[
'label' => esc_html__( 'Text List', 'haru-frames' ),
'type' => Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'default' => [
[
'list_title' => esc_html__( 'Title #1', 'haru-frames' ),
'list_sub_title' => esc_html__( 'Sub Title.', 'haru-frames' ),
],
[
'list_title' => esc_html__( 'Title #2', 'haru-frames' ),
'list_sub_title' => esc_html__( 'Sub Title.', 'haru-frames' ),
],
],
'title_field' => '{{{ list_title }}}',
]
);
$this->add_responsive_control(
'align',
[
'label' => __( 'Alignment', 'haru-frames' ),
'type' => Controls_Manager::CHOOSE,
'devices' => [ 'desktop', 'tablet', 'mobile' ],
'options' => [
'left' => [
'title' => __( 'Left', 'haru-frames' ),
'icon' => 'eicon-text-align-left',
],
'center' => [
'title' => __( 'Center', 'haru-frames' ),
'icon' => 'eicon-text-align-center',
],
'right' => [
'title' => __( 'Right', 'haru-frames' ),
'icon' => 'eicon-text-align-right',
],
'justify' => [
'title' => __( 'Justified', 'haru-frames' ),
'icon' => 'eicon-text-align-justify',
],
],
'default' => '',
'selectors' => [
'{{WRAPPER}}' => 'text-align: {{VALUE}};',
],
]
);
$this->add_control(
'el_class',
[
'label' => __( 'CSS Classes', 'haru-frames' ),
'type' => Controls_Manager::TEXT,
'default' => '',
'title' => __( 'Add your custom class WITHOUT the dot. e.g: my-class', 'haru-frames' ),
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_layout_title',
[
'label' => __( 'Layout', 'haru-frames' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'background_dark',
[
'label' => __( 'Background Dark', 'haru-frames' ),
'type' => Controls_Manager::SWITCHER,
'description' => __( 'Enable if use for section has background dark.', 'haru-frames' ),
'default' => 'no',
'return_value' => 'yes',
]
);
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
if ( '' === $settings['list'] ) {
return;
}
$this->add_render_attribute( 'text-list', 'id', 'haru-text-list-' . $this->get_id() );
$this->add_render_attribute( 'text-list', 'class', 'haru-text-list' );
$this->add_render_attribute( 'text-list', 'class', 'haru-text-list--' . $settings['pre_style'] );
if ( ! empty( $settings['el_class'] ) ) {
$this->add_render_attribute( 'text-list', 'class', $settings['el_class'] );
}
?>
<?php if ( 'yes' == $settings['background_dark'] ) : ?>
<div class="background-dark">
<?php endif; ?>
<div <?php echo $this->get_render_attribute_string( 'text-list' ); ?>>
<?php echo Haru_Template::haru_get_template( 'text-list/text-list.php', $settings ); ?>
</div>
<?php if ( 'yes' == $settings['background_dark'] ) : ?>
</div>
<?php endif; ?>
<?php
}
}
}