I've been looking for a hook in drupal 7 that allows me to send an http request when the user moves a taxonomy term in or out of another taxonomy. For example:

I want to be able to 'detect' when I take World War in or out of This is War.
I hope you can help me, and sorry for the ignorance.
For anyone trying to achieve this, I found a way to do it. Not sure if it's the only one there is, but here it goes:
In your custom .module file, implement a hook with the following form Id
Then, you can add a
#submitelement like this:Now, you can define
my_custom_handleras followsAnd
my_custom_handlerwill execute every time user saves changes in the specific form. If you need to get the terms in themy_custom_handlermethod you could somehow mimic the code in the source taxonomy module.I hope someone finds this useful