11 lines
268 B
PHP
11 lines
268 B
PHP
<?php
|
|
|
|
/**
|
|
* @deprecated 4.0.0
|
|
* wc_deprecated_function(new, version, old)
|
|
*/
|
|
function get_dc_plugin_settings() {
|
|
wc_deprecated_function( 'get_dc_plugin_settings', '2.0.0', 'get_mvx_product_alert_plugin_settings');
|
|
return get_mvx_product_alert_plugin_settings();
|
|
}
|