WC_Admin_Duplicate_Product::__construct()publicWC 1.0

Constructor.

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

Хуков нет.

Возвращает

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

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

$WC_Admin_Duplicate_Product = new WC_Admin_Duplicate_Product();
$WC_Admin_Duplicate_Product->__construct();

Код WC_Admin_Duplicate_Product::__construct() WC 8.7.0

public function __construct() {
	add_action( 'admin_action_duplicate_product', array( $this, 'duplicate_product_action' ) );
	add_filter( 'post_row_actions', array( $this, 'dupe_link' ), 10, 2 );
	add_action( 'post_submitbox_start', array( $this, 'dupe_button' ) );
}