00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class Varien_Data_Tree
00036 {
00037
00038
00039
00040
00041
00042
00043 protected $_nodes;
00044
00045
00046
00047
00048
00049 public function __construct()
00050 {
00051 $this->_nodes = new Varien_Data_Tree_Node_Collection($this);
00052 }
00053
00054
00055
00056
00057
00058
00059 public function getTree()
00060 {
00061 return $this;
00062 }
00063
00064
00065
00066
00067
00068
00069 public function load($parentNode=null)
00070 {
00071 }
00072
00073
00074
00075
00076
00077
00078 public function loadNode($nodeId)
00079 {
00080 }
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090 public function appendChild($data=array(), $parentNode, $prevNode=null)
00091 {
00092 if (is_array($data)) {
00093 $node = $this->addNode(
00094 new Varien_Data_Tree_Node($data, $parentNode->getIdField(), $this),
00095 $parentNode
00096 );
00097 } elseif ($data instanceof Varien_Data_Tree_Node) {
00098 $node = $this->addNode($data, $parentNode);
00099 }
00100 return $node;
00101 }
00102
00103
00104
00105
00106
00107
00108
00109
00110 public function addNode($node, $parent=null)
00111 {
00112 $this->_nodes->add($node);
00113 $node->setParent($parent);
00114 if (!is_null($parent) && ($parent instanceof Varien_Data_Tree_Node) ) {
00115 $parent->addChild($node);
00116 }
00117 return $node;
00118 }
00119
00120
00121
00122
00123
00124
00125
00126
00127 public function moveNodeTo($node, $parentNode, $prevNode=null)
00128 {
00129 }
00130
00131
00132
00133
00134
00135
00136
00137
00138 public function copyNodeTo($node, $parentNode, $prevNode=null)
00139 {
00140 }
00141
00142
00143
00144
00145
00146
00147
00148 public function removeNode($node)
00149 {
00150 $this->_nodes->delete($node);
00151 if ($node->getParent()) {
00152 $node->getParent()->removeChild($node);
00153 }
00154 unset($node);
00155 return $this;
00156 }
00157
00158
00159
00160
00161
00162
00163
00164 public function createNode($parentNode, $prevNode=null)
00165 {
00166 }
00167
00168
00169
00170
00171
00172
00173 public function getChild($node)
00174 {
00175 }
00176
00177
00178
00179
00180
00181
00182 public function getChildren($node)
00183 {
00184 }
00185
00186
00187
00188
00189
00190
00191 public function getNodes()
00192 {
00193 return $this->_nodes;
00194 }
00195
00196
00197
00198
00199
00200
00201
00202 public function getNodeById($nodeId)
00203 {
00204 return $this->_nodes->searchById($nodeId);
00205 }
00206
00207
00208
00209
00210
00211
00212
00213 public function getPath($node)
00214 {
00215 if ($node instanceof Varien_Data_Tree_Node ) {
00216
00217 } elseif (is_numeric($node)){
00218 if ($_node = $this->getNodeById($node)) {
00219 return $_node->getPath();
00220 }
00221 }
00222 return array();
00223 }
00224
00225 }