You are here

function taxonomy_service_get_tree in Services 5

Same name and namespace in other branches
  1. 6.3 resources/taxonomy_resource.inc \taxonomy_service_get_tree()
  2. 6 services/taxonomy_service/taxonomy_service.inc \taxonomy_service_get_tree()
  3. 6.2 services/taxonomy_service/taxonomy_service.inc \taxonomy_service_get_tree()
  4. 7.3 resources/taxonomy_resource.inc \taxonomy_service_get_tree()
  5. 7 services/taxonomy_service/taxonomy_service.inc \taxonomy_service_get_tree()

get terms in vocabulary

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.module, line 87
The module which exposes services related to taxonomy system

Code

function taxonomy_service_get_tree($vid) {
  return taxonomy_get_tree($vid);
}