summaryrefslogtreecommitdiffstats
path: root/codebase/Dhtmlx/Connector/Data/OptionsDataItem.php
blob: 8ea4e6946d28b5a4f7ed046ca8ad782f551215a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
namespace Dhtmlx\Connector\Data;

class OptionsDataItem extends DataItem {
    function to_xml(){
        if ($this->skip) return "";
        $str ="";
        
        $str .= "<item value=\"".$this->xmlentities($this->data[$this->config->data[0]['db_name']])."\" label=\"".$this->xmlentities($this->data[$this->config->data[1]['db_name']])."\" />";
        return $str;
    }
}