summaryrefslogtreecommitdiffstats
path: root/codebase/tree_connector.php
diff options
context:
space:
mode:
authorDmitry <dmitry@dhtmlx.com>2012-05-10 16:51:23 +0200
committerDmitry <dmitry@dhtmlx.com>2012-05-10 16:51:23 +0200
commitc6f8ad6c0b6a5c6d7c512805dcc93a0f7bc52146 (patch)
treebc857bf3796fee56d59cd2c433b32364af3238ce /codebase/tree_connector.php
parent5ea73eba6ea84547d3e325f075df60ef729168b3 (diff)
downloadconnector-php-c6f8ad6c0b6a5c6d7c512805dcc93a0f7bc52146.zip
connector-php-c6f8ad6c0b6a5c6d7c512805dcc93a0f7bc52146.tar.gz
connector-php-c6f8ad6c0b6a5c6d7c512805dcc93a0f7bc52146.tar.bz2
minimize duplicating using TreeRenderStrategy
Diffstat (limited to 'codebase/tree_connector.php')
-rw-r--r--codebase/tree_connector.php36
1 files changed, 8 insertions, 28 deletions
diff --git a/codebase/tree_connector.php b/codebase/tree_connector.php
index d002304..850de0d 100644
--- a/codebase/tree_connector.php
+++ b/codebase/tree_connector.php
@@ -160,8 +160,8 @@ require_once("filesystem_item.php");
/*! Connector for the dhtmlxtree
**/
class TreeConnector extends Connector{
- private $id_swap = array();
-
+ protected $parent_name = 'id';
+
/*! constructor
Here initilization of all Masters occurs, execution timer initialized
@@ -173,42 +173,22 @@ class TreeConnector extends Connector{
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.
+ * @param render_type
+ * name of class which will provides data rendering
*/
public function __construct($res,$type=false,$item_type=false,$data_type=false, $render_type=false){
if (!$item_type) $item_type="TreeDataItem";
if (!$data_type) $data_type="TreeDataProcessor";
if (!$render_type) $render_type="TreeRenderStrategy";
parent::__construct($res,$type,$item_type,$data_type,$render_type);
-
- $this->event->attach("afterInsert",array($this,"parent_id_correction_a"));
- $this->event->attach("beforeProcessing",array($this,"parent_id_correction_b"));
- }
-
- /*! store info about ID changes during insert operation
- @param dataAction
- data action object during insert operation
- */
- public function parent_id_correction_a($dataAction){
- $this->id_swap[$dataAction->get_id()]=$dataAction->get_new_id();
}
- /*! update ID if it was affected by previous operation
- @param dataAction
- data action object, before any processing operation
- */
- public function parent_id_correction_b($dataAction){
- $relation = $this->config->relation_id["db_name"];
- $value = $dataAction->get_value($relation);
-
- if (array_key_exists($value,$this->id_swap))
- $dataAction->set_value($relation,$this->id_swap[$value]);
- }
-
-
+
+ //parse GET scoope, all operations with incoming request must be done here
public function parse_request(){
parent::parse_request();
- if (isset($_GET["id"]))
- $this->request->set_relation($_GET["id"]);
+ if (isset($_GET[$this->parent_name]))
+ $this->request->set_relation($_GET[$this->parent_name]);
else
$this->request->set_relation("0");