HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/doccure-wp/wp-content/plugins/doccure-elementor/widgets/class-togglehome.php
<?php
/**
 * doccure class.
 *
 * @category   Class
 * @package    Elementordoccure
 * @subpackage WordPress
 * @author     Ben Marshall <[email protected]>
 * @copyright  2020 Ben Marshall
 * @license    https://opensource.org/licenses/GPL-3.0 GPL-3.0-only
 * @link       link(https://www.benmarshall.me/build-custom-elementor-widgets/,
 *             Build Custom Elementor Widgets)
 * @since      1.0.0
 * php version 7.3.9
 */

namespace ElementorDoccure\Widgets;
if ( ! defined( 'ABSPATH' ) ) {
	// Exit if accessed directly.
	exit;
}
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Utils;
 
/**
 * doccure widget class.
 *
 * @since 1.0.0
 */
class Widget_Doccure_Toggle_Home extends Widget_Base {

	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.0.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return 'doccure-toggle';
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.0.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return __( 'Doccure FAQ Home', 'doccure_elementor' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.0.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return 'eicon-toggle';
	}

	public function get_keywords() {
		return [ 'tabs', 'accordion', 'toggle' ];
	}
	/**
	 * 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 array( 'doccure' );
	}

	/**
	 * 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() {
		$this->start_controls_section(
			'section_toggle',
			[
				'label' => esc_html__( 'Toggle', 'doccure_elementor' ),
			]
		);
		

		$this->add_control(
			'style',
			[
				'label' => __( 'Style', 'plugin-domain' ),
				'type' => \Elementor\Controls_Manager::SELECT,
				'default' => 'style1',
				'options' => [
 					'style1' =>  __( 'Style 1', 'doccure_elementor' ),
					'style2' =>  __(  'Style 2', 'doccure_elementor' ),
 				],
			]
		);

		$this->add_control(
			'show_image',
			[
				'label' => esc_html__( 'Show Image', 'textdomain' ),
				'type' => \Elementor\Controls_Manager::SWITCHER,
				'label_on' => esc_html__( 'Show', 'textdomain' ),
				'label_off' => esc_html__( 'Hide', 'textdomain' ),
				'return_value' => 'yes',
				'default' => 'yes',
				'condition' => [
					'style' => [ 'style1'], 
				],
			]
		);

		$this->add_control(
			'title',
			array(
				'label'   => __( 'Title', 'doccure_elementor' ),
				'type'    => Controls_Manager::TEXT,
				'default' => __( 'Frequently Asked Questions', 'doccure_elementor' ),
			)
		);

		$this->add_control(
			'subtitle',
			array(
				'label'   => __( 'Sub-title', 'doccure_elementor' ),
				'type'    => Controls_Manager::TEXT,
				'default' => __( 'Get Your Answer', 'doccure_elementor' ),
			)
		);
		$this->add_control(
			'box_title',
			array(
				'label'   => __( 'BoxTitle', 'doccure_elementor' ),
				'type'    => Controls_Manager::TEXT,
				'default' => __( '95k+', 'doccure_elementor' ),
				'condition' => [
					'show_image' => [ 'yes'], 
					'style' => [ 'style1'], 
				],
			)
		);
		$this->add_control(
			'box_stitle',
			array(
				'label'   => __( 'Box Sub-title', 'doccure_elementor' ),
				'type'    => Controls_Manager::TEXT,
				'default' => __( 'Happy Patients', 'doccure_elementor' ),
				'condition' => [
					'show_image' => [ 'yes'], 
					'style' => [ 'style1'], 
				],
			)
		);

		
		$this->add_control(
			'background',
			[
				'label' => __( 'Choose Image', 'doccure_elementor' ),
				'type' => \Elementor\Controls_Manager::MEDIA,
				'default' => [
					'url' => \Elementor\Utils::get_placeholder_image_src(),
				],
				'condition' => [
					'show_image' => [ 'yes'], 
					'style' => [ 'style1'], 
				],
			]
		);

		$this->add_control(
			'background2',
			[
				'label' => __( 'Choose Icon Image', 'doccure_elementor' ),
				'type' => \Elementor\Controls_Manager::MEDIA,
				'default' => [
					'url' => \Elementor\Utils::get_placeholder_image_src(),
				],
				'condition' => [
					'show_image' => [ 'yes'], 
					'style' => [ 'style1'], 
				],
			]
		);
		
		



 		$repeater = new \Elementor\Repeater();
		$repeater->add_control(
			'tab_title',
			[
				'label' => esc_html__( 'Title & Description', 'elementor' ),
				'type' => \Elementor\Controls_Manager::TEXT,
				'default' => esc_html__( 'Toggle Title', 'elementor' ),
				'label_block' => true,
				'dynamic' => [
					'active' => true,
				],
			]
		);

		$repeater->add_control(
			'tab_content',
			[
				'label' => esc_html__( 'Content', 'elementor' ),
				'type' => \Elementor\Controls_Manager::WYSIWYG,
				'default' => esc_html__( 'Toggle Content', 'elementor' ),
				'show_label' => false,
				'dynamic' => [
					'active' => true,
				],
			]
		);


		$this->add_control(
			'tabs',
			[
				'label' => esc_html__( 'Toggle Items', 'doccure_elementor' ),
				'type' => \Elementor\Controls_Manager::REPEATER,
				'fields' => $repeater->get_controls(),
				'default' => [
					[
						'tab_title' => esc_html__( 'Can i make an Appointment Online with White Plains Hospital Kendi?', 'doccure_elementor' ),
						'tab_content' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,', 'doccure_elementor' ),
					],
					[
						'tab_title' => esc_html__( 'Can i make an Appointment Online with White Plains Hospital Kendi?', 'doccure_elementor' ),
						'tab_content' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,', 'doccure_elementor' ),
					],
				],
				'title_field' => '{{{ tab_title }}}',
			]
		);
		

		$this->add_control(
			'view',
			[
				'label' => esc_html__( 'View', 'doccure_elementor' ),
				'type' => \Elementor\Controls_Manager::HIDDEN,
				'default' => 'traditional',
			]
		);
		
		$this->end_controls_section();
 		/* Add the options you'd like to show in this tab here */
 	}

	/**
	 * 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();

		$id_int = substr( $this->get_id_int(), 0, 3 );
		$migrated = isset( $settings['__fa4_migrated']['selected_icon'] );

		if ( ! isset( $settings['icon'] ) && ! \Elementor\Icons_Manager::is_migration_allowed() ) {
			// @todo: remove when deprecated
			// added as bc in 2.6
			// add old default
			$settings['icon'] = 'fa fa-caret' . ( is_rtl() ? '-left' : '-right' );
			$settings['icon_active'] = 'fa fa-caret-up';
			$settings['icon_align'] = $this->get_settings( 'icon_align' );
		}

		$is_new = empty( $settings['icon'] ) && \Elementor\Icons_Manager::is_migration_allowed();
		$has_icon = ( ! $is_new || ! empty( $settings['selected_icon']['value'] ) );

		?>
 
    
 <?php if($settings['style']=='style1'){ ?>
 <section class="faq-section">
				<div class="container">
				<?php if($settings['title']!='') { ?> 
					<div class="row">
						<div class="col-md-12">
							<div class="section-header-one text-center aos" data-aos="fade-up">
								<h5><?php echo $settings['title']; ?></h5>
								<h2 class="section-title"><?php echo $settings['subtitle']; ?></h2>
							</div>
						</div>
					</div>
					<?php } ?>
					<div class="row align-items-center">
						<?php  if($settings['show_image']=='yes')  {  ?>
						<div class="col-lg-6 col-md-12  aos" data-aos="fade-up">
							<div class="faq-img">
 
								<?php if(isset($settings['background']['url']) && !empty(isset($settings['background']['url']))){ ?><img src="<?php echo $settings['background']['url']; ?>" alt="" class="img-fluid">
			<?php } ?>

								<div class="faq-patients-count">
									<div class="faq-smile-img">
 										<?php if(isset($settings['background2']['url']) && !empty(isset($settings['background2']['url']))){ ?><img src="<?php echo $settings['background2']['url']; ?>" alt=""  >
			<?php } ?>
									</div>
									<div class="faq-patients-content">
										<h4><span class="count-digit">95</span>k+</h4>
										<p><?php esc_html_e('Happy Patients','doccure_elementor'); ?></p>
									</div>
								</div>
							</div>
						</div>
                     <?php } ?>
						<div class="<?php  if($settings['show_image']=='yes')  {  ?> col-lg-6  <?php } else { ?> col-md-12 <?php } ?>">

						<div class="faq-info aos aos-init aos-animate" id="accordion" data-aos="fade-up">
 		
							
			<?php
			foreach ( $settings['tabs'] as $index => $item ) :
				$tab_count = $index + 1;

				$tab_title_setting_key = $this->get_repeater_setting_key( 'tab_title', 'tabs', $index );

				$tab_content_setting_key = $this->get_repeater_setting_key( 'tab_content', 'tabs', $index );

				$this->add_render_attribute( $tab_title_setting_key, [
					'id' => 'elementor-tab-title-' . $id_int . $tab_count,
					'class' => [ 'elementor-tab-title' ],
					'data-tab' => $tab_count,
					'role' => 'tab',
					'aria-controls' => 'elementor-tab-content-' . $id_int . $tab_count,
					'aria-expanded' => 'false',
				] );

				$this->add_render_attribute( $tab_content_setting_key, [
					'id' => 'elementor-tab-content-' . $id_int . $tab_count,
					'class' => [ 'elementor-tab-content', 'elementor-clearfix' ],
					'data-tab' => $tab_count,
					'role' => 'tabpanel',
					'aria-labelledby' => 'elementor-tab-title-' . $id_int . $tab_count,
				] );

				$this->add_inline_editing_attributes( $tab_content_setting_key, 'advanced' );
				?>
 


 <div class="accordion-item">
<h2 class="accordion-header" id="headingOne_<?php echo $tab_count; ?>"   >
	  
<a href="javascript:void(0);" class="accordion-button <?php if($tab_count=='1') { ?>  <?php } else { ?>collapsed <?php } ?>" data-bs-toggle="collapse" data-bs-target="#collapseOne_<?php echo $tab_count; ?>" <?php if($tab_count=='1') { ?> aria-expanded="true" <?php } else { ?> aria-expanded="false" <?php } ?>  aria-controls="collapseOne_<?php echo $tab_count; ?>">
<?php $this->print_unescaped_setting( 'tab_title', 'tabs', $index ); ?> 
</a>
</h2>
<div id="collapseOne_<?php echo $tab_count; ?>" class="accordion-collapse collapse <?php if($tab_count=='1') { ?>show <?php } ?>" aria-labelledby="headingOne" data-bs-parent="#accordion" style="">
<div class="accordion-body">
<div class="accordion-content">
<?php Utils::print_unescaped_internal_string( $this->parse_text_editor( $item['tab_content'] ) ); ?> 
</div>
</div>
</div>
</div>

  

				 
			<?php endforeach; ?>
		 
		</div>

 						</div>
					</div>
				</div>
			</section>
 <?php } else if($settings['style']=='style2'){ ?>


	<section class="faq-section-one">
				<div class="container">
					<div class="section-header sec-header-one text-center aos" data-aos="fade-up">
						<span class="badge badge-primary"><?php echo $settings['subtitle']; ?></span>
						<h2><?php echo $settings['title']; ?></h2>
					</div>
					<div class="row">
						<div class="col-md-10 mx-auto">
							<div class="faq-info aos" data-aos="fade-up">
								<div class="accordion" id="faq-details">
		
								<?php
foreach ( $settings['tabs'] as $index => $item ) :
    $tab_count = $index + 1;

    $tab_title_setting_key = $this->get_repeater_setting_key( 'tab_title', 'tabs', $index );

    $tab_content_setting_key = $this->get_repeater_setting_key( 'tab_content', 'tabs', $index );

    $this->add_render_attribute( $tab_title_setting_key, [
        'id' => 'elementor-tab-title-' . $id_int . $tab_count,
        'class' => [ 'elementor-tab-title' ],
        'data-tab' => $tab_count,
        'role' => 'tab',
        'aria-controls' => 'elementor-tab-content-' . $id_int . $tab_count,
        'aria-expanded' => ($tab_count === 1) ? 'true' : 'false',
    ] );

    $this->add_render_attribute( $tab_content_setting_key, [
        'id' => 'elementor-tab-content-' . $id_int . $tab_count,
        'class' => [ 'elementor-tab-content', 'elementor-clearfix' ],
        'data-tab' => $tab_count,
        'role' => 'tabpanel',
        'aria-labelledby' => 'elementor-tab-title-' . $id_int . $tab_count,
    ] );

    $this->add_inline_editing_attributes( $tab_content_setting_key, 'advanced' );
    ?>
    <div class="accordion-item">
        <h2 class="accordion-header" id="headingOne_<?php echo $tab_count; ?>">
            <a href="javascript:void(0);" 
               class="accordion-button <?php echo ($tab_count !== 1) ? 'collapsed' : ''; ?>" 
               data-bs-toggle="collapse" 
               data-bs-target="#collapseOne_<?php echo $tab_count; ?>" 
               aria-expanded="<?php echo ($tab_count === 1) ? 'true' : 'false'; ?>" 
               aria-controls="collapseOne_<?php echo $tab_count; ?>">
                <?php echo $item['tab_title']; ?>
            </a>
        </h2>
        <div id="collapseOne_<?php echo $tab_count; ?>" 
             class="accordion-collapse collapse <?php echo ($tab_count === 1) ? 'show' : ''; ?>" 
             aria-labelledby="headingOne_<?php echo $tab_count; ?>" 
             data-bs-parent="#faq-details">
            <div class="accordion-body">
                <div class="accordion-content">
                    <?php echo $item['tab_content']; ?>
                </div>
            </div>
        </div>
    </div>
<?php endforeach; ?>

								</div>
							</div>

						</div>
					</div>
				</div>
			</section>

 <?php } ?>
		<?php
	}

	
	/**
	 * Render toggle widget output in the editor.
	 *
	 * Written as a Backbone JavaScript template and used to generate the live preview.
	 *
	 * @since 2.9.0
	 * @access protected
	 */
 }