int
DB_NestedSet::moveTree
(
int
$id
,
$targetid
,
constant
$pos
,
bool
$copy
= false
,
int
$target
)
This package is not documented yet.
$id
Source ID
$targetid
Target ID
$pos
Position (use one of the NESE_MOVE_* constants)
$copy
Shall we create a copy
$target
Target ID
returns ID of the moved node or false on error
see _moveInsideLevel
see _moveRoot2Root
see _moveAcross
throws no exceptions thrown
This function can not be called statically.
Get SubBranch
<?php
require_once('DB/NestedSet.php');
$nestedSet =& DB_NestedSet::factory('DB', $dsn, $params);
$parent = $nestedSet->createRootNode(array('name' => 'root-node'), false, true);
$parent2 = $nestedSet->createSubNode($parent, array('name' => 'sub-node));
$parent3 = $nestedSet->createSubNode($parent2, array('name' => 'sub-node));
$nestedSet->createSubNode($parent3, array('name' => 'sub1'));
$node = $nestedSet->createSubNode($parent3, array('name' => 'sub2'));
$nestedSet->moveTree($node, $parent, NESE_MOVE_AFTER);
?>