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

212 lines
4.3 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-11-17 16:53:13 +00:00
/**
* Which data store to load.
*
* @var string
*/
protected $data_store_name = 'order-refund';
2016-11-21 14:20:29 +00:00
/**
* Stores product data.
*
* @var array
*/
protected $extra_data = array(
'amount' => '',
'reason' => '',
'refunded_by' => 0,
);
/**
2016-06-21 19:06:56 +00:00
* Extend the abstract _data properties and then read the order object.
2016-11-17 16:53:13 +00:00
*
* @param int|object|WC_Order $read Order to init.
*/
public function __construct( $read = 0 ) {
2016-11-21 14:20:29 +00:00
$this->data = array_merge( $this->data, $this->extra_data );
parent::__construct( $read );
}
/**
2016-11-17 16:53:13 +00:00
* Get internal type (post type.)
* @return string
2016-09-07 09:04:56 +00:00
*/
2016-11-17 16:53:13 +00:00
public function get_type() {
return 'shop_order_refund';
2016-09-07 09:04:56 +00:00
}
/**
2016-11-17 16:53:13 +00:00
* Prefix for action and filter hooks on data.
*
* @since 2.7.0
2016-06-21 19:06:56 +00:00
* @return string
*/
2016-11-17 16:53:13 +00:00
protected function get_hook_prefix() {
return 'woocommerce_get_order_refund_';
2016-06-21 19:06:56 +00:00
}
2016-08-22 12:04:57 +00:00
/**
* Get status - always completed for refunds.
2016-11-17 16:53:13 +00:00
*
* @param string $context
2016-08-22 12:04:57 +00:00
* @return string
*/
2016-11-17 16:53:13 +00:00
public function get_status( $context = 'view' ) {
2016-08-22 12:04:57 +00:00
return 'completed';
}
2016-06-21 19:06:56 +00:00
/**
* Get a title for the new post type.
*/
2016-11-17 16:53:13 +00:00
public function get_post_title() {
2016-09-01 20:50:14 +00:00
// @codingStandardsIgnoreStart
2016-06-21 19:06:56 +00:00
return sprintf( __( 'Refund &ndash; %s', 'woocommerce' ), strftime( _x( '%b %d, %Y @ %I:%M %p', 'Order date parsed by strftime', 'woocommerce' ) ) );
2016-09-01 20:50:14 +00:00
// @codingStandardsIgnoreEnd
2016-06-21 19:06:56 +00:00
}
/**
2016-11-17 16:53:13 +00:00
* Get refunded amount.
*
* @param string $context
* @return int|float
*/
2016-11-17 16:53:13 +00:00
public function get_amount( $context = 'view' ) {
return $this->get_prop( 'amount', $context );
}
/**
2016-11-17 16:53:13 +00:00
* Get refund reason.
*
* @since 2.2
* @param string $context
* @return int|float
*/
2016-11-17 16:53:13 +00:00
public function get_reason( $context = 'view' ) {
return $this->get_prop( 'reason', $context );
}
/**
* Get ID of user who did the refund.
*
* @since 2.7
* @param string $context
* @return int
*/
public function get_refunded_by( $context = 'view' ) {
return $this->get_prop( 'refunded_by', $context );
}
/**
2015-11-03 13:31:20 +00:00
* Get formatted refunded amount.
2016-11-17 16:53:13 +00:00
*
* @since 2.4
* @return string
*/
public function get_formatted_refund_amount() {
2016-08-22 12:04:57 +00:00
return apply_filters( 'woocommerce_formatted_refund_amount', wc_price( $this->get_amount(), array( 'currency' => $this->get_currency() ) ), $this );
}
2015-07-16 19:55:48 +00:00
2016-06-21 19:06:56 +00:00
/**
2016-11-17 16:53:13 +00:00
* Set refunded amount.
*
2016-06-21 19:06:56 +00:00
* @param string $value
2016-08-24 09:46:29 +00:00
* @throws WC_Data_Exception
2016-06-21 19:06:56 +00:00
*/
2016-11-17 16:53:13 +00:00
public function set_amount( $value ) {
$this->set_prop( 'amount', wc_format_decimal( $value ) );
2016-06-21 19:06:56 +00:00
}
/**
2016-11-17 16:53:13 +00:00
* Set refund reason.
*
* @param string $value
* @throws WC_Data_Exception
*/
2016-11-17 16:53:13 +00:00
public function set_reason( $value ) {
$this->set_prop( 'reason', $value );
2016-06-21 19:06:56 +00:00
}
/**
* Set refunded by.
2016-11-17 16:53:13 +00:00
*
2016-06-21 19:06:56 +00:00
* @param int $value
2016-08-24 09:46:29 +00:00
* @throws WC_Data_Exception
2016-06-21 19:06:56 +00:00
*/
public function set_refunded_by( $value ) {
2016-11-17 16:53:13 +00:00
$this->set_prop( 'refunded_by', absint( $value ) );
2016-06-21 19:06:56 +00:00
}
/**
2016-06-22 15:31:05 +00:00
* Magic __get method for backwards compatibility.
2016-11-17 16:53:13 +00:00
*
2016-06-22 15:31:05 +00:00
* @param string $key
* @return mixed
*/
public function __get( $key ) {
2016-11-23 16:15:00 +00:00
wc_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 ) {
2016-08-22 12:04:57 +00:00
return $this->get_reason();
2016-06-21 19:06:56 +00:00
} elseif ( 'refund_amount' === $key ) {
2016-08-22 12:04:57 +00:00
return $this->get_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 ) {
2016-11-23 16:15:00 +00:00
wc_deprecated_function( 'get_refund', '2.7', 'read' );
2016-06-22 15:31:05 +00:00
if ( ! $id ) {
return false;
}
if ( $result = get_post( $id ) ) {
$this->populate( $result );
return true;
}
return false;
}
2016-08-22 12:04:57 +00:00
/**
* Get refund amount.
* @deprecated 2.7
* @return int|float
*/
public function get_refund_amount() {
2016-11-23 16:15:00 +00:00
wc_deprecated_function( 'get_refund_amount', '2.7', 'get_amount' );
2016-08-22 12:04:57 +00:00
return $this->get_amount();
}
/**
* Get refund reason.
* @deprecated 2.7
* @return int|float
*/
public function get_refund_reason() {
2016-11-23 16:15:00 +00:00
wc_deprecated_function( 'get_refund_reason', '2.7', 'get_reason' );
2016-08-22 12:04:57 +00:00
return $this->get_reason();
}
}