function taxonomy_service_save_term in Services 6.2
Same name and namespace in other branches
- 7 services/taxonomy_service/taxonomy_service.inc \taxonomy_service_save_term()
Services interface to taxonomy_save_term().
See also
1 string reference to 'taxonomy_service_save_term'
- taxonomy_service_service in services/
taxonomy_service/ taxonomy_service.module - Implementation of hook_service().
File
- services/
taxonomy_service/ taxonomy_service.inc, line 44 - Link general taxonomy functionalities to services module.
Code
function taxonomy_service_save_term($term) {
if (!is_array($term)) {
$term = (array) $term;
}
return taxonomy_save_term($term);
}