Your IP : 216.73.216.0
<?php
namespace Layerdrops\Zeinet\Widgets;
class About extends \Elementor\Widget_Base
{
public function get_name()
{
return 'zeinet-about';
}
public function get_title()
{
return __('About', 'zeinet-addon');
}
public function get_icon()
{
return 'eicon-cogs';
}
public function get_categories()
{
return ['zeinet-category'];
}
protected function register_controls()
{
$this->start_controls_section(
'layout_section',
[
'label' => __('Layout', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'layout_type',
[
'label' => __('Select Layout', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::SELECT2,
'default' => 'layout_one',
'options' => [
'layout_one' => __('Layout One', 'zeinet-addon'),
'layout_two' => __('Layout Two', 'zeinet-addon'),
'layout_three' => __('Layout Three', 'zeinet-addon'),
'layout_four' => __('Layout Four', 'zeinet-addon'),
'layout_five' => __('Layout Five', 'zeinet-addon'),
'layout_six' => __('Layout Six', 'zeinet-addon'),
'layout_seven' => __('Layout Seven', 'zeinet-addon'),
'layout_eight' => __('Layout Eight', 'zeinet-addon'),
'layout_nine' => __('Layout Nine', 'zeinet-addon'),
'layout_ten' => __('Layout Ten', 'zeinet-addon'),
'layout_eleven' => __('Layout Eleven', 'zeinet-addon'),
]
]
);
$this->end_controls_section();
//layout_one
$this->start_controls_section(
'layout_one_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_one'
]
]
]
]
);
$this->add_control(
'layout_one_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon'),
]
);
$this->add_control(
'layout_one_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Default Sub Title', 'zeinet-addon'),
]
);
$this->add_control(
'layout_one_highlighted_text',
[
'label' => __('Highlighted Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Highlighted Text', 'zeinet-addon'),
'default' => __('Default Highlighted Text', 'zeinet-addon'),
]
);
$this->add_control(
'layout_one_summary',
[
'label' => __('Summary', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon'),
]
);
$layout_one_check_list = new \Elementor\Repeater();
$layout_one_check_list->add_control(
'title',
[
'label' => __('Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Internet & TV service solutions', 'zeinet-addon'),
'label_block' => true
]
);
$layout_one_check_list->add_control(
'icon',
[
'label' => __('Icon', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::ICONS,
'default' => [
'value' => 'fa fa-arrow-right',
'library' => 'custom-icon',
],
]
);
$this->add_control(
'layout_one_check_list',
[
'label' => __('Check List', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::REPEATER,
'prevent_empty' => false,
'fields' => $layout_one_check_list->get_controls(),
'title_field' => '{{{ title }}}',
]
);
$this->add_control(
'layout_one_button_label',
[
'label' => __('Button Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Discover more', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_one_button_url',
[
'label' => __('Button Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::URL,
'placeholder' => __('#', 'zeinet-addon'),
'show_external' => false,
'default' => [
'url' => '#',
'is_external' => false,
'nofollow' => true,
],
'show_label' => false,
]
);
$this->add_control(
'layout_one_btn_shape',
[
'label' => __('Button Shape', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
]
);
$this->end_controls_section();
//layout_one_image
$this->start_controls_section(
'section_image_one',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_one'
]
]
]
]
);
$this->add_control(
'layout_one_image_one',
[
'label' => __('Image One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_one_image_two',
[
'label' => __('Image Two', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_one_count_number',
[
'label' => __('Count Number', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('123', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_one_count_text',
[
'label' => __('Count Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Awesome text', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_one_image_shape',
[
'label' => __('Image Shape', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_one_background_image',
[
'label' => __('Background Image', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section();
$this->start_controls_section(
'layout_two_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_two'
]
]
]
]
);
$this->add_control(
'layout_two_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('We’re Cleaning for you Since 1987', 'zeinet-addon')
]
);
$this->add_control(
'layout_two_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Best Experts in Cleaning', 'zeinet-addon')
]
);
$this->add_control(
'layout_two_summary',
[
'label' => __('Summary', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon')
]
);
$this->add_control(
'layout_two_price',
[
'label' => __('Price', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Price ', 'zeinet-addon'),
'default' => wp_kses(__('<sup>$</sup> 29.99 <span>/month</span>', 'zeinet-addon'), 'zeinet_allowed_tags')
]
);
$this->add_control(
'layout_two_price_title',
[
'label' => __('Price Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Price Title', 'zeinet-addon'),
'default' => __('Internet with TV box', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_two_price_icon',
[
'label' => __('Price Icon', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::ICONS,
'default' => [
'value' => 'icon-tv-box',
'library' => 'custom-icon',
],
]
);
$this->add_control(
'layout_two_video_title',
[
'label' => __('Video Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Watch the Video', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_two_video_url',
[
'label' => __('Video Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('#', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_two_video_icon',
[
'label' => __('Video Icon Image', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
]
);
$this->add_control(
'layout_two_button_label',
[
'label' => __('Button Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Let’s get started', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_two_button_url',
[
'label' => __('Button Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::URL,
'placeholder' => __('#', 'zeinet-addon'),
'show_external' => false,
'default' => [
'url' => '#',
'is_external' => false,
'nofollow' => true,
],
'show_label' => false,
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_image_two',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_two'
]
]
]
]
);
$this->add_control(
'layout_two_image',
[
'label' => __('Image', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_two_shape_one',
[
'label' => __('Shape One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_two_shape_two',
[
'label' => __('Shape Two', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_two_shape_three',
[
'label' => __('Shape Three', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section();
$this->start_controls_section(
'layout_three_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_three'
]
]
]
]
);
$this->add_control(
'layout_three_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_three_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Default Sub Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_three_summary',
[
'label' => __('Summary Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary Text', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon')
]
);
$layout_three_feature_list = new \Elementor\Repeater();
$layout_three_feature_list->add_control(
'title',
[
'label' => __('Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Feature Title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon')
]
);
$layout_three_feature_list->add_control(
'content',
[
'label' => __('Content', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Feature Text', 'zeinet-addon'),
'default' => __('Default Content', 'zeinet-addon')
]
);
$layout_three_feature_list->add_control(
'icon',
[
'label' => __('Icon', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::ICONS,
'default' => [
'value' => 'icon-4k-1',
'library' => 'custom-icon',
],
]
);
$this->add_control(
'layout_three_feature_list',
[
'label' => __('Features', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::REPEATER,
'prevent_empty' => false,
'fields' => $layout_three_feature_list->get_controls(),
'title_field' => '{{{ title }}}',
]
);
$this->end_controls_section(); //end layout_three_content
//layout_three_image
$this->start_controls_section(
'section_image_three',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_three'
]
]
]
]
);
$this->add_control(
'layout_three_image_one',
[
'label' => __('Image One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_three_caption_text',
[
'label' => __('Caption Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => wp_kses(__('Internet <br> services', 'zeinet-addon'), 'zeinet_allowed_tags'),
'label_block' => true,
]
);
$this->add_control(
'layout_three_shape',
[
'label' => __('Shape', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_three_image_shape',
[
'label' => __('Image Icon', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section(); //end layout_three_image
//layout_four
$this->start_controls_section(
'layout_four_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_four'
]
]
]
]
);
$this->add_control(
'layout_four_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_four_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Default Sub Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_four_summary',
[
'label' => __('Summary', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon')
]
);
$layout_four_features = new \Elementor\Repeater();
$layout_four_features->add_control(
'title',
[
'label' => __('Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Title', 'zeinet-addon'),
'default' => __('Ultra HD quality', 'zeinet-addon'),
'label_block' => true
]
);
$layout_four_features->add_control(
'count_number',
[
'label' => __('Count Number', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Count Number', 'zeinet-addon'),
'default' => __('4', 'zeinet-addon'),
'label_block' => true
]
);
$layout_four_features->add_control(
'count_sign',
[
'label' => __('Count Sign', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Count Sign', 'zeinet-addon'),
'default' => __('K', 'zeinet-addon'),
'label_block' => true
]
);
$layout_four_features->add_control(
'icon',
[
'label' => __('Check Icon', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::ICONS,
'default' => [
'value' => 'icon-hd',
'library' => 'custom-icon',
],
]
);
$this->add_control(
'layout_four_features',
[
'label' => __('Features', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::REPEATER,
'fields' => $layout_four_features->get_controls(),
'prevent_empty' => false,
'title_field' => '{{{ title }}}',
]
);
$this->add_control(
'layout_four_button_label',
[
'label' => __('Button Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Discover More', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_four_button_url',
[
'label' => __('Button Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::URL,
'placeholder' => __('#', 'zeinet-addon'),
'show_external' => false,
'default' => [
'url' => '#',
'is_external' => false,
'nofollow' => true,
],
'show_label' => false,
]
);
$this->end_controls_section(); //end layout_four_content
//layout_four_image
$this->start_controls_section(
'section_image_four',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_four'
]
]
]
]
);
$this->add_control(
'layout_four_image_shape',
[
'label' => __('Image Shape', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_four_image_one',
[
'label' => __('Image One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_four_image_two',
[
'label' => __('Image Two', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_four_image_three',
[
'label' => __('Image Three', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section(); //end layout_three_image
//layout_five
$this->start_controls_section(
'layout_five_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_five'
]
]
]
]
);
$this->add_control(
'layout_five_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Awesome Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_five_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Awesome Sub Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_five_summary',
[
'label' => __('Summary Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary Text', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon')
]
);
$layout_five_features = new \Elementor\Repeater();
$layout_five_features->add_control(
'title',
[
'label' => __('Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon'),
'label_block' => true
]
);
$layout_five_features->add_control(
'content',
[
'label' => __('Default Content', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Content', 'zeinet-addon'),
'default' => __('Default Content', 'zeinet-addon'),
'label_block' => true
]
);
$layout_five_features->add_control(
'icon',
[
'label' => __('Icon', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::ICONS,
'default' => [
'value' => 'fa fa-check',
'library' => 'custom-icon',
],
]
);
$this->add_control(
'layout_five_features',
[
'label' => __('Features', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::REPEATER,
'prevent_empty' => false,
'fields' => $layout_five_features->get_controls(),
'title_field' => '{{{ title }}}',
]
);
$this->end_controls_section(); //end layout_five_content
//layout_five_image
$this->start_controls_section(
'section_image_five',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_five'
]
]
]
]
);
$this->add_control(
'layout_five_image_one',
[
'label' => __('Image One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_five_shape_one',
[
'label' => __('Shape One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_five_shape_two',
[
'label' => __('Shape Two', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_five_shape_text',
[
'label' => __('Shape Two Caption', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'default' => [],
]
);
$this->add_control(
'layout_five_bg_shape',
[
'label' => __('Background Image', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section(); //end layout_five_image
//layout_six
$this->start_controls_section(
'layout_six_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_six'
]
]
]
]
);
$this->add_control(
'layout_six_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon'),
]
);
$this->add_control(
'layout_six_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Default Sub Title', 'zeinet-addon'),
]
);
$this->add_control(
'layout_six_summary',
[
'label' => __('Summary', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon'),
]
);
$layout_six_check_list = new \Elementor\Repeater();
$layout_six_check_list->add_control(
'title',
[
'label' => __('Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Internet & TV service solutions', 'zeinet-addon'),
'label_block' => true
]
);
$layout_six_check_list->add_control(
'icon',
[
'label' => __('Icon', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::ICONS,
'default' => [
'value' => 'fa fa-arrow-right',
'library' => 'custom-icon',
],
]
);
$this->add_control(
'layout_six_check_list',
[
'label' => __('Check List', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::REPEATER,
'prevent_empty' => false,
'fields' => $layout_six_check_list->get_controls(),
'title_field' => '{{{ title }}}',
]
);
$this->add_control(
'layout_six_button_label',
[
'label' => __('Button Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Discover more', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_six_button_url',
[
'label' => __('Button Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::URL,
'placeholder' => __('#', 'zeinet-addon'),
'show_external' => false,
'default' => [
'url' => '#',
'is_external' => false,
'nofollow' => true,
],
'show_label' => false,
]
);
$this->end_controls_section(); //end layout_six_content
//layout_six_image
$this->start_controls_section(
'section_image_six',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_six'
]
]
]
]
);
$this->add_control(
'layout_six_image_one',
[
'label' => __('Image One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_six_image_two',
[
'label' => __('Image Two', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_six_image_three',
[
'label' => __('Image Three', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_six_background_image',
[
'label' => __('Background Image', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section();
//layout_seven
$this->start_controls_section(
'layout_seven_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_seven'
]
]
]
]
);
$this->add_control(
'layout_seven_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_seven_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Default Sub Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_seven_summary',
[
'label' => __('Summary Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary Text', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon')
]
);
$layout_seven_feature_list = new \Elementor\Repeater();
$layout_seven_feature_list->add_control(
'title',
[
'label' => __('Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Title', 'zeinet-addon'),
'default' => __('Adventure', 'zeinet-addon'),
'label_block' => true
]
);
$layout_seven_feature_list->add_control(
'icon',
[
'label' => __('Icon', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::ICONS,
'default' => [
'value' => 'icon-hot-air-balloon',
'library' => 'custom-icon',
],
]
);
$this->add_control(
'layout_seven_feature_list',
[
'label' => __('Feature Lists', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::REPEATER,
'prevent_empty' => false,
'fields' => $layout_seven_feature_list->get_controls(),
'title_field' => '{{{ title }}}',
]
);
$this->add_control(
'layout_seven_button_label',
[
'label' => __('Button Label', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('View all movies & shows', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_seven_button_url',
[
'label' => __('Button Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::URL,
'placeholder' => __('#', 'zeinet-addon'),
'show_external' => false,
'default' => [
'url' => '#',
'is_external' => false,
'nofollow' => true,
],
'show_label' => false,
]
);
$this->add_control(
'layout_seven_bg_shape',
[
'label' => __('Background Shape', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section(); //end layout_seven_content
//layout_eight
$this->start_controls_section(
'layout_eight_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_eight'
]
]
]
]
);
$this->add_control(
'layout_eight_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_eight_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Default Sub Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_eight_summary',
[
'label' => __('Summary Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary Text', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon')
]
);
$this->end_controls_section(); //end layout_eight_content
//layout_eight_image
$this->start_controls_section(
'section_image_eight',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_eight'
]
]
]
]
);
$this->add_control(
'layout_eight_image_one',
[
'label' => __('Image One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_eight_shape',
[
'label' => __('Shape', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_eight_image_caption_price',
[
'label' => __('Image Caption Price', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Image Caption', 'zeinet-addon'),
'default' => __('$36', 'zeinet-addon'),
'label_block' => true
]
);
$this->add_control(
'layout_eight_image_caption_text',
[
'label' => __('Image Caption Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Image Caption', 'zeinet-addon'),
'default' => __('per month', 'zeinet-addon'),
'label_block' => true
]
);
$this->add_control(
'layout_eight_bg_shape',
[
'label' => __('Background Shape', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section();
//layout_nine
$this->start_controls_section(
'layout_nine_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_nine'
]
]
]
]
);
$this->add_control(
'layout_nine_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_nine_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Default Sub Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_nine_summary',
[
'label' => __('Summary Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary Text', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon')
]
);
$this->add_control(
'layout_nine_button_label',
[
'label' => __('Button Label', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Discover More', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_nine_button_url',
[
'label' => __('Button Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::URL,
'placeholder' => __('#', 'zeinet-addon'),
'show_external' => false,
'default' => [
'url' => '#',
'is_external' => false,
'nofollow' => true,
],
'show_label' => false,
]
);
$layout_nine_feature_list = new \Elementor\Repeater();
$layout_nine_feature_list->add_control(
'number',
[
'label' => __('Number', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Number', 'zeinet-addon'),
'default' => __('14', 'zeinet-addon'),
'label_block' => true
]
);
$layout_nine_feature_list->add_control(
'symbol',
[
'label' => __('Symbol', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Symbol', 'zeinet-addon'),
'default' => __('+', 'zeinet-addon'),
'label_block' => true
]
);
$layout_nine_feature_list->add_control(
'title',
[
'label' => __('Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Title', 'zeinet-addon'),
'default' => __('Years of <br> Experience', 'zeinet-addon'),
'label_block' => true
]
);
$this->add_control(
'layout_nine_feature_list',
[
'label' => __('Feature Lists', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::REPEATER,
'prevent_empty' => false,
'fields' => $layout_nine_feature_list->get_controls(),
'title_field' => '{{{ title }}}',
]
);
$this->end_controls_section(); //end layout_nine_content
//layout_nine_image
$this->start_controls_section(
'section_image_nine',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_nine'
]
]
]
]
);
$this->add_control(
'layout_nine_image_one',
[
'label' => __('Image One', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_nine_image_two',
[
'label' => __('Image Two', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_nine_image_three',
[
'label' => __('Image Three', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_nine_bg_image',
[
'label' => __('Background Image', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section();
//layout_ten
$this->start_controls_section(
'layout_ten_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_ten'
]
]
]
]
);
$this->add_control(
'layout_ten_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_ten_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Default Sub Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_ten_summary',
[
'label' => __('Summary Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary Text', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon')
]
);
$this->add_control(
'layout_ten_price_title',
[
'label' => __('Price Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Price Title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon')
]
);
$layout_ten_price_list = new \Elementor\Repeater();
$layout_ten_price_list->add_control(
'symbol',
[
'label' => __('Price Symbol', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Symbol', 'zeinet-addon'),
'default' => __('$', 'zeinet-addon'),
'label_block' => true
]
);
$layout_ten_price_list->add_control(
'price',
[
'label' => __('Price', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Number', 'zeinet-addon'),
'default' => __('20', 'zeinet-addon'),
'label_block' => true
]
);
$layout_ten_price_list->add_control(
'duration',
[
'label' => __('Duration', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add duration', 'zeinet-addon'),
'default' => __('/ 1 month', 'zeinet-addon'),
'label_block' => true
]
);
$layout_ten_price_list->add_control(
'title',
[
'label' => __('Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Title', 'zeinet-addon'),
'default' => __('Years of <br> Experience', 'zeinet-addon'),
'label_block' => true
]
);
$this->add_control(
'layout_ten_price_list',
[
'label' => __('Price Lists', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::REPEATER,
'prevent_empty' => false,
'fields' => $layout_ten_price_list->get_controls(),
'title_field' => '{{{ title }}}',
]
);
$this->add_control(
'layout_ten_button_label',
[
'label' => __('Button Label', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Get Start Now', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_ten_button_url',
[
'label' => __('Button Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::URL,
'placeholder' => __('#', 'zeinet-addon'),
'show_external' => false,
'default' => [
'url' => '#',
'is_external' => false,
'nofollow' => true,
],
'show_label' => false,
]
);
$this->add_control(
'layout_ten_call_image',
[
'label' => __('Call Image', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_ten_call_text',
[
'label' => __('Call Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Emergency', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_ten_call_number',
[
'label' => __('Call Number', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Emergency', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_ten_call_url',
[
'label' => __('Call Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('tel:+99012356987', 'zeinet-addon'),
'label_block' => true,
]
);
$this->end_controls_section(); //end layout_ten_content
//layout_ten_image
$this->start_controls_section(
'section_image_ten',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_ten'
]
]
]
]
);
$this->add_control(
'layout_ten_image',
[
'label' => __('Image ', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_ten_bg_image',
[
'label' => __('Background Image', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_ten_bg_shape',
[
'label' => __('Background Shape', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->end_controls_section();
//layout_eleven
$this->start_controls_section(
'layout_eleven_content',
[
'label' => __('Content', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_eleven'
]
]
]
]
);
$this->add_control(
'layout_eleven_sec_title',
[
'label' => __('Section Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add title', 'zeinet-addon'),
'default' => __('Default Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_eleven_sec_sub_title',
[
'label' => __('Section Sub Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Sub title', 'zeinet-addon'),
'default' => __('Default Sub Title', 'zeinet-addon')
]
);
$this->add_control(
'layout_eleven_summary',
[
'label' => __('Summary Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'placeholder' => __('Add Summary Text', 'zeinet-addon'),
'default' => __('Default Summary Text', 'zeinet-addon')
]
);
$layout_eleven_features_list = new \Elementor\Repeater();
$layout_eleven_features_list->add_control(
'title',
[
'label' => __('Title', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Title', 'zeinet-addon'),
'default' => __('4K Ultra HD Quality', 'zeinet-addon'),
'label_block' => true
]
);
$layout_eleven_features_list->add_control(
'summary_text',
[
'label' => __('Summary Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'placeholder' => __('Add Summary Text', 'zeinet-addon'),
'default' => __('Default Text', 'zeinet-addon'),
'label_block' => true
]
);
$layout_eleven_features_list->add_control(
'icon',
[
'label' => __('Icon', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::ICONS,
'default' => [
'value' => 'zeinet-icons-two-camera',
'library' => 'custom-icon',
],
]
);
$this->add_control(
'layout_eleven_features_list',
[
'label' => __('Feature Lists', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::REPEATER,
'prevent_empty' => false,
'fields' => $layout_eleven_features_list->get_controls(),
'title_field' => '{{{ title }}}',
]
);
$this->add_control(
'layout_eleven_button_label',
[
'label' => __('Button Label', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('More About US', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_eleven_button_url',
[
'label' => __('Button Url', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::URL,
'placeholder' => __('#', 'zeinet-addon'),
'show_external' => false,
'default' => [
'url' => '#',
'is_external' => false,
'nofollow' => true,
],
'show_label' => false,
]
);
$this->end_controls_section(); //end layout_eleven_content
//layout_eleven_image
$this->start_controls_section(
'section_image_eleven',
[
'label' => __('Image', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'conditions' => [
'terms' => [
[
'name' => 'layout_type',
'operator' => '==',
'value' => 'layout_eleven'
]
]
]
]
);
$this->add_control(
'layout_eleven_image_one',
[
'label' => __('Image One ', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'layout_eleven_image_two',
[
'label' => __('Image Two ', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_eleven_shape',
[
'label' => __('Shape', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [],
]
);
$this->add_control(
'layout_eleven_count_number',
[
'label' => __('Count Number', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('35', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_eleven_symbol',
[
'label' => __('Symbol', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('+', 'zeinet-addon'),
'label_block' => true,
]
);
$this->add_control(
'layout_eleven_count_text',
[
'label' => __('Count Text', 'zeinet-addon'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => __('Years Experience', 'zeinet-addon'),
'label_block' => true,
]
);
$this->end_controls_section();
//General style
$this->start_controls_section(
'general_style',
[
'label' => esc_html__('Style Options', 'zeinet-addon'),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
]
);
zeinet_typo_and_color_options($this, 'Section Title', '{{WRAPPER}} .section-title__title', ['layout_one', 'layout_two', 'layout_three', 'layout_four', 'layout_five', 'layout_six', 'layout_seven', 'layout_eight', 'layout_nine', 'layout_ten', 'layout_eleven']);
zeinet_typo_and_color_options($this, 'Section Sub Title', '{{WRAPPER}} .section-title__tagline', ['layout_one', 'layout_two', 'layout_three', 'layout_four', 'layout_five', 'layout_six', 'layout_seven', 'layout_eight', 'layout_nine', 'layout_ten', 'layout_eleven']);
zeinet_typo_and_color_options($this, 'Highlighted Text', '{{WRAPPER}} .about-one__text-1', ['layout_one']);
zeinet_typo_and_color_options($this, 'Summary Text', '{{WRAPPER}} .about-one__text-2, {{WRAPPER}} .save-money__text,{{WRAPPER}} .live-sports__text, {{WRAPPER}} .about-two__text,{{WRAPPER}} .benefits__text, {{WRAPPER}} .about-four__text-1, {{WRAPPER}} .categories-one__text,{{WRAPPER}} .watch-devices__text,{{WRAPPER}} .about-five__content__text,{{WRAPPER}} .about-six__content__text', ['layout_one', 'layout_two', 'layout_three', 'layout_four', 'layout_five', 'layout_six', 'layout_seven', 'layout_eight', 'layout_nine', 'layout_ten', 'layout_eleven']);
zeinet_typo_and_color_options($this, 'Features Title', '{{WRAPPER}} .live-sports__points li .content h4,{{WRAPPER}} .about-two__points li .content p,{{WRAPPER}} .benefits__list li .content h4,{{WRAPPER}} .categories-one__title,{{WRAPPER}} .about-five__counter__text,{{WRAPPER}} .about-six__box__title', ['layout_three', 'layout_four', 'layout_five', 'layout_seven', 'layout_nine', 'layout_eleven']);
zeinet_typo_and_color_options($this, 'Features Content', '{{WRAPPER}} .live-sports__points li .content p,{{WRAPPER}} .benefits__list li .content p,{{WRAPPER}} .about-six__box__text', ['layout_three', 'layout_five', 'layout_eleven']);
zeinet_typo_and_color_options($this, 'Check List Title', '{{WRAPPER}} .about-one__points li .text p,{{WRAPPER}} .about-four__points li .text p', ['layout_one', 'layout_six']);
zeinet_typo_and_color_options($this, 'Price Title', '{{WRAPPER}} .about-one__points li .text p,{{WRAPPER}} .save-money__bundal-text,{{WRAPPER}} .offer-one__content__heading', ['layout_two', 'layout_ten']);
zeinet_typo_and_color_options($this, 'Price ', '{{WRAPPER}} .offer-one__content__price li span', ['layout_ten']);
zeinet_typo_and_color_options($this, 'Price Duration', '{{WRAPPER}} .offer-one__content__price li', ['layout_ten']);
zeinet_typo_and_color_options($this, 'Video Text', '{{WRAPPER}} .about-one__points li .text p, {{WRAPPER}} .save-money__video-text', ['layout_two']);
zeinet_typo_and_color_options($this, 'Image Caption', '{{WRAPPER}} .about-six__image__right__history__text', ['layout_eleven']);
zeinet_typo_and_color_options($this, 'Image Caption Count', '{{WRAPPER}} .about-six__image__right__history__number span', ['layout_eleven']);
zeinet_typo_and_color_options($this, 'Call Text', '{{WRAPPER}} .offer-one__content__info__title', ['layout_ten']);
zeinet_typo_and_color_options($this, 'Call Number', '{{WRAPPER}} .offer-one__content__info__text a, {{WRAPPER}} .save-money__video-text', ['layout_ten']);
zeinet_typo_and_color_options($this, 'Button', '{{WRAPPER}} .thm-btn', ['layout_one', 'layout_two', 'layout_four', 'layout_six', 'layout_seven', 'layout_nine', 'layout_ten', 'layout_eleven']);
zeinet_typo_and_color_options($this, 'Button Background', '{{WRAPPER}} .thm-btn', ['layout_one', 'layout_two', 'layout_four', 'layout_six', 'layout_seven', 'layout_nine', 'layout_ten', 'layout_eleven'], 'background-color', false);
$this->end_controls_section();
}
protected function render()
{
$settings = $this->get_settings_for_display();
include zeinet_get_template('about-one.php');
include zeinet_get_template('about-two.php');
include zeinet_get_template('about-three.php');
include zeinet_get_template('about-four.php');
include zeinet_get_template('about-five.php');
include zeinet_get_template('about-six.php');
include zeinet_get_template('about-seven.php');
include zeinet_get_template('about-eight.php');
include zeinet_get_template('about-nine.php');
include zeinet_get_template('about-ten.php');
include zeinet_get_template('about-eleven.php');
}
}