function taxonomy_service_get_tree in Services 6.2
Same name and namespace in other branches
- 5 services/taxonomy_service/taxonomy_service.module \taxonomy_service_get_tree()
- 6.3 resources/taxonomy_resource.inc \taxonomy_service_get_tree()
- 6 services/taxonomy_service/taxonomy_service.inc \taxonomy_service_get_tree()
- 7.3 resources/taxonomy_resource.inc \taxonomy_service_get_tree()
- 7 services/taxonomy_service/taxonomy_service.inc \taxonomy_service_get_tree()
Services interface to taxonomy_get_tree().
See also
1 string reference to 'taxonomy_service_get_tree'
- taxonomy_service_service in services/
taxonomy_service/ taxonomy_service.module - Implementation of hook_service().
File
- services/
taxonomy_service/ taxonomy_service.inc, line 13 - Link general taxonomy functionalities to services module.
Code
function taxonomy_service_get_tree($vid, $parent = 0, $max_depth = NULL) {
return taxonomy_get_tree($vid, $parent, -1, $max_depth);
}