woocommerce_delete_order_downloadable_permissions

woocommerce_delete_order_downloadable_permissions

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('woocommerce_delete_order_downloadable_permissions') is found 1 times:

  • /includes/class-wc-post-data.php line 525
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    * @param int $postid Post ID.
     */
    public static function delete_order_downloadable_permissions( $postid ) {
        if ( OrderUtil::is_order( $postid, wc_get_order_types() ) ) {
            do_action( 'woocommerce_delete_order_downloadable_permissions', $postid );
     
            $data_store = WC_Data_Store::load( 'customer-download' );
            $data_store->delete_by_order_id( $postid );
     
            do_action( 'woocommerce_deleted_order_downloadable_permissions', $postid );
        }