WC_Integration_MaxMind_Geolocation::display_missing_license_key_notice
Display notice if license key is missing.
Метод класса: WC_Integration_MaxMind_Geolocation{}
Хуки из метода
Возвращает
null. Ничего (null).
Использование
$WC_Integration_MaxMind_Geolocation = new WC_Integration_MaxMind_Geolocation(); $WC_Integration_MaxMind_Geolocation->display_missing_license_key_notice( $old_value, $new_value );
- $old_value(разное) (обязательный)
- Option old value.
- $new_value(разное) (обязательный)
- Current value.
Код WC_Integration_MaxMind_Geolocation::display_missing_license_key_notice() WC Integration MaxMind Geolocation::display missing license key notice WC 10.5.2
public function display_missing_license_key_notice( $old_value, $new_value ) {
if ( ! apply_filters( 'woocommerce_maxmind_geolocation_display_notices', true ) ) {
return;
}
if ( ! in_array( $new_value, array( 'geolocation', 'geolocation_ajax' ), true ) ) {
$this->remove_missing_license_key_notice();
return;
}
$license_key = $this->get_option( 'license_key' );
if ( ! empty( $license_key ) ) {
return;
}
$this->add_missing_license_key_notice();
}