PluginProbe
Welcart e-Commerce / 2.12.4
Welcart e-Commerce v2.12.4
2.12.4 2.12.3 2.11.35 2.12.2 2.12.1 2.11.34 2.11.33 2.11.32 2.11.31 2.11.30 1.3.16 1.3.17 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 All 292 releases
usc-e-shop / includes / order / wel-order-functions.php

wel-order-functions.php in Welcart e-Commerce 2.12.4, at includes/order/wel-order-functions.php

24 lines 410 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Welcart Order Functions
4 *
5 * Functions for Order related.
6 *
7 * @package Welcart
8 */
9
10 defined( 'ABSPATH' ) || exit;
11
12 /**
13 * Function to get order data
14 *
15 * @since 2.2.2
16 *
17 * @param mixed $order_id Order ID of the order.
18 * @return OrderData|false
19 */
20 function wel_get_order( $order_id ) {
21 $WelOrder = new Welcart\OrderData( $order_id );
22 return $WelOrder->get_data();
23 }
24