Submit
Path:
~
/
/
usr
/
local
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
packages
/
kkart-admin
/
src
/
Overrides
/
File Content:
OrderRefund.php
<?php /** * KKART Admin Order Refund * * KKART Admin Order Refund class that adds some functionality on top of general Kkart KKART_Order_Refund. */ namespace Automattic\Kkart\Admin\Overrides; defined( 'ABSPATH' ) || exit; use \Automattic\Kkart\Admin\API\Reports\Customers\DataStore as CustomersDataStore; /** * KKART_Order_Refund subclass. */ class OrderRefund extends \KKART_Order_Refund { /** * Order traits. */ use OrderTraits; /** * Add filter(s) required to hook this class to substitute KKART_Order_Refund. */ public static function add_filters() { add_filter( 'kkart_order_class', array( __CLASS__, 'order_class_name' ), 10, 3 ); } /** * Filter function to swap class KKART_Order_Refund for this one in cases when it's suitable. * * @param string $classname Name of the class to be created. * @param string $order_type Type of order object to be created. * @param number $order_id Order id to create. * * @return string */ public static function order_class_name( $classname, $order_type, $order_id ) { // @todo - Only substitute class when necessary (during sync). if ( 'KKART_Order_Refund' === $classname ) { return '\Automattic\Kkart\Admin\Overrides\OrderRefund'; } else { return $classname; } } /** * Get the customer ID of the parent order used for reports in the customer lookup table. * * @return int|bool Customer ID of parent order, or false if parent order not found. */ public function get_report_customer_id() { $parent_order = kkart_get_order( $this->get_parent_id() ); if ( ! $parent_order ) { return false; } return CustomersDataStore::get_or_create_customer_from_order( $parent_order ); } /** * Returns null since refunds should not be counted towards returning customer counts. * * @return null */ public function is_returning_customer() { return null; } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
Order.php
3459 bytes
0644
OrderRefund.php
1880 bytes
0644
OrderTraits.php
2623 bytes
0644
ThemeUpgrader.php
2046 bytes
0644
ThemeUpgraderSkin.php
800 bytes
0644
N4ST4R_ID | Naxtarrr