• File: Hooks.php
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce-multilingual/classes/CLI/Hooks.php
  • File size: 278 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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' );
	}
}