WooCommerce::activated_plugin()publicWC 3.6.0

Ran when any plugin is activated.

Метод класса: WooCommerce{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WooCommerce = new WooCommerce();
$WooCommerce->activated_plugin( $filename );
$filename(строка) (обязательный)
The filename of the activated plugin.

Список изменений

С версии 3.6.0 Введена.

Код WooCommerce::activated_plugin() 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 );
}