HEX
Server: Apache
System: Linux webm020.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: bohousj (181416)
PHP: 8.4.22
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/bohousj/www/wp-content/plugins/jeg-elementor-kit/lib/jeg-framework/form/field/class-alert.php
<?php
/**
 * Customizer Control: text.
 *
 * Creates a text
 *
 * @author Jegstudio
 * @since 1.0.0
 * @package jeg-framework
 */

namespace Jeg\Form\Field;

/**
 * Slider control (range).
 */
class Alert extends Field_Abstract {

	/**
	 * Form Text Template
	 *
	 * @var string
	 */
	protected $type = 'alert';

	/**
	 * An Underscore (JS) template for this control's content
	 */
	public function js_template() {
		?>
		<div class="widget-wrapper type-alert" data-field="{{ data.fieldID }}">
			<div class="widget-alert alert-{{ data.default }}" id="{{ data.fieldID }}" name="{{ data.fieldName }}">
				<strong>{{{ data.title }}}</strong>
				<div class="alert-description">{{{ data.description }}}</div>
			</div>
		</div>
		<?php
	}
}