wpsc_send_uninstall_errors filter-hookWPSCache 1.0

Usage

add_filter( 'wpsc_send_uninstall_errors', 'wp_kama_wpsc_send_uninstall_errors_filter' );

/**
 * Function for `wpsc_send_uninstall_errors` filter-hook.
 * 
 * @param  $1 
 *
 * @return 
 */
function wp_kama_wpsc_send_uninstall_errors_filter( $1 ){

	// filter...
	return $1;
}
$1
-

Where the hook is called

wp_cache_disable_plugin()
wpsc_send_uninstall_errors
wp-super-cache/wp-cache.php 3709
if ( apply_filters( 'wpsc_send_uninstall_errors', 1 ) ) {

Where the hook is used in WP Super Cache

Usage not found.