function _taxonomy_edge_detach_subtree in Taxonomy Edge 7
Same name and namespace in other branches
- 8 taxonomy_edge.module \_taxonomy_edge_detach_subtree()
- 6 taxonomy_edge.module \_taxonomy_edge_detach_subtree()
Detach children from parents in $tids (delete ancestors).
1 call to _taxonomy_edge_detach_subtree()
- _taxonomy_edge_move_subtree in ./
taxonomy_edge.module - Detach path and children from current parent and attach to new parents.
File
- ./
taxonomy_edge.module, line 507 - Optimization of taxonomy data model for SQL performance.
Code
function _taxonomy_edge_detach_subtree($vid, $tids) {
return _taxonomy_edge_delete_subtree($vid, $tids, 1);
}