Current File : /home/kelaby89/topflowroofingplumbing.com.au/wp-content/plugins/homlane-plugin/elementor/faqs.php |
<?php namespace HOMLANEPLUGIN\Element;
use Elementor\Controls_Manager;
use Elementor\Controls_Stack;
use Elementor\Group_Control_Typography;
use Elementor\Scheme_Typography;
use Elementor\Scheme_Color;
use Elementor\Group_Control_Border;
use Elementor\Repeater;
use Elementor\Widget_Base;
use Elementor\Utils;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Plugin;
/**
* Elementor button widget.
* Elementor widget that displays a button with the ability to control every
* aspect of the button design.
*
* @since 1.0.0
*/
class Faqs extends Widget_Base {
/**
* Get widget name.
* Retrieve button widget name.
*
* @since 1.0.0
* @access public
* @return string Widget name.
*/
public function get_name() {
return 'homlane_faqs';
}
/**
* Get widget title.
* Retrieve button widget title.
*
* @since 1.0.0
* @access public
* @return string Widget title.
*/
public function get_title() {
return esc_html__( 'Faqs', 'homlane' );
}
/**
* Get widget icon.
* Retrieve button widget icon.
*
* @since 1.0.0
* @access public
* @return string Widget icon.
*/
public function get_icon() {
return 'fa fa-briefcase';
}
/**
* Get widget categories.
* Retrieve the list of categories the button widget belongs to.
* Used to determine where to display the widget in the editor.
*
* @since 2.0.0
* @access public
* @return array Widget categories.
*/
public function get_categories() {
return [ 'homlane' ];
}
/**
* Register button 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() {
$this->start_controls_section(
'faqs',
[
'label' => esc_html__( 'Faqs', 'homlane' ),
]
);
$this->add_control(
'sub_title',
[
'label' => esc_html__( 'Sub Title', 'homlane' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
'dynamic' => [
'active' => true,
],
]
);
$this->add_control(
'title',
[
'label' => esc_html__( 'Title', 'homlane' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
'dynamic' => [
'active' => true,
],
]
);
$this->add_control(
'text',
[
'label' => esc_html__( 'Text', 'homlane' ),
'type' => Controls_Manager::TEXTAREA,
'dynamic' => [
'active' => true,
],
]
);
$this->add_control(
'text_limit',
[
'label' => esc_html__( 'Text Limit', 'homlane' ),
'type' => Controls_Manager::NUMBER,
'default' => 35,
'min' => 1,
'max' => 100,
'step' => 1,
]
);
$this->add_control(
'query_number',
[
'label' => esc_html__( 'Number of Post', 'homlane' ),
'type' => Controls_Manager::NUMBER,
'default' => 8,
'min' => 1,
'max' => 100,
'step' => 1,
]
);
$this->add_control(
'query_orderby',
[
'label' => esc_html__( 'Order By', 'homlane' ),
'type' => Controls_Manager::SELECT,
'default' => 'date',
'options' => array(
'date' => esc_html__( 'Date', 'homlane' ),
'title' => esc_html__( 'Title', 'homlane' ),
'menu_order' => esc_html__( 'Menu Order', 'homlane' ),
'rand' => esc_html__( 'Random', 'homlane' ),
),
]
);
$this->add_control(
'query_order',
[
'label' => esc_html__( 'Order', 'homlane' ),
'type' => Controls_Manager::SELECT,
'default' => 'ASC',
'options' => array(
'DESC' => esc_html__( 'DESC', 'homlane' ),
'ASC' => esc_html__( 'ASC', 'homlane' ),
),
]
);
$this->add_control(
'query_category',
[
'type' => Controls_Manager::SELECT,
'label' => esc_html__('Category', 'homlane'),
'options' => get_categories_list('faqs_cat')
]
);
$this->end_controls_section();
}
/**
* Render button 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();
$allowed_tags = wp_kses_allowed_html('post');
$paged = homlane_set($_POST, 'paged') ? esc_attr($_POST['paged']) : 1;
$this->add_render_attribute( 'wrapper', 'class', 'themerange-homlane' );
$args = array(
'post_type' => 'faqs',
'posts_per_page' => homlane_set( $settings, 'query_number' ),
'orderby' => homlane_set( $settings, 'query_orderby' ),
'order' => homlane_set( $settings, 'query_order' ),
'paged' => $paged
);
if( homlane_set( $settings, 'query_category' ) ) $args['faqs_cat'] = homlane_set( $settings, 'query_category' );
$query = new \WP_Query( $args );
if ( $query->have_posts() ) {
$count = 1;
$left_arr = array();
$right_arr = array(); ?>
<?php while ( $query->have_posts() ) : $query->the_post();
if($count > 2) $count = 1;
$active = ( $query->current_post == 0 ) ? 'active' : '';
$collapsed = ( $query->current_post == 0 ) ? 'collapsed' : ''; ?>
<?php if( ($count == 1)):
$left_arr[get_the_id()] = '<div class="accordion accordion-block">
<div class="accord-btn '.$active.'"><h4>'.get_the_title(get_the_id()).'</h4></div>
<div class="accord-content '.$collapsed.'">
<p>'.homlane_trim(get_the_content(), $settings['text_limit']).'</p>
</div>
</div>';
?>
<?php else:
$right_arr[get_the_id()] = '<div class="accordion accordion-block">
<div class="accord-btn"><h4>'.get_the_title(get_the_id()).'</h4></div>
<div class="accord-content">
<p>'.homlane_trim(get_the_content(), $settings['text_limit']).'</p>
</div>
</div>';
?>
<?php endif; ?>
<?php $count++; endwhile; ?>
<!--Start Faq Area-->
<section class="faq-area">
<div class="container">
<div class="sec-title-two">
<span class="sub-title"><?php echo wp_kses( $settings['sub_title'], true ); ?></span>
<h2><?php echo wp_kses( $settings['title'], true ); ?></h2>
<p><?php echo wp_kses( $settings['text'], true ); ?></p>
</div>
<div class="row">
<div class="col-xl-12">
<div class="faq-search-box text-center">
<?php echo get_template_part('searchform1'); ?>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-6">
<div class="faq-content-box">
<div class="accordion-box style2">
<?php foreach($left_arr as $key => $left_content):
echo wp_kses_post($left_content);
endforeach; ?>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="faq-content-box">
<div class="accordion-box style2">
<?php foreach($right_arr as $key => $right_content) :
echo wp_kses_post($right_content);
endforeach; ?>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Faq Area-->
<?php }
wp_reset_postdata();
}
}