* @link http://wp-dreams.com, http://codecanyon.net/user/anago/portfolio
* @copyright Copyright (c) 2014, Ernest Marcinko
*/
class wpdreamsCustomSelect extends wpdreamsType {
function getType() {
parent::getType();
$this->processData();
echo "
";
echo "
";
echo "
";
echo "
";
}
function processData() {
//$this->data = str_replace("\n","",$this->data);
$this->selects = array();
$this->selects = $this->data['selects'];
$this->selected = $this->data['value'];
}
final function getData() {
return $this->data;
}
final function getSelected() {
return $this->selected;
}
}
}