Description
apply_filters( 'wcsl_manual_check_message_result_' . $this->slug, $admin_notice, $check_result )
Parameters (2) (string), (string)
Usage Examples
To run the filter, copy this sample
$str = apply_filters( 'wcsl_manual_check_message_result_' . $this->slug, $admin_notice, $check_result ); if ( ! empty( $str ) ) { // what has been modified... }
To make a callback function, copy this sample
// the filter wcsl_manual_check_message_result_$this->slug callback function my_filter_function( 'wcsl_manual_check_message_result_' . $this->slug, $param1, $param2 ) { // do your thing here :-) ... return $str; } add_filter( 'wcsl_manual_check_message_result_' . $this->slug, 'my_filter_function', 10, 2 );
To remove the filter, copy this sample
//remove the filter remove_filter('wcsl_manual_check_message_result_' . $this->slug, 'my_filter_function', 10, 2 );
Defined
This filter is defined in the following source file(s)
- wcvendors-pro/includes/lib/class-wc-software-license-client.php line 591
printf( '%s', apply_filters( 'wcsl_manual_check_message_result_' . $this->slug, $admin_notice, $check_result ) );