D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
www
/
lalpathamroha.site
/
wp-content
/
plugins
/
tp-core
/
include
/
elementor
/
Filename :
job-list.php
back
Copy
<?php namespace TPCore\Widgets; use Elementor\Widget_Base; use Elementor\Controls_Manager; use \Elementor\Group_Control_Background; use \Elementor\Group_Control_Image_Size; use \Elementor\Repeater; use \Elementor\Utils; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly /** * Tp Core * * Elementor widget for hello world. * * @since 1.0.0 */ class TP_Job_List extends Widget_Base { use \TPCore\Widgets\TPCoreElementFunctions; /** * Retrieve the widget name. * * @since 1.0.0 * * @access public * * @return string Widget name. */ public function get_name() { return 'job-list'; } /** * Retrieve the widget title. * * @since 1.0.0 * * @access public * * @return string Widget title. */ public function get_title() { return __( 'Job List', 'tpcore' ); } /** * Retrieve the widget icon. * * @since 1.0.0 * * @access public * * @return string Widget icon. */ public function get_icon() { return 'tp-icon'; } /** * Retrieve the list of categories the widget belongs to. * * Used to determine where to display the widget in the editor. * * Note that currently Elementor supports only one category. * When multiple categories passed, Elementor uses the first one. * * @since 1.0.0 * * @access public * * @return array Widget categories. */ public function get_categories() { return [ 'tpcore' ]; } /** * Retrieve the list of scripts the widget depended on. * * Used to set scripts dependencies required to run the widget. * * @since 1.0.0 * * @access public * * @return array Widget scripts dependencies. */ public function get_script_depends() { return [ 'tpcore' ]; } /** * Register the widget controls. * * Adds different input fields to allow the user to change and customize the widget settings. * * @since 1.0.0 * * @access protected */ protected function register_controls() { // layout Panel $this->start_controls_section( 'tp_layout', [ 'label' => esc_html__('Design Layout', 'tpcore'), ] ); $this->add_control( 'tp_design_style', [ 'label' => esc_html__('Select Layout', 'tpcore'), 'type' => Controls_Manager::SELECT, 'options' => [ 'layout-1' => esc_html__('Layout 1', 'tpcore'), 'layout-2' => esc_html__('Layout 2', 'tpcore'), ], 'default' => 'layout-1', ] ); $this->end_controls_section(); // tp_section_title $this->start_controls_section( 'tp_section_title', [ 'label' => esc_html__('Title & Content', 'tpcore'), ] ); $this->add_control( 'tp_section_title_show', [ 'label' => esc_html__( 'Section Title & Content', 'tpcore' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'tpcore' ), 'label_off' => esc_html__( 'Hide', 'tpcore' ), 'return_value' => 'yes', 'default' => 'yes', ] ); $this->add_control( 'tp_sub_title', [ 'label' => esc_html__('Sub Title', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'basic' ), 'type' => Controls_Manager::TEXT, 'default' => esc_html__('TP Sub Title', 'tpcore'), 'placeholder' => esc_html__('Type Sub Heading Text', 'tpcore'), 'label_block' => true, ] ); $this->add_control( 'tp_title', [ 'label' => esc_html__('Title', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'intermediate' ), 'type' => Controls_Manager::TEXT, 'default' => esc_html__('TP Title Here', 'tpcore'), 'placeholder' => esc_html__('Type Heading Text', 'tpcore'), 'label_block' => true, ] ); $this->add_control( 'tp_description', [ 'label' => esc_html__('Description', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'intermediate' ), 'type' => Controls_Manager::TEXTAREA, 'default' => esc_html__('TP section description here', 'tpcore'), 'placeholder' => esc_html__('Type section description here', 'tpcore'), ] ); $this->add_control( 'tp_title_tag', [ 'label' => esc_html__('Title HTML Tag', 'tpcore'), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'h1' => [ 'title' => esc_html__('H1', 'tpcore'), 'icon' => 'eicon-editor-h1' ], 'h2' => [ 'title' => esc_html__('H2', 'tpcore'), 'icon' => 'eicon-editor-h2' ], 'h3' => [ 'title' => esc_html__('H3', 'tpcore'), 'icon' => 'eicon-editor-h3' ], 'h4' => [ 'title' => esc_html__('H4', 'tpcore'), 'icon' => 'eicon-editor-h4' ], 'h5' => [ 'title' => esc_html__('H5', 'tpcore'), 'icon' => 'eicon-editor-h5' ], 'h6' => [ 'title' => esc_html__('H6', 'tpcore'), 'icon' => 'eicon-editor-h6' ] ], 'default' => 'h2', 'toggle' => false, ] ); $this->add_responsive_control( 'tp_align', [ 'label' => esc_html__('Alignment', 'tpcore'), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__('Left', 'tpcore'), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__('Center', 'tpcore'), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__('Right', 'tpcore'), 'icon' => 'eicon-text-align-right', ], ], 'default' => 'left', 'toggle' => false, 'selectors' => [ '{{WRAPPER}}' => 'text-align: {{VALUE}};' ] ] ); $this->end_controls_section(); // Service group $this->start_controls_section( 'tp_services', [ 'label' => esc_html__('Services List', 'tpcore'), 'description' => esc_html__( 'Control all the style settings from Style tab', 'tpcore' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $repeater = new \Elementor\Repeater(); $repeater->add_control( 'repeater_condition', [ 'label' => __( 'Field condition', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'style_1' => __( 'Style 1', 'tpcore' ), 'style_2' => __( 'Style 2', 'tpcore' ), ], 'default' => 'style_1', 'frontend_available' => true, 'style_transfer' => true, ] ); $repeater->add_control( 'tp_bg_image', [ 'label' => esc_html__('Image', 'tpcore'), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], 'condition' => [ 'repeater_condition' => 'style_1' ] ] ); $repeater->add_control( 'tp_service_icon_type', [ 'label' => esc_html__('Select Icon Type', 'tpcore'), 'type' => \Elementor\Controls_Manager::SELECT, 'default' => 'image', 'options' => [ 'image' => esc_html__('Image', 'tpcore'), 'icon' => esc_html__('Icon', 'tpcore'), ], 'condition' => [ 'repeater_condition' => 'style_2' ] ] ); $repeater->add_control( 'tp_service_image', [ 'label' => esc_html__('Upload Icon Image', 'tpcore'), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], 'condition' => [ 'tp_service_icon_type' => 'image', 'repeater_condition' => 'style_2' ] ] ); if (tp_is_elementor_version('<', '2.6.0')) { $repeater->add_control( 'tp_service_icon', [ 'show_label' => false, 'type' => Controls_Manager::ICON, 'label_block' => true, 'default' => 'fa fa-star', 'condition' => [ 'tp_service_icon_type' => 'icon' ] ] ); } else { $repeater->add_control( 'tp_service_selected_icon', [ 'show_label' => false, 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'icon', 'label_block' => true, 'default' => [ 'value' => 'fas fa-star', 'library' => 'solid', ], 'condition' => [ 'tp_service_icon_type' => 'icon' ] ] ); } $repeater->add_control( 'tp_service_title', [ 'label' => esc_html__('Title', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'basic' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => esc_html__('Job Title', 'tpcore'), 'label_block' => true, ] ); $repeater->add_control( 'tp_service_category', [ 'label' => esc_html__('Job Category', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'intermediate' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => 'Job Caterogy', 'label_block' => true, ] ); $repeater->add_control( 'tp_service_status', [ 'label' => esc_html__('Job Status', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'intermediate' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => 'Job Status', 'label_block' => true, ] ); $repeater->add_control( 'tp_service_price', [ 'label' => esc_html__('Salary Range', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'intermediate' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => 'Salary Range', 'label_block' => true, ] ); $repeater->add_control( 'tp_service_employe', [ 'label' => esc_html__('Contract', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'intermediate' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => 'Employe Contract', 'label_block' => true, ] ); $repeater->add_control( 'tp_service_place', [ 'label' => esc_html__('Job Place', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'intermediate' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => 'Job Place', 'label_block' => true, ] ); $repeater->add_control( 'tp_portfolio_link_switcher', [ 'label' => esc_html__( 'Add Services link', 'tpcore' ), 'type' => \Elementor\Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'tpcore' ), 'label_off' => esc_html__( 'No', 'tpcore' ), 'return_value' => 'yes', 'default' => 'yes', 'separator' => 'before', ] ); $repeater->add_control( 'tp_portfolio_btn_text', [ 'label' => esc_html__('Button Text', 'tpcore'), 'type' => Controls_Manager::TEXT, 'default' => esc_html__('Button Text', 'tpcore'), 'title' => esc_html__('Enter button text', 'tpcore'), 'label_block' => true, 'condition' => [ 'tp_portfolio_link_switcher' => 'yes' ], ] ); $repeater->add_control( 'tp_portfolio_link_type', [ 'label' => esc_html__( 'Service Link Type', 'tpcore' ), 'type' => \Elementor\Controls_Manager::SELECT, 'options' => [ '1' => 'Custom Link', '2' => 'Internal Page', ], 'default' => '1', 'condition' => [ 'tp_portfolio_link_switcher' => 'yes' ] ] ); $repeater->add_control( 'tp_portfolio_link', [ 'label' => esc_html__( 'Service Link link', 'tpcore' ), 'type' => \Elementor\Controls_Manager::URL, 'dynamic' => [ 'active' => true, ], 'placeholder' => esc_html__( 'https://your-link.com', 'tpcore' ), 'show_external' => true, 'default' => [ 'url' => '#', 'is_external' => false, 'nofollow' => false, ], 'condition' => [ 'tp_portfolio_link_type' => '1', 'tp_portfolio_link_switcher' => 'yes', ] ] ); $repeater->add_control( 'tp_portfolio_page_link', [ 'label' => esc_html__( 'Select Service Link Page', 'tpcore' ), 'type' => \Elementor\Controls_Manager::SELECT2, 'label_block' => true, 'options' => tp_get_all_pages(), 'condition' => [ 'tp_portfolio_link_type' => '2', 'tp_portfolio_link_switcher' => 'yes', ] ] ); $this->add_control( 'tp_service_list', [ 'label' => esc_html__('Services - List', 'tpcore'), 'type' => \Elementor\Controls_Manager::REPEATER, 'fields' => $repeater->get_controls(), 'default' => [ [ 'tp_service_title' => esc_html__('Business Stratagy', 'tpcore'), ], [ 'tp_service_title' => esc_html__('Website Development', 'tpcore') ], [ 'tp_service_title' => esc_html__('Marketing & Reporting', 'tpcore') ] ], 'title_field' => '{{{ tp_service_title }}}', ] ); $this->add_responsive_control( 'tp_service_align', [ 'label' => esc_html__( 'Alignment', 'tpcore' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'text-left' => [ 'title' => esc_html__( 'Left', 'tpcore' ), 'icon' => 'eicon-text-align-left', ], 'text-center' => [ 'title' => esc_html__( 'Center', 'tpcore' ), 'icon' => 'eicon-text-align-center', ], 'text-right' => [ 'title' => esc_html__( 'Right', 'tpcore' ), 'icon' => 'eicon-text-align-right', ], ], 'toggle' => true, 'separator' => 'before', ] ); $this->end_controls_section(); // tp_services_columns_section $this->start_controls_section( 'tp_services_columns_section', [ 'label' => esc_html__('Services - Columns', 'tpcore'), ] ); $this->add_control( 'tp_col_for_desktop', [ 'label' => esc_html__( 'Columns for Desktop', 'tpcore' ), 'description' => esc_html__( 'Screen width equal to or greater than 992px', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'options' => [ 12 => esc_html__( '1 Columns', 'tpcore' ), 6 => esc_html__( '2 Columns', 'tpcore' ), 4 => esc_html__( '3 Columns', 'tpcore' ), 3 => esc_html__( '4 Columns', 'tpcore' ), 2 => esc_html__( '6 Columns', 'tpcore' ), 1 => esc_html__( '12 Columns', 'tpcore' ), ], 'separator' => 'before', 'default' => '4', 'style_transfer' => true, ] ); $this->add_control( 'tp_col_for_laptop', [ 'label' => esc_html__( 'Columns for Laptop', 'tpcore' ), 'description' => esc_html__( 'Screen width equal to or greater than 768px', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'options' => [ 12 => esc_html__( '1 Columns', 'tpcore' ), 6 => esc_html__( '2 Columns', 'tpcore' ), 4 => esc_html__( '3 Columns', 'tpcore' ), 3 => esc_html__( '4 Columns', 'tpcore' ), 2 => esc_html__( '6 Columns', 'tpcore' ), 1 => esc_html__( '12 Columns', 'tpcore' ), ], 'separator' => 'before', 'default' => '4', 'style_transfer' => true, ] ); $this->add_control( 'tp_col_for_tablet', [ 'label' => esc_html__( 'Columns for Tablet', 'tpcore' ), 'description' => esc_html__( 'Screen width equal to or greater than 576px', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'options' => [ 12 => esc_html__( '1 Columns', 'tpcore' ), 6 => esc_html__( '2 Columns', 'tpcore' ), 4 => esc_html__( '3 Columns', 'tpcore' ), 3 => esc_html__( '4 Columns', 'tpcore' ), 2 => esc_html__( '6 Columns', 'tpcore' ), 1 => esc_html__( '12 Columns', 'tpcore' ), ], 'separator' => 'before', 'default' => '6', 'style_transfer' => true, ] ); $this->add_control( 'tp_col_for_mobile', [ 'label' => esc_html__( 'Columns for Mobile', 'tpcore' ), 'description' => esc_html__( 'Screen width less than 576px', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'options' => [ 12 => esc_html__( '1 Columns', 'tpcore' ), 6 => esc_html__( '2 Columns', 'tpcore' ), 4 => esc_html__( '3 Columns', 'tpcore' ), 3 => esc_html__( '4 Columns', 'tpcore' ), 5 => esc_html__( '5 Columns (For Carousel Item)', 'tpcore' ), 2 => esc_html__( '6 Columns', 'tpcore' ), 1 => esc_html__( '12 Columns', 'tpcore' ), ], 'separator' => 'before', 'default' => '12', 'style_transfer' => true, ] ); $this->end_controls_section(); // TAB_STYLE $this->start_controls_section( 'section_style', [ 'label' => __( 'Style', 'tpcore' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'text_transform', [ 'label' => __( 'Text Transform', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => __( 'None', 'tpcore' ), 'uppercase' => __( 'UPPERCASE', 'tpcore' ), 'lowercase' => __( 'lowercase', 'tpcore' ), 'capitalize' => __( 'Capitalize', 'tpcore' ), ], 'selectors' => [ '{{WRAPPER}} .title' => 'text-transform: {{VALUE}};', ], ] ); $this->end_controls_section(); $this->tp_basic_style_controls('job_title', 'Job - Title', '.tp-el-box-title'); $this->tp_basic_style_controls('job_subtitle', 'Job - Subtitle', '.tp-el-box-subtitle'); $this->tp_basic_style_controls('job_status', 'Job - Status', '.tp-el-box-status'); $this->tp_basic_style_controls('job_contract', 'Job - Contract', '.tp-el-box-contract'); $this->tp_basic_style_controls('job_gross', 'Job - Gross', '.tp-el-box-gross'); $this->tp_basic_style_controls('job_remote', 'Job - Remote', '.tp-el-box-remote'); $this->tp_link_controls_style('job_btn', 'Job - Button', '.tp-el-box-btn'); } /** * Render the widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 * * @access protected */ protected function render() { $settings = $this->get_settings_for_display(); ?> <?php if ( $settings['tp_design_style'] == 'layout-2' ): $this->add_render_attribute('title_args', 'class', 'tp-title'); ?> <?php elseif ( $settings['tp_design_style'] == 'layout-3' ): ?> <?php else: $this->add_render_attribute('title_args', 'class', 'tp-title'); ?> <!-- job list start --> <div class="job-list-area pt-140"> <div class="container"> <?php foreach ($settings['tp_service_list'] as $key => $item) : // Link if ('2' == $item['tp_portfolio_link_type']) { $link = get_permalink($item['tp_portfolio_page_link']); $target = '_self'; $rel = 'nofollow'; } else { $link = !empty($item['tp_portfolio_link']['url']) ? $item['tp_portfolio_link']['url'] : ''; $target = !empty($item['tp_portfolio_link']['is_external']) ? '_blank' : ''; $rel = !empty($item['tp_portfolio_link']['nofollow']) ? 'nofollow' : ''; } ?> <div class="job-list-item mb-50"> <div class="row"> <div class="col-xxl-8 col-xl-7 col-lg-6"> <?php if (!empty($item['tp_service_title' ])): ?> <h5 class="job-list-title mb-30 tp-el-box-title"> <?php if ($item['tp_portfolio_link_switcher'] == 'yes') : ?> <a href="<?php echo esc_url($link); ?>"><?php echo tp_kses($item['tp_service_title' ]); ?></a> <?php else : ?> <?php echo tp_kses($item['tp_service_title' ]); ?> <?php endif; ?> </h5> <?php endif; ?> <?php if (!empty($item['tp_service_category' ])): ?> <span class="job-name tp-el-box-subtitle"><?php echo tp_kses($item['tp_service_category']); ?></span> <?php endif; ?> <?php if (!empty($item['tp_service_status' ])): ?> <span class="job-state mt-100 tp-el-box-status"><?php echo tp_kses($item['tp_service_status']); ?></span> <?php endif; ?> </div> <div class="col-xxl-4 col-xl-5 col-lg-6"> <?php if (!empty($item['tp_service_price' ])): ?> <h5 class="job-list-sm-title mb-20 tp-el-box-contract"><?php echo tp_kses($item['tp_service_price']); ?></h5> <?php endif; ?> <?php if (!empty($item['tp_service_employe' ])): ?> <span class="job-sm-name mb-30 tp-el-box-gross"><?php echo tp_kses($item['tp_service_employe']); ?></span> <?php endif; ?> <?php if (!empty($item['tp_service_place' ])): ?> <span class="job-type tp-el-box-remote"><?php echo tp_kses($item['tp_service_place']); ?></span> <?php endif; ?> <?php if (!empty($item['tp_portfolio_btn_text'])) : ?> <div class="job-btn mt-40"> <a href="<?php echo esc_url($link); ?>" class="tp-solid-btn-square tp-el-box-btn"><?php echo $item['tp_portfolio_btn_text']; ?></a> </div> <?php endif; ?> </div> </div> </div> <?php endforeach; ?> </div> </div> <?php endif; ?> <?php } } $widgets_manager->register( new TP_Job_List() );