summaryrefslogtreecommitdiffstats
path: root/codebase/Dhtmlx/Connector/GridConnector.php
blob: 7429c58f7ab2a30c1d344768821baf7bc6bb1f3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
namespace Dhtmlx\Connector;
use Dhtmlx\Connector\Data\DataConfig;
use Dhtmlx\Connector\Data\DataRequestConfig;

/*! Connector for the dhtmlxgrid
**/
class GridConnector extends Connector {
	
    protected $userdata;

	/*! constructor

		Here initilization of all Masters occurs, execution timer initialized
		@param res
			db connection resource
		@param type
			string , which hold type of database ( MySQL or Postgre ), optional, instead of short DB name, full name of DataWrapper-based class can be provided
		@param item_type
			name of class, which will be used for item rendering, optional, DataItem will be used by default
		@param data_type
			name of class which will be used for dataprocessor calls handling, optional, DataProcessor class will be used by default.
	*/
	public function __construct($res,$type=false,$item_type=false,$data_type=false,$render_type=false){
        $this->userdata=false;
		
		if (!$item_type) $item_type="Dhtmlx\\Connector\\Data\\GridDataItem";
        if (!$data_type) $data_type="Dhtmlx\\Connector\\DataProcessor\\GridDataProcessor";
		if (!$render_type) $render_type="Dhtmlx\\Connector\\Output\\RenderStrategy";
		parent::__construct($res,$type,$item_type,$data_type,$render_type);
	}


	protected function parse_request(){
		parent::parse_request();

		if (isset($_GET["dhx_colls"]))
			$this->fill_collections($_GET["dhx_colls"]);
	}
	protected function resolve_parameter($name){
		if (intval($name).""==$name)
			return $this->config->text[intval($name)]["db_name"];
		return $name;
	}

	/*! replace xml unsafe characters

		@param string
			string to be escaped
		@return
			escaped string
	*/
	protected function xmlentities($string) {
		return str_replace( array( '&', '"', "'", '<', '>', '’' ), array( '&amp;' , '&quot;', '&apos;' , '&lt;' , '&gt;', '&apos;' ), $string);
	}

	/*! assign options collection to the column

		@param name
			name of the column
		@param options
			array or connector object
	*/
	public function set_options($name,$options){
		if (is_array($options)){
			$str="";
			foreach($options as $k => $v)
				$str.="<item value='".$this->xmlentities($k)."' label='".$this->xmlentities($v)."' />";
			$options=$str;
		}
		$this->options[$name]=$options;
	}
	/*! generates xml description for options collections

		@param list
			comma separated list of column names, for which options need to be generated
	*/
	protected function fill_collections($list=""){
		$names=explode(",",$list);
		for ($i=0; $i < sizeof($names); $i++) {
			$name = $this->resolve_parameter($names[$i]);
			if (!array_key_exists($name,$this->options)){
				$this->options[$name] = new DistinctOptionsConnector($this->get_connection(),$this->names["db_class"]);
				$c = new DataConfig($this->config);
				$r = new DataRequestConfig($this->request);
				$c->minimize($name);

				$this->options[$name]->render_connector($c,$r);
			}

			$this->extra_output.="<coll_options for='{$names[$i]}'>";
			if (!is_string($this->options[$name]))
				$this->extra_output.=$this->options[$name]->render();
			else
				$this->extra_output.=$this->options[$name];
			$this->extra_output.="</coll_options>";
		}
	}

	/*! renders self as  xml, starting part
	*/
	protected function xml_start(){
		$attributes = "";
		foreach($this->attributes as $k=>$v)
			$attributes .= " ".$k."='".$v."'";

		if ($this->dload){
			if ($pos=$this->request->get_start())
				$str = "<rows pos='".$pos."'".$attributes.">";
			else
				$str = "<rows total_count='".$this->sql->get_size($this->request)."'".$attributes.">";
		}
		else
			$str = "<rows".$attributes.">";
		
		if ($this->userdata !== false) {
			foreach ($this->userdata as $key => $value) {
				$str .= "<userdata name='".$key."'><![CDATA[".$value."]]></userdata>";				
			}			
		}

		return $str;
	}


	/*! renders self as  xml, ending part
	*/
	protected function xml_end(){
		return $this->extra_output."</rows>";
	}

    //set global userdata for grid
    public function set_userdata($name, $value){
        if ($this->userdata === false)
            $this->userdata = array();

        $this->userdata[$name]=$value;
    }
    
	public function set_config($config = false){
		if (gettype($config) == 'boolean')
			$config = new GridConfiguration($config);

		$this->event->attach("beforeOutput", Array($config, "attachHeaderToXML"));
		$this->event->attach("onInit", Array($config, "defineOptions"));
	}
}