App_installed
The app_installed filter will trigger after installing an app successfully
Parameters
Sample code
add_filter('app_installed', 'my_app_installed', 100, 2);
function my_app_installed($id, $appname){
// Code
// Write your code here
}App_removed
The app_removed filter will trigger after removing an app successfully
Parameters
Sample code
add_filter('app_removed', 'my_app_removed', 100, 2);
function my_app_removed($id, $appname){
// Code
// Write your code here
}