WC_Admin_Duplicate_Product::__construct()
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 Admin Duplicate Product:: construct WC 9.4.2
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' ) ); }