Current Path : /webspace/www.beetasty.be/html/wp-content/plugins/woocommerce-multilingual/classes/CLI/ |
Current File : //webspace/www.beetasty.be/html/wp-content/plugins/woocommerce-multilingual/classes/CLI/Hooks.php |
<?php namespace WCML\CLI; class Hooks implements \IWPML_CLI_Action { public function add_hooks() { add_action( 'shutdown', [ $this, 'preventWcWizardRedirection' ] ); } public function preventWcWizardRedirection() { delete_transient( '_wc_activation_redirect' ); } }