File: /var/www/html/wavecolordrop.com/wp-content/plugins/wps-team/includes/controls/text.php
<?php
namespace WPSpeedo_Team;
if ( ! defined('ABSPATH') ) exit;
class Control_Text extends Base_Data_Control {
public function get_type() {
return 'text';
}
public function get_value( $control, $settings ) {
$value = parent::get_value( $control, $settings );
if ( !empty($value['value']) ) {
$value['value'] = sanitize_text_field( $value['value'] );
}
return $value;
}
protected function get_default_settings() {
return [
'input_type' => 'text',
'placeholder' => '',
'title' => '',
];
}
}