????JFIF??x?x????'
| Server IP : 104.21.30.238  /  Your IP : 216.73.216.83 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/tempvsty/././pontiacques.org/wp-content/plugins/give/src/Revenue/ | 
| Upload File : | 
<?php
namespace Give\Revenue;
use Give\Revenue\Repositories\Revenue;
use Give\ValueObjects\Money;
/**
 * Class OnDonationHandler
 * @package Give\Revenue
 * @since 2.9.0
 *
 * use this class to insert revenue when new donation create.
 */
class DonationHandler
{
    /**
     * Handle new donation.
     *
     * @since 4.0.0 - set campaign id
     * @since 2.9.0
     *
     * @param int $donationId
     *
     */
    public function handle($donationId)
    {
        $amount = give_donation_amount($donationId);
        $currency = give_get_option('currency');
        $formId = give_get_payment_form_id($donationId);
        $campaign = give()->campaigns->getByFormId($formId);
        $data = [
            'donation_id' => $donationId,
            'form_id' =>  $formId,
            'amount' => Money::of($amount, $currency)->getMinorAmount(),
            'campaign_id' => $campaign ? $campaign->id : null,
        ];
        give(Revenue::class)->insert($data);
    }
}