Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
exclusive-addons-for-elementor
/
extensions
/
Editing: image-mask-svg-control.php
<?php namespace ExclusiveAddons\Elementor; use \Elementor\Base_Data_Control; /** * Elementor emoji one area control. * * A control for displaying a textarea with the ability to add emojis. * * @since 1.0.0 */ class Image_Mask_SVG_Control extends Base_Data_Control { const SVGSELECTOR = 'svg-selector'; /** * Get emoji one area control type. * * Retrieve the control type, in this case `emojionearea`. * * @since 1.0.0 * @access public * * @return string Control type. */ public function get_type() { return 'svg-selector'; } /** * Enqueue emoji one area control scripts and styles. * * Used to register and enqueue custom scripts and styles used by the emoji one * area control. * * @since 1.0.0 * @access public */ public function enqueue() { // Styles wp_register_style( 'exad-svg-selector', EXAD_ASSETS_URL . 'css/custom-control.css', [], EXAD_PLUGIN_VERSION ); wp_enqueue_style( 'exad-svg-selector' ); } /** * Get emoji one area control default settings. * * Retrieve the default settings of the emoji one area control. Used to return * the default settings while initializing the emoji one area control. * * @since 1.0.0 * @access protected * * @return array Control default settings. */ protected function get_default_settings() { return [ 'label_block' => true, 'rows' => 3, 'options' => [], ]; } /** * Render emoji one area 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( '{{value}}' ); ?> <div class="elementor-control-field"> <label class="elementor-control-title">{{{ data.label }}}</label> <div class="exad-selector-wrapper"> <# _.each( data.options, function( options, value ) { #> <input id="<?php echo esc_attr( $control_uid ); ?>" type="radio" name="exad-selector-{{ data.name }}-{{ data._cid }}" value="{{ value }}" data-setting="{{ data.name }}"> <label class="exad-selector-label tooltip-target" for="<?php echo esc_attr( $control_uid ); ?>" data-tooltip="{{ options.title }}" title="{{ options.title }}"> <img src="{{ options.url }}" alt="{{ options.title }}"> <span class="elementor-screen-only">{{{ options.title }}}</span> </label> <# } ); #> </div> </div> <# if ( data.description ) { #> <div class="elementor-control-field-description">{{{ data.description }}}</div> <# } #> <?php } }
Save
Cancel