WooCommerce::activated_plugin()
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() WooCommerce::activated plugin code WC 9.2.3
public function activated_plugin( $filename ) { include_once __DIR__ . '/admin/helper/class-wc-helper.php'; if ( '/woocommerce.php' === substr( $filename, -16 ) ) { set_transient( 'woocommerce_activated_plugin', $filename ); } WC_Helper::activated_plugin( $filename ); }