* @copyright 2007-2022 Apollotheme * @license http://apollotheme.com - prestashop template provider */ namespace LeoElements; use LeoElements\Leo_Helper; if ( ! defined( '_PS_VERSION_' ) ) { exit; // Exit if accessed directly. } /** * Elementor font control. * * A base control for creating font control. Displays font select box. The * control allows you to set a list of fonts. * * @since 1.0.0 */ class Control_Autocomplete extends Base_Data_Control { /** * Get leo_autocomplete control type. * * Retrieve the control type, in this case `leo_autocomplete`. * * @since 1.0.0 * @access public * * @return string Control type. */ public function get_type() { return 'autocomplete'; } /** * Get leo_autocomplete control default settings. * * Retrieve the default settings of the leo_autocomplete control. Used to return the * default settings while initializing the leo_autocomplete control. * * @since 1.8.0 * @access protected * * @return array Control default settings. */ protected function get_default_settings() { return [ 'label_block' => true, 'multiple' => false, 'options' => [], 'callback' => '', ]; } /** * Enqueue control scripts and styles. * * @since 1.0.0 * @access public */ public function enqueue() { $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; Leo_Helper::wp_enqueue_script( 'autocomplete-control', LEOELEMENTS_ASSETS_URL . 'js/control/autocomplete' . $suffix . '.js', [ 'jquery', ], '', false ); } /** * Render leo_autocomplete 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(); ?>