diff --git a/lib/Doctrine/Tree/NestedSet.php b/lib/Doctrine/Tree/NestedSet.php deleted file mode 100644 index 02f06810c..000000000 --- a/lib/Doctrine/Tree/NestedSet.php +++ /dev/null @@ -1,53 +0,0 @@ -. - */ -/** - * Doctrine_Tree_NestedSet - * - * the purpose of Doctrine_Tree_NestedSet is to provide NestedSet tree access - * strategy for all records extending it - * - * @package Doctrine ORM - * @url www.phpdoctrine.com - * @license LGPL - */ -class Doctrine_Tree_NestedSet extends Doctrine_Record { - - public function getLeafNodes() { - $query = "SELECT ".implode(", ",$this->table->getColumnNames()). - " FROM ".$this->table->getTableName(). - " WHERE rgt = lft + 1"; - } - - public function getPath() { } - - public function getDepth() { - $query = "SELECT (COUNT(parent.name) - 1) AS depth - FROM ".$this->table->getTableName()." AS node,". - $this->table->getTableName()." AS parent - WHERE node.lft BETWEEN parent.lft AND parent.rgt - GROUP BY node.name"; - } - - public function removeNode() { } - - public function addNode() { } -} - diff --git a/lib/Doctrine/Tree/PathModel.php b/lib/Doctrine/Tree/PathModel.php deleted file mode 100644 index 6e6431cd7..000000000 --- a/lib/Doctrine/Tree/PathModel.php +++ /dev/null @@ -1,44 +0,0 @@ -. - */ -/** - * Doctrine_Tree_PathModel - * - * the purpose of Doctrine_Tree_PathModel is to provide PathModel tree access - * strategy for all records extending it - * - * @package Doctrine ORM - * @url www.phpdoctrine.com - * @license LGPL - */ -class Doctrine_Tree_PathModel extends Doctrine_Record { - - public function getLeafNodes() { } - - public function getPath() { } - - public function getDepth() { } - - public function removeNode() { } - - public function addNode() { } - -} -