File: //proc/self/cwd/wp-content/plugins/ftech-plugin/elementor/widgets/pricing-section.php
<?php
/**
* Elementor Single Widget
* @package ftech Tools
* @since 1.0.0
*/
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly.
class Ftech_Pricing_Section extends Widget_Base {
/**
* Get widget name.
*
* Retrieve Elementor widget name.
*
* @since 1.0.0
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'go-pricing-section';
}
/**
* Get widget title.
*
* Retrieve Elementor widget title.
*
* @since 1.0.0
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return esc_html__( 'Pricing Section', 'ftech-plugin' );
}
/**
* Get widget icon.
*
* Retrieve Elementor widget icon.
*
* @since 1.0.0
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'ftech-custom-icon';
}
/**
* Get widget categories.
*
* Retrieve the list of categories the Elementor widget belongs to.
*
* @since 1.0.0
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return [ 'ftech_widgets' ];
}
protected function register_controls() {
$this->start_controls_section(
'int_widget_opt',
[
'label' => esc_html__( 'Pricing Section', 'ftech-plugin' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'style',
[
'label' => esc_html__( 'Style', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '1',
'options' => [
'1' => esc_html__( 'Style 1', 'ftech-plugin' ),
]
]
);
$this->end_controls_section();
$this->start_controls_section(
'int_heading_opt',
[
'label' => esc_html__( 'Heading Option', 'ftech-plugin' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'subtitle', [
'label' => esc_html__( 'Sub Title', 'ftech-plugin' ),
'default' => esc_html__( 'Get To Know Us', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$this->add_control(
'title', [
'label' => esc_html__( 'Title', 'ftech-plugin' ),
'default' => esc_html__( 'Section Title', 'ftech-plugin' ),
'type' => Controls_Manager::TEXTAREA,
'label_block' => true,
]
);
$this->add_control(
'title_tag',
[
'label' => __( 'Title HTML Tag', 'ftech-plugin' ),
'type' => Controls_Manager::CHOOSE,
'options' => [
'h1' => [
'title' => __( 'H1', 'ftech-plugin' ),
'icon' => 'eicon-editor-h1',
],
'h2' => [
'title' => __( 'H2', 'ftech-plugin' ),
'icon' => 'eicon-editor-h2',
],
'h3' => [
'title' => __( 'H3', 'ftech-plugin' ),
'icon' => 'eicon-editor-h3',
],
'h4' => [
'title' => __( 'H4', 'ftech-plugin' ),
'icon' => 'eicon-editor-h4',
],
'h5' => [
'title' => __( 'H5', 'ftech-plugin' ),
'icon' => 'eicon-editor-h5',
],
'h6' => [
'title' => __( 'H6', 'ftech-plugin' ),
'icon' => 'eicon-editor-h6',
],
],
'default' => 'h1',
'toggle' => false,
]
);
$this->add_control(
'description', [
'label' => esc_html__( 'Description', 'ftech-plugin' ),
'type' => Controls_Manager::WYSIWYG,
'label_block' => true,
]
);
$this->end_controls_section();
$this->start_controls_section(
'int_counter_opt',
[
'label' => esc_html__( 'Counter Option', 'ftech-plugin' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'count', [
'label' => esc_html__( 'Count', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$this->add_control(
'counter_title', [
'label' => esc_html__( 'Counter Title', 'ftech-plugin' ),
'type' => Controls_Manager::TEXTAREA,
'label_block' => true,
]
);
$this->add_control(
'prefix', [
'label' => esc_html__( 'Prefix', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$this->end_controls_section();
$this->start_controls_section(
'--pricing-tab-option',
[
'label' => esc_html__( 'Pricing Tab Option', 'ftech-plugin' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'p_img', [
'label' => esc_html__( 'Pricing Image', 'gesto-plugin' ),
'type' => Controls_Manager::MEDIA,
'label_block' => true,
]
);
$this->add_control(
'p_shape', [
'label' => esc_html__( 'Pricing Shape', 'gesto-plugin' ),
'type' => Controls_Manager::MEDIA,
'label_block' => true,
]
);
$repeater = new \Elementor\Repeater();
$repeater->add_control(
'title', [
'label' => esc_html__( 'Title', 'ftech-plugin' ),
'default' => esc_html__( 'Essential', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$repeater->add_control(
'desc', [
'label' => esc_html__( 'Description', 'ftech-plugin' ),
'default' => esc_html__( 'Great for Basic ui/ux design Needs', 'ftech-plugin' ),
'type' => Controls_Manager::TEXTAREA,
'label_block' => true,
]
);
$repeater->add_control(
'price', [
'label' => esc_html__( 'Price', 'ftech-plugin' ),
'default' => esc_html__( '100', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$repeater->add_control(
'currency', [
'label' => esc_html__( 'Currency', 'ftech-plugin' ),
'default' => esc_html__( '$', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$repeater->add_control(
'preiod', [
'label' => esc_html__( 'Preiod', 'ftech-plugin' ),
'default' => esc_html__( '/month', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$repeater->add_control(
'list_title', [
'label' => esc_html__( 'List Title', 'ftech-plugin' ),
'default' => esc_html__( 'what"s inculed:', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$repeater->add_control(
'pricing_lists',
[
'label' => __('Add Pricing Lists', 'ftech-plugin'),
'type' => Controls_Manager::REPEATER,
'fields' => [
// social link
[
'name' => 'list_title',
'label' => __('List Title', 'ftech-plugin'),
'type' => Controls_Manager::TEXT,
],
],
],
);
$repeater->add_control(
'list_title2', [
'label' => esc_html__( 'List Title 2', 'ftech-plugin' ),
'default' => esc_html__( 'what"s inculed:', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$repeater->add_control(
'pricing_lists_2',
[
'label' => __('Add Pricing Lists Two', 'ftech-plugin'),
'type' => Controls_Manager::REPEATER,
'prevent_empty'=> false,
'fields' => [
// social link
[
'name' => 'list_title',
'label' => __('List Title', 'ftech-plugin'),
'type' => Controls_Manager::TEXT,
],
],
],
);
$repeater->add_control(
'btn_label', [
'label' => esc_html__( 'Button Label', 'ftech-plugin' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
]
);
$repeater->add_control(
'link', [
'label' => esc_html__( 'Link', 'ftech-plugin' ),
'type' => Controls_Manager::URL,
'label_block' => true,
]
);
$this->add_control(
'pricings',
[
'label' => esc_html__( 'Add Pricing Item', 'goyto-plugin' ),
'type' => \Elementor\Controls_Manager::REPEATER,
'prevent_empty'=> false,
'fields' => $repeater->get_controls(),
'title_field' => '{{{ title }}}',
]
);
$this->end_controls_section();
$this->start_controls_section(
'slider_setting',
[
'label' => esc_html__( 'ON/OFF Setting Option', 'ftech-plugin' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'sub_title_show',
[
'label' => esc_html__( 'Show Sub Title', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Show', 'ftech-plugin' ),
'label_off' => esc_html__( 'Hide', 'ftech-plugin' ),
'return_value' => 'yes',
'default' => 'yes',
]
);
$this->add_control(
'desc_show',
[
'label' => esc_html__( 'Show Description', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Show', 'ftech-plugin' ),
'label_off' => esc_html__( 'Hide', 'ftech-plugin' ),
'return_value' => 'yes',
'default' => 'yes',
]
);
$this->add_control(
'counter_show',
[
'label' => esc_html__( 'Show/Hide Counter', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Show', 'ftech-plugin' ),
'label_off' => esc_html__( 'Hide', 'ftech-plugin' ),
'return_value' => 'yes',
'default' => 'yes',
]
);
$this->end_controls_section();
// Sub title style
$this->start_controls_section(
'slider_sub_title_style',
[
'label' => esc_html__( 'Sub Title Style', 'ftech-plugin' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_responsive_control(
'margin',
[
'label' => esc_html__( 'Sub Title Margin', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
'selectors' => [
'{{WRAPPER}} .elementor-ftech-sub' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'sub_title_color',
[
'label' => esc_html__( 'Sub Title Color', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ftc-subtitle-1:is(.has-color-pr)' => 'color: {{VALUE}}',
'{{WRAPPER}} .ftc-subtitle-1:is(.has-color-pr) .line' => 'background-color: {{VALUE}}',
],
]
);
// typography
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'm_s_typography',
'selector' => '{{WRAPPER}} .elementor-ftech-sub',
]
);
$this->end_controls_section();
// title style
$this->start_controls_section(
'slider_title_style',
[
'label' => esc_html__( 'Title Style', 'ftech-plugin' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_responsive_control(
'title_margin',
[
'label' => esc_html__( 'Sub Title Margin', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
'selectors' => [
'{{WRAPPER}} .elementor-gt-heading' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'm_t_typography',
'selector' => '{{WRAPPER}} .elementor-gt-heading',
]
);
$this->add_control(
'title_color',
[
'label' => esc_html__( 'Title Color', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-gt-heading' => 'color: {{VALUE}}',
],
]
);
$this->end_controls_section();
// description style
$this->start_controls_section(
'slider_description_style',
[
'label' => esc_html__( 'Description Style', 'ftech-plugin' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_responsive_control(
'desc_margin',
[
'label' => esc_html__( 'Desc Margin', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
'selectors' => [
'{{WRAPPER}} .elementor-gt-desc p' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
// typography
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'm_d_typography',
'selector' => '{{WRAPPER}} .elementor-gt-desc p',
]
);
// description color
$this->add_control(
'description_color',
[
'label' => esc_html__( 'Description Color', 'ftech-plugin' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .elementor-gt-desc p' => 'color: {{VALUE}}',
],
]
);
// end
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
require __DIR__ . '/view/pricing-section/pricing-' . $settings['style'] . '.php';
}
}
Plugin::instance()->widgets_manager->register( new Ftech_Pricing_Section() );