743 lines
19 KiB
PHP
743 lines
19 KiB
PHP
<?php
|
|
namespace ElementorPro\Modules\Pricing\Widgets;
|
|
|
|
use Elementor\Utils;
|
|
use Elementor\Controls_Manager;
|
|
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
|
|
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
|
|
use Elementor\Group_Control_Image_Size;
|
|
use Elementor\Group_Control_Typography;
|
|
use Elementor\Group_Control_Text_Stroke;
|
|
use Elementor\Repeater;
|
|
use ElementorPro\Base\Base_Widget;
|
|
use ElementorPro\Plugin;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
class Price_List extends Base_Widget {
|
|
|
|
public function get_name() {
|
|
return 'price-list';
|
|
}
|
|
|
|
public function get_title() {
|
|
return esc_html__( 'Price List', 'elementor-pro' );
|
|
}
|
|
|
|
public function get_icon() {
|
|
return 'eicon-price-list';
|
|
}
|
|
|
|
public function get_keywords() {
|
|
return [ 'pricing', 'list', 'product', 'image', 'menu' ];
|
|
}
|
|
|
|
protected function is_dynamic_content(): bool {
|
|
return false;
|
|
}
|
|
|
|
public function has_widget_inner_wrapper(): bool {
|
|
return ! Plugin::elementor()->experiments->is_feature_active( 'e_optimized_markup' );
|
|
}
|
|
|
|
/**
|
|
* Get style dependencies.
|
|
*
|
|
* Retrieve the list of style dependencies the widget requires.
|
|
*
|
|
* @since 3.24.0
|
|
* @access public
|
|
*
|
|
* @return array Widget style dependencies.
|
|
*/
|
|
public function get_style_depends(): array {
|
|
return [ 'widget-price-list' ];
|
|
}
|
|
|
|
protected function register_controls() {
|
|
$this->start_controls_section(
|
|
'section_list',
|
|
[
|
|
'label' => esc_html__( 'List', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_CONTENT,
|
|
]
|
|
);
|
|
|
|
$repeater = new Repeater();
|
|
|
|
$repeater->add_control(
|
|
'price',
|
|
[
|
|
'label' => esc_html__( 'Price', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'ai' => [
|
|
'active' => false,
|
|
],
|
|
]
|
|
);
|
|
|
|
$repeater->add_control(
|
|
'title',
|
|
[
|
|
'label' => esc_html__( 'Title', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'default' => '',
|
|
'label_block' => 'true',
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
]
|
|
);
|
|
|
|
$repeater->add_control(
|
|
'item_description',
|
|
[
|
|
'label' => esc_html__( 'Description', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXTAREA,
|
|
'default' => '',
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
]
|
|
);
|
|
|
|
$repeater->add_control(
|
|
'image',
|
|
[
|
|
'label' => esc_html__( 'Image', 'elementor-pro' ),
|
|
'type' => Controls_Manager::MEDIA,
|
|
'default' => [],
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
]
|
|
);
|
|
|
|
$repeater->add_control(
|
|
'link',
|
|
[
|
|
'label' => esc_html__( 'Link', 'elementor-pro' ),
|
|
'type' => Controls_Manager::URL,
|
|
'default' => [ 'url' => '#' ],
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'price_list',
|
|
[
|
|
'label' => esc_html__( 'List Items', 'elementor-pro' ),
|
|
'type' => Controls_Manager::REPEATER,
|
|
'fields' => $repeater->get_controls(),
|
|
'default' => [
|
|
[
|
|
'title' => esc_html__( 'First item on the list', 'elementor-pro' ),
|
|
'item_description' => esc_html__( 'Lorem ipsum dolor sit amet consectetur adipiscing elit dolor', 'elementor-pro' ),
|
|
'price' => '$20',
|
|
'link' => [ 'url' => '#' ],
|
|
],
|
|
[
|
|
'title' => esc_html__( 'Second item on the list', 'elementor-pro' ),
|
|
'item_description' => esc_html__( 'Lorem ipsum dolor sit amet consectetur adipiscing elit dolor', 'elementor-pro' ),
|
|
'price' => '$9',
|
|
'link' => [ 'url' => '#' ],
|
|
],
|
|
[
|
|
'title' => esc_html__( 'Third item on the list', 'elementor-pro' ),
|
|
'item_description' => esc_html__( 'Lorem ipsum dolor sit amet consectetur adipiscing elit dolor', 'elementor-pro' ),
|
|
'price' => '$32',
|
|
'link' => [ 'url' => '#' ],
|
|
],
|
|
],
|
|
'title_field' => '{{{ title }}}',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'title_tag',
|
|
[
|
|
'label' => esc_html__( 'Title HTML Tag', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'h1' => 'H1',
|
|
'h2' => 'H2',
|
|
'h3' => 'H3',
|
|
'h4' => 'H4',
|
|
'h5' => 'H5',
|
|
'h6' => 'H6',
|
|
'div' => 'div',
|
|
'span' => 'span',
|
|
'p' => 'p',
|
|
],
|
|
'default' => 'span',
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_tag',
|
|
[
|
|
'label' => esc_html__( 'Description HTML Tag', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'h1' => 'H1',
|
|
'h2' => 'H2',
|
|
'h3' => 'H3',
|
|
'h4' => 'H4',
|
|
'h5' => 'H5',
|
|
'h6' => 'H6',
|
|
'div' => 'div',
|
|
'span' => 'span',
|
|
'p' => 'p',
|
|
],
|
|
'default' => 'p',
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_list_style',
|
|
[
|
|
'label' => esc_html__( 'List', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading__title',
|
|
[
|
|
'label' => esc_html__( 'Title', 'elementor-pro' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_color',
|
|
[
|
|
'label' => esc_html__( 'Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'global' => [
|
|
'default' => Global_Colors::COLOR_PRIMARY,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list-header' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'heading_typography',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-price-list-header',
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Text_Stroke::get_type(),
|
|
[
|
|
'name' => 'text_stroke',
|
|
'selector' => '{{WRAPPER}} .elementor-price-list-header',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'price_title',
|
|
[
|
|
'label' => __( 'Price', 'elementor-pro' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'price_color',
|
|
[
|
|
'label' => __( 'Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'global' => [
|
|
'default' => Global_Colors::COLOR_PRIMARY,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list-price' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'price_typography',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-price-list-price',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_item_description',
|
|
[
|
|
'label' => esc_html__( 'Description', 'elementor-pro' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'description_color',
|
|
[
|
|
'label' => esc_html__( 'Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'global' => [
|
|
'default' => Global_Colors::COLOR_TEXT,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list-description' => 'color: {{VALUE}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'description_typography',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_TEXT,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-price-list-description',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_separator',
|
|
[
|
|
'label' => esc_html__( 'Separator', 'elementor-pro' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'separator_style',
|
|
[
|
|
'label' => esc_html__( 'Style', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'solid' => esc_html__( 'Solid', 'elementor-pro' ),
|
|
'dotted' => esc_html__( 'Dotted', 'elementor-pro' ),
|
|
'dashed' => esc_html__( 'Dashed', 'elementor-pro' ),
|
|
'double' => esc_html__( 'Double', 'elementor-pro' ),
|
|
'none' => esc_html__( 'None', 'elementor-pro' ),
|
|
],
|
|
'default' => 'dotted',
|
|
'render_type' => 'template',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list-separator' => 'border-bottom-style: {{VALUE}}',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'separator_weight',
|
|
[
|
|
'label' => esc_html__( 'Weight', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 10,
|
|
],
|
|
'em' => [
|
|
'max' => 1,
|
|
],
|
|
'rem' => [
|
|
'max' => 1,
|
|
],
|
|
],
|
|
'condition' => [
|
|
'separator_style!' => 'none',
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list-separator' => 'border-bottom-width: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'default' => [
|
|
'size' => 2,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'separator_color',
|
|
[
|
|
'label' => esc_html__( 'Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'global' => [
|
|
'default' => Global_Colors::COLOR_SECONDARY,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list-separator' => 'border-bottom-color: {{VALUE}};',
|
|
],
|
|
'condition' => [
|
|
'separator_style!' => 'none',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'separator_spacing',
|
|
[
|
|
'label' => esc_html__( 'Spacing', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 40,
|
|
],
|
|
'em' => [
|
|
'max' => 4,
|
|
],
|
|
'rem' => [
|
|
'max' => 4,
|
|
],
|
|
],
|
|
'condition' => [
|
|
'separator_style!' => 'none',
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list-separator' => 'margin-left: {{SIZE}}{{UNIT}}; margin-right: {{SIZE}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_image_style',
|
|
[
|
|
'label' => esc_html__( 'Image', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Image_Size::get_type(),
|
|
[
|
|
'name' => 'image_size',
|
|
'default' => 'thumbnail',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'border_radius',
|
|
[
|
|
'label' => esc_html__( 'Border Radius', 'elementor-pro' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list-image img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'image_spacing',
|
|
[
|
|
'label' => esc_html__( 'Spacing', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 50,
|
|
],
|
|
'em' => [
|
|
'max' => 5,
|
|
],
|
|
'rem' => [
|
|
'max' => 5,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'body.rtl {{WRAPPER}} .elementor-price-list-image' => 'padding-left: calc({{SIZE}}{{UNIT}}/2);',
|
|
'body.rtl {{WRAPPER}} .elementor-price-list-image + .elementor-price-list-text' => 'padding-right: calc({{SIZE}}{{UNIT}}/2);',
|
|
'body:not(.rtl) {{WRAPPER}} .elementor-price-list-image' => 'padding-right: calc({{SIZE}}{{UNIT}}/2);',
|
|
'body:not(.rtl) {{WRAPPER}} .elementor-price-list-image + .elementor-price-list-text' => 'padding-left: calc({{SIZE}}{{UNIT}}/2);',
|
|
],
|
|
'default' => [
|
|
'size' => 20,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_item_style',
|
|
[
|
|
'label' => esc_html__( 'Item', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'row_gap',
|
|
[
|
|
'label' => esc_html__( 'Rows Gap', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 50,
|
|
],
|
|
'em' => [
|
|
'max' => 5,
|
|
],
|
|
'rem' => [
|
|
'max' => 5,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list li:not(:last-child)' => 'margin-bottom: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'default' => [
|
|
'size' => 20,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'vertical_align',
|
|
[
|
|
'label' => esc_html__( 'Vertical Align', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'top' => [
|
|
'title' => esc_html__( 'Top', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-top',
|
|
],
|
|
'center' => [
|
|
'title' => esc_html__( 'Center', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-middle',
|
|
],
|
|
'bottom' => [
|
|
'title' => esc_html__( 'Bottom', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-bottom',
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-price-list-item' => 'align-items: {{VALUE}};',
|
|
],
|
|
'selectors_dictionary' => [
|
|
'top' => 'flex-start',
|
|
'bottom' => 'flex-end',
|
|
],
|
|
'default' => 'top',
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
}
|
|
|
|
private function render_image( $item, $instance ) {
|
|
$image_id = $item['image']['id'];
|
|
$image_size = $instance['image_size_size'];
|
|
if ( 'custom' === $image_size ) {
|
|
$image_src = Group_Control_Image_Size::get_attachment_image_src( $image_id, 'image_size', $instance );
|
|
} else {
|
|
$image_src = wp_get_attachment_image_src( $image_id, $image_size );
|
|
$image_src = $image_src[0];
|
|
}
|
|
|
|
return sprintf(
|
|
'<img src="%s" alt="%s" loading="lazy" />',
|
|
esc_url( $image_src ),
|
|
esc_attr( wp_kses_post( $item['title'] ) )
|
|
);
|
|
}
|
|
|
|
private function render_item_header( $item ) {
|
|
$url = $item['link']['url'];
|
|
|
|
$item_id = $item['_id'];
|
|
|
|
if ( $url ) {
|
|
$unique_link_id = 'item-link-' . $item_id;
|
|
|
|
$this->add_render_attribute( $unique_link_id, 'class', 'elementor-price-list-item' );
|
|
|
|
$this->add_link_attributes( $unique_link_id, $item['link'] );
|
|
|
|
return '<li><a ' . $this->get_render_attribute_string( $unique_link_id ) . '>';
|
|
} else {
|
|
return '<li class="elementor-price-list-item">';
|
|
}
|
|
}
|
|
|
|
private function render_item_footer( $item ) {
|
|
if ( $item['link']['url'] ) {
|
|
return '</a></li>';
|
|
} else {
|
|
return '</li>';
|
|
}
|
|
}
|
|
|
|
protected function render() {
|
|
$settings = $this->get_settings_for_display(); ?>
|
|
|
|
<ul class="elementor-price-list">
|
|
|
|
<?php foreach ( $settings['price_list'] as $index => $item ) : ?>
|
|
<?php if ( ! empty( $item['title'] ) || ! empty( $item['price'] ) || ! empty( $item['item_description'] ) ) :
|
|
$title_repeater_setting_key = $this->get_repeater_setting_key( 'title', 'price_list', $index );
|
|
$description_repeater_setting_key = $this->get_repeater_setting_key( 'item_description', 'price_list', $index );
|
|
$this->add_inline_editing_attributes( $title_repeater_setting_key );
|
|
$this->add_inline_editing_attributes( $description_repeater_setting_key );
|
|
$this->add_render_attribute( $title_repeater_setting_key, 'class', 'elementor-price-list-title' );
|
|
$this->add_render_attribute( $description_repeater_setting_key, 'class', 'elementor-price-list-description' );
|
|
?>
|
|
<?php
|
|
// PHPCS - the method render_item_header is safe.
|
|
echo $this->render_item_header( $item ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
?>
|
|
<?php if ( ! empty( $item['image']['url'] ) ) : ?>
|
|
<div class="elementor-price-list-image">
|
|
<?php
|
|
// PHPCS - the method render_image is safe.
|
|
echo $this->render_image( $item, $settings ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="elementor-price-list-text">
|
|
<?php if ( ! empty( $item['title'] ) || ! empty( $item['price'] ) ) : ?>
|
|
<div class="elementor-price-list-header">
|
|
<?php if ( ! empty( $item['title'] ) ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $settings['title_tag'] ); ?> <?php $this->print_render_attribute_string( $title_repeater_setting_key ); ?>>
|
|
<?php $this->print_unescaped_setting( 'title', 'price_list', $index ); ?>
|
|
</<?php Utils::print_validated_html_tag( $settings['title_tag'] ); ?>>
|
|
<?php endif; ?>
|
|
<?php if ( 'none' != $settings['separator_style'] ) : ?>
|
|
<span class="elementor-price-list-separator"></span>
|
|
<?php endif; ?>
|
|
<?php if ( ! empty( $item['price'] ) ) : ?>
|
|
<span class="elementor-price-list-price"><?php $this->print_unescaped_setting( 'price', 'price_list', $index ); ?></span>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( ! empty( $item['item_description'] ) ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $settings['description_tag'] ); ?> <?php $this->print_render_attribute_string( $description_repeater_setting_key ); ?>>
|
|
<?php $this->print_unescaped_setting( 'item_description', 'price_list', $index ); ?>
|
|
</<?php Utils::print_validated_html_tag( $settings['description_tag'] ); ?>>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php
|
|
// PHPCS - the method render_item_footer is safe.
|
|
echo $this->render_item_footer( $item ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
?>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
|
|
|
<?php
|
|
}
|
|
|
|
/**
|
|
* Render Price List widget output in the editor.
|
|
*
|
|
* Written as a Backbone JavaScript template and used to generate the live preview.
|
|
*
|
|
* @since 2.9.0
|
|
* @access protected
|
|
*/
|
|
protected function content_template() {
|
|
?>
|
|
<ul class="elementor-price-list">
|
|
<#
|
|
var titleTag = elementor.helpers.validateHTMLTag( settings.title_tag );
|
|
var descriptionTag = elementor.helpers.validateHTMLTag( settings.description_tag );
|
|
|
|
for ( var i in settings.price_list ) {
|
|
var item = settings.price_list[i],
|
|
item_open_wrap = '<li class="elementor-price-list-item">',
|
|
item_close_wrap = '</li>';
|
|
if ( item.link.url ) {
|
|
item_open_wrap = '<li><a href="' + elementor.helpers.sanitizeUrl( item.link.url ) + '" class="elementor-price-list-item">';
|
|
item_close_wrap = '</a></li>';
|
|
}
|
|
|
|
if ( ! _.isEmpty( item.title ) || ! _.isEmpty( item.price ) || ! _.isEmpty( item.description ) || ! _.isEmpty( item.image ) ) { #>
|
|
|
|
{{{ item_open_wrap }}}
|
|
<# if ( item.image && item.image.id ) {
|
|
|
|
var image = {
|
|
id: item.image.id,
|
|
url: item.image.url,
|
|
size: settings.image_size_size,
|
|
dimension: settings.image_size_custom_dimension,
|
|
model: view.getEditModel()
|
|
};
|
|
|
|
var image_url = elementor.imagesManager.getImageUrl( image );
|
|
|
|
if ( image_url ) { #>
|
|
<div class="elementor-price-list-image"><img src="{{ image_url }}" alt="{{ item.title }}" loading="lazy" /></div>
|
|
<# } #>
|
|
|
|
<# } #>
|
|
|
|
|
|
<# if ( ! _.isEmpty( item.title ) || ! _.isEmpty( item.price ) || ! _.isEmpty( item.item_description ) ) { #>
|
|
<div class="elementor-price-list-text">
|
|
|
|
<# if ( ! _.isEmpty( item.title ) || ! _.isEmpty( item.price ) ) { #>
|
|
<div class="elementor-price-list-header">
|
|
|
|
<# if ( ! _.isEmpty( item.title ) ) { #>
|
|
<{{ titleTag }} class="elementor-price-list-title">{{{ item.title }}}</{{ titleTag }}>
|
|
<# } #>
|
|
|
|
<# if ( 'none' != settings.separator_style ) { #>
|
|
<span class="elementor-price-list-separator"></span>
|
|
<# } #>
|
|
|
|
<# if ( ! _.isEmpty( item.price ) ) { #>
|
|
<span class="elementor-price-list-price">{{{ item.price }}}</span>
|
|
<# } #>
|
|
|
|
</div>
|
|
<# } #>
|
|
|
|
<# if ( ! _.isEmpty( item.item_description ) ) { #>
|
|
<{{descriptionTag}} class="elementor-price-list-description">{{{ item.item_description }}}</{{descriptionTag}}>
|
|
<# } #>
|
|
|
|
</div>
|
|
<# } #>
|
|
|
|
{{{ item_close_wrap }}}
|
|
|
|
<# } #>
|
|
<# } #>
|
|
</ul>
|
|
<?php
|
|
}
|
|
|
|
public function get_group_name() {
|
|
return 'pricing';
|
|
}
|
|
}
|