114 lines
2.4 KiB
PHP
114 lines
2.4 KiB
PHP
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Order refund
|
|
*
|
|
* @class WC_Order_Refund
|
|
* @version 2.2.0
|
|
* @package WooCommerce/Classes
|
|
* @category Class
|
|
* @author WooThemes
|
|
*/
|
|
class WC_Order_Refund extends WC_Abstract_Order {
|
|
|
|
/** @public string Order type */
|
|
public $order_type = 'refund';
|
|
|
|
/** @var string Date */
|
|
public $date;
|
|
|
|
/** @var string Refund reason */
|
|
public $reason;
|
|
|
|
/**
|
|
* Init/load the refund object. Called from the constructor.
|
|
*
|
|
* @param string|int|object|WC_Order_Refund $refund Refund to init
|
|
* @uses WP_POST
|
|
*/
|
|
protected function init( $refund ) {
|
|
if ( is_numeric( $refund ) ) {
|
|
$this->id = absint( $refund );
|
|
$this->post = get_post( $refund );
|
|
$this->get_refund( $this->id );
|
|
} elseif ( $refund instanceof WC_Order_Refund ) {
|
|
$this->id = absint( $refund->id );
|
|
$this->post = $refund->post;
|
|
$this->get_refund( $this->id );
|
|
} elseif ( isset( $refund->ID ) ) {
|
|
$this->id = absint( $refund->ID );
|
|
$this->post = $refund;
|
|
$this->get_refund( $this->id );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gets an refund from the database.
|
|
*
|
|
* @since 2.2
|
|
* @param int $id
|
|
* @return bool
|
|
*/
|
|
public function get_refund( $id = 0 ) {
|
|
if ( ! $id ) {
|
|
return false;
|
|
}
|
|
|
|
if ( $result = get_post( $id ) ) {
|
|
$this->populate( $result );
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Populates an refund from the loaded post data.
|
|
*
|
|
* @param mixed $result
|
|
*/
|
|
public function populate( $result ) {
|
|
// Standard post data
|
|
$this->id = $result->ID;
|
|
$this->date = $result->post_date;
|
|
$this->modified_date = $result->post_modified;
|
|
$this->reason = $result->post_excerpt;
|
|
}
|
|
|
|
/**
|
|
* Get refunded amount.
|
|
*
|
|
* @since 2.2
|
|
* @return int|float
|
|
*/
|
|
public function get_refund_amount() {
|
|
return apply_filters( 'woocommerce_refund_amount', (double) $this->refund_amount, $this );
|
|
}
|
|
|
|
/**
|
|
* Get formatted refunded amount.
|
|
*
|
|
* @since 2.4
|
|
* @return string
|
|
*/
|
|
public function get_formatted_refund_amount() {
|
|
return apply_filters( 'woocommerce_formatted_refund_amount', wc_price( $this->refund_amount, array('currency' => $this->get_order_currency()) ), $this );
|
|
}
|
|
|
|
|
|
/**
|
|
* Get refunded amount.
|
|
*
|
|
* @since 2.2
|
|
* @return int|float
|
|
*/
|
|
public function get_refund_reason() {
|
|
return apply_filters( 'woocommerce_refund_reason', $this->reason, $this );
|
|
}
|
|
}
|