* @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
* @copyright Copyright (c) 2014, Ernest Marcinko
*/
class wpdreamsTextSmall extends wpdreamsType {
private $icon = 'none';
private $suffix = '';
private $inputClasses = '';
private $iconMsg;
function getType() {
parent::getType();
$this->processData();
echo "
";
if ($this->label != "")
echo "
";
if ( $this->icon != 'none' ) {
?>
inputClasses."' type='text' id='wpdreamstextsmall_" . self::$_instancenumber . "' name='" . $this->name . "' value=\"" . stripslashes(esc_html($this->value)) . "\" />";
echo $this->suffix;
echo "
";
}
public function processData() {
$this->iconMsg = array(
'phone' => __('Phone devices, on 0px to 640px widths', 'ajax-search-pro'),
'tablet' => __('Tablet devices, on 641px to 1024px widths', 'ajax-search-pro'),
'desktop' => __('Desktop devices, 1025px width and higher', 'ajax-search-pro')
);
if ( is_array($this->data) ) {
$this->icon = $this->data['icon'] ?? $this->icon;
$this->suffix = $this->data['suffix'] ?? $this->suffix;
$this->inputClasses = $this->data['inputClasses'] ?? $this->inputClasses;
}
}
}
}