PHP 8.2.31
Preview: widget-area.php Size: 2.28 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/elementskit-lite/modules/controls/widget-area.php

<?php 
namespace ElementsKit_Lite\Modules\Controls;

defined( 'ABSPATH' ) || exit;

class Widget_Area extends \Elementor\Base_Data_Control {
	/**
	 * Get choose control type.
	 *
	 * Retrieve the control type, in this case `choose`.
	 *
	 * @since 1.0.0
	 * @access public
	 *
	 * @return string Control type.
	 */
	public function get_type() {
		return 'widgetarea';
	}

	/**
	 * Enqueue ontrol scripts and styles.
	 *
	 * @since 1.0.0
	 * @access public
	 */
	public function enqueue() {
		// Define script dependencies if needed.
		$dependencies = array('jquery'); // Replace 'jquery' with the appropriate dependency.
		// styles
		wp_register_style( 'elementskit-css-widgetarea-control-inspactor', Init::get_url() . 'assets/css/widgetarea-inspactor.css', array(), '1.0.0' );
		wp_enqueue_style( 'elementskit-css-widgetarea-control-inspactor' );

		// script
		wp_register_script( 'elementskit-js-widgetarea-control-inspactor', Init::get_url() . 'assets/js/widgetarea-inspactor.js',  $dependencies, '1.0.0', true );
		wp_enqueue_script( 'elementskit-js-widgetarea-control-inspactor' );
	}


	/**
	 * Render choose control output in the editor.
	 *
	 * Used to generate the control HTML in the editor using Underscore JS
	 * template. The variables for the class are available using `data` JS
	 * object.
	 *
	 * @since 1.0.0
	 * @access public
	 */
	public function content_template() {
		$control_uid = $this->get_control_uid();
		?>
		<div style="display:none" class="elementor-control-field">
			<label for="<?php echo esc_attr( $control_uid ); ?>" class="elementor-control-title">{{{ data.label }}}</label>
			<div class="elementor-control-input-wrapper">
				<input id="<?php echo esc_attr( $control_uid ); ?>" type="text" data-setting="{{ data.name }}" />
			</div>
		</div>
		<# if ( data.description ) { #>
		<div class="elementor-control-field-description">{{{ data.description }}}</div>
		<# } #>
		<?php
	}

	/**
	 * Get choose control default settings.
	 *
	 * Retrieve the default settings of the choose control. Used to return the
	 * default settings while initializing the choose control.
	 *
	 * @since 1.0.0
	 * @access protected
	 *
	 * @return array Control default settings.
	 */
	protected function get_default_settings() {
		return array(
			'label_block'      => true,
			'show_edit_button' => false,
		);
	}
}

Directory Contents

Dirs: 1 × Files: 8

Name Size Perms Modified Actions
assets DIR
- drwxr-xr-x 2026-06-05 03:11:37
Edit Download
6.48 KB lrw-r--r-- 2026-06-04 10:13:40
Edit Download
2.47 KB lrw-r--r-- 2023-11-28 17:47:40
Edit Download
486 B lrw-r--r-- 2022-05-18 20:49:00
Edit Download
2.94 KB lrw-r--r-- 2023-11-28 17:47:40
Edit Download
2.75 KB lrw-r--r-- 2022-05-18 20:49:00
Edit Download
2.35 KB lrw-r--r-- 2023-05-03 16:18:52
Edit Download
4.58 KB lrw-r--r-- 2026-02-24 11:00:14
Edit Download
2.28 KB lrw-r--r-- 2023-11-28 17:47:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).