File "query.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/powerpack-elements/includes/controls/query.php
File
size: 613 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
namespace PowerpackElements;
use PowerpackElements\Modules\CustomFields;
// Elementor Classes
use \Elementor\Control_Select2;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Elementor query control.
*
* A control for displaying a textarea with the ability to add emojis.
*
* @since 1.4.13.1
*/
class Control_Query extends Control_Select2 {
/**
* Get control type.
*
* Retrieve the control type, in this case `pp-query`.
*
* @since 1.4.13.1
* @access public
*
* @return string Control type.
*/
public function get_type() {
return 'pp-query';
}
}