You are here

function _taxonomy_term_resource_delete in Services 6.3

Same name and namespace in other branches
  1. 7.3 resources/taxonomy_resource.inc \_taxonomy_term_resource_delete()

Delete a taxonomy term.

Parameters

$tid: Unique identifier for the taxonomy term to delete.

Return value

Status constant indicating deletion.

See also

taxonomy_del_term()

1 string reference to '_taxonomy_term_resource_delete'
_taxonomy_resource_definition in resources/taxonomy_resource.inc
@file Link general taxonomy functionalities to services module.

File

resources/taxonomy_resource.inc, line 466
Link general taxonomy functionalities to services module.

Code

function _taxonomy_term_resource_delete($tid) {
  return taxonomy_del_term($tid);
}