whoami7 - Manager
:
/
home
/
dataiclx
/
vielorbe.com
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Models
/
Upload File:
files >> //home/dataiclx/vielorbe.com/wp-content/plugins/surecart/app/src/Models/PaymentIntent.php
<?php namespace SureCart\Models; use SureCart\Models\Traits\HasCustomer; use SureCart\Models\Traits\HasPlatformFee; use SureCart\Support\Currency; /** * Payment intent model. */ class PaymentIntent extends Model { use HasCustomer; use HasPlatformFee; /** * Rest API endpoint * * @var string */ protected $endpoint = 'payment_intents'; /** * Object name * * @var string */ protected $object_name = 'payment_intent'; /** * Capture the payment intent * * @return $this|\WP_Error */ protected function capture() { if ( $this->fireModelEvent( 'capturing' ) === false ) { return false; } if ( empty( $this->attributes['id'] ) ) { return new \WP_Error( 'not_saved', 'Please create a payment intent.' ); } $captured = \SureCart::request( $this->endpoint . '/' . $this->attributes['id'] . '/capture/', [ 'method' => 'PATCH', 'query' => $this->query, 'body' => [ $this->object_name => $this->getAttributes(), ], ] ); if ( is_wp_error( $captured ) ) { return $captured; } $this->resetAttributes(); $this->fill( $captured ); $this->fireModelEvent( 'captured' ); return $this; } /** * Get the display amount for total fees * * @return array */ public function getTotalFeesDisplayAmountAttribute() { $platform_fee_amount = $this->platform_fee->amount ?? 0; $service_fee_amount = $this->service_fee->amount ?? 0; $total_fees = $platform_fee_amount + $service_fee_amount; return Currency::format( $total_fees, $this->currency ); } }
Copyright ©2021 || Defacer Indonesia