woocommerce/includes/class-wc-order-refund.php

191 lines
4.7 KiB
PHP
Raw Normal View History

<?php
2015-11-06 09:22:19 +00:00
if ( ! defined( 'ABSPATH' ) ) {
2016-06-21 19:06:56 +00:00
exit;
2015-11-06 09:22:19 +00:00
}
/**
2016-06-21 19:06:56 +00:00
* Order refund. Refunds are based on orders (essentially negative orders) and
* contain much of the same data.
*
2016-06-21 19:06:56 +00:00
* @version 2.7.0
* @package WooCommerce/Classes
* @category Class
* @author WooThemes
*/
class WC_Order_Refund extends WC_Abstract_Order {
/**
2016-06-21 19:06:56 +00:00
* Extend the abstract _data properties and then read the order object.
*
2016-06-21 19:06:56 +00:00
* @param int|object|WC_Order $order Order to init.
*/
2016-06-21 19:06:56 +00:00
public function __construct( $order = 0 ) {
$this->_data = array_merge( $this->_data, array(
'refund_amount' => '',
'refund_reason' => '',
'refunded_by' => 0,
) );
parent::__construct( $order );
}
/**
2016-06-21 19:06:56 +00:00
* Insert data into the database.
* @since 2.7.0
*/
2016-06-21 19:06:56 +00:00
public function create() {
parent::create();
// Store additonal order data
if ( $this->get_id() ) {
$this->update_post_meta( '_refund_amount', $this->get_refund_amount() );
$this->update_post_meta( '_refunded_by', $this->get_refunded_by() );
$this->update_post_meta( '_refund_reason', $this->get_refund_reason() );
}
2016-06-21 19:06:56 +00:00
}
/**
2016-06-22 15:31:05 +00:00
* Read from the database.
* @since 2.7.0
* @param int $id ID of object to read.
*/
public function read( $id ) {
2016-06-21 19:06:56 +00:00
parent::read( $id );
// Read additonal order data
if ( $this->get_id() ) {
$post_object = get_post( $id );
$this->set_refund_amount( get_post_meta( $this->get_id(), '_refund_amount', true ) );
2016-06-21 19:06:56 +00:00
// post_author was used before refunded_by meta.
$this->set_refunded_by( metadata_exists( 'post', $this->get_id(), '_refunded_by' ) ? get_post_meta( $this->get_id(), '_refunded_by', true ) : absint( $post_object->post_author ) );
2016-06-21 19:06:56 +00:00
// post_excerpt was used before refund_reason meta.
$this->set_refund_reason( metadata_exists( 'post', $this->get_id(), '_refund_reason' ) ? get_post_meta( $this->get_id(), '_refund_reason', true ) : absint( $post_object->post_excerpt ) );
}
2016-06-21 19:06:56 +00:00
}
/**
* Update data in the database.
* @since 2.7.0
*/
public function update() {
parent::update();
2016-06-21 19:06:56 +00:00
// Store additonal order data
$this->update_post_meta( '_refund_amount', $this->get_refund_amount() );
$this->update_post_meta( '_refunded_by', $this->get_refunded_by() );
$this->update_post_meta( '_refund_reason', $this->get_refund_reason() );
}
/**
2016-06-21 19:06:56 +00:00
* Get internal type (post type.)
* @return string
*/
public function get_type() {
return 'shop_order_refund';
}
/**
* Get a title for the new post type.
*/
protected function get_post_title() {
return sprintf( __( 'Refund &ndash; %s', 'woocommerce' ), strftime( _x( '%b %d, %Y @ %I:%M %p', 'Order date parsed by strftime', 'woocommerce' ) ) );
}
/**
* Set refunded amount.
* @param string $value
*/
2016-06-21 19:06:56 +00:00
public function set_refund_amount( $value ) {
$this->_data['refund_amount'] = wc_format_decimal( $value );
}
/**
2015-11-03 13:31:20 +00:00
* Get refunded amount.
* @since 2.2
* @return int|float
*/
public function get_refund_amount() {
2016-06-21 19:06:56 +00:00
return apply_filters( 'woocommerce_refund_amount', (double) $this->_data['refund_amount'], $this );
}
/**
2015-11-03 13:31:20 +00:00
* Get formatted refunded amount.
* @since 2.4
* @return string
*/
public function get_formatted_refund_amount() {
2016-06-21 19:06:56 +00:00
return apply_filters( 'woocommerce_formatted_refund_amount', wc_price( $this->get_refund_amount(), array( 'currency' => $this->get_currency() ) ), $this );
}
2015-07-16 19:55:48 +00:00
2016-06-21 19:06:56 +00:00
/**
* Set refund reason.
* @param string $value
*/
public function set_refund_reason( $value ) {
$this->_data['refund_reason'] = $value;
}
/**
2016-06-21 19:06:56 +00:00
* Get refund reason.
* @since 2.2
* @return int|float
*/
public function get_refund_reason() {
2016-06-21 19:06:56 +00:00
return apply_filters( 'woocommerce_refund_reason', $this->_data['refund_reason'], $this );
}
/**
* Set refunded by.
* @param int $value
*/
public function set_refunded_by( $value ) {
$this->_data['refunded_by'] = absint( $value );
}
/**
* Get ID of user who did the refund.
* @since 2.7
* @return int
*/
public function get_refunded_by() {
return absint( $this->_data['refunded_by'] );
}
/**
2016-06-22 15:31:05 +00:00
* Magic __get method for backwards compatibility.
* @param string $key
* @return mixed
*/
public function __get( $key ) {
2016-06-21 19:06:56 +00:00
_doing_it_wrong( $key, 'Refund properties should not be accessed directly.', '2.7' );
2016-06-22 15:31:05 +00:00
/**
* Maps legacy vars to new getters.
*/
if ( 'reason' === $key ) {
return $this->get_refund_reason();
2016-06-21 19:06:56 +00:00
} elseif ( 'refund_amount' === $key ) {
2016-06-22 15:31:05 +00:00
return $this->get_refund_amount();
2016-06-21 19:06:56 +00:00
}
return parent::__get( $key );
}
2016-06-21 19:06:56 +00:00
/**
2016-06-22 15:31:05 +00:00
* Gets an refund from the database.
* @deprecated 2.7
* @param int $id (default: 0).
* @return bool
*/
public function get_refund( $id = 0 ) {
_deprecated_function( 'get_refund', '2.7', 'read' );
if ( ! $id ) {
return false;
}
if ( $result = get_post( $id ) ) {
$this->populate( $result );
return true;
}
return false;
}
}