VaultPress::add_woocommerce_actions PHP Method

add_woocommerce_actions() public method

    function add_woocommerce_actions()
    {
        add_action('woocommerce_tax_rate_deleted', array($this, 'woocommerce_tax_rate_handler'), 10, 1);
        add_action('woocommerce_tax_rate_updated', array($this, 'woocommerce_tax_rate_handler'), 10, 1);
        add_action('woocommerce_tax_rate_added', array($this, 'woocommerce_tax_rate_handler'), 10, 1);
        add_action('woocommerce_new_order_item', array($this, 'woocommerce_order_item_handler'), 10, 1);
        add_action('woocommerce_update_order_item', array($this, 'woocommerce_order_item_handler'), 10, 1);
        add_action('woocommerce_delete_order_item', array($this, 'woocommerce_order_item_handler'), 10, 1);
        add_action('added_order_item_meta', array($this, 'woocommerce_order_item_meta_handler'), 10, 1);
        add_action('updated_order_item_meta', array($this, 'woocommerce_order_item_meta_handler'), 10, 1);
        add_action('deleted_order_item_meta', array($this, 'woocommerce_order_item_meta_handler'), 10, 1);
        add_action('woocommerce_attribute_added', array($this, 'woocommerce_attribute_handler'), 10, 1);
        add_action('woocommerce_attribute_updated', array($this, 'woocommerce_attribute_handler'), 10, 1);
        add_action('woocommerce_attribute_deleted', array($this, 'woocommerce_attribute_handler'), 10, 1);
    }
VaultPress