Act on taxonomy terms before they are saved.
Modules implementing this hook can act on the term object before it is inserted or updated.
$term: A term object.
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
function hook_taxonomy_term_presave($term) {
$term->foo = 'bar';
}