WooCommerce::activated_plugin()publicWC 3.6.0

Ran when any plugin is activated.

Method of the class: WooCommerce{}

No Hooks.

Return

null. Nothing (null).

Usage

$WooCommerce = new WooCommerce();
$WooCommerce->activated_plugin( $filename );
$filename(string) (required)
The filename of the activated plugin.

Changelog

Since 3.6.0 Introduced.

WooCommerce::activated_plugin() code WC 8.7.0

public function activated_plugin( $filename ) {
	include_once dirname( __FILE__ ) . '/admin/helper/class-wc-helper.php';

	if ( '/woocommerce.php' === substr( $filename, -16 ) ) {
		set_transient( 'woocommerce_activated_plugin', $filename );
	}

	WC_Helper::activated_plugin( $filename );
}