Enable_hotlink
The enable_hotlink filter will trigger when the Hotlink is enabled successfully
Sample code
add_filter('enable_hotlink', 'my_enable_hotlink', 100, 1);
function my_enable_hotlink($user){
// $user contains the username
}Disable_hotlink
The disable_hotlink filter will trigger when the Hotlink is disabled successfully
Sample code
add_filter('disable_hotlink', 'my_disable_hotlink', 100, 1);
function my_disable_hotlink($user){
// $user contains the username
}