PHP Интерфейс Sonata\Component\Payment\PaymentInterface

Показать файл Открыть проект Примеры использования интерфейса

Открытые методы

Метод Описание
applyTransactionId ( Sonata\Component\Payment\TransactionInterface $transaction ) return the transaction id from the bank.
callback ( Sonata\Component\Payment\TransactionInterface $transaction ) : Response
encodeString ( string $value ) : string encode value for the bank.
getCode ( ) : string
getName ( ) : string
getOrderReference ( Sonata\Component\Payment\TransactionInterface $transaction ) : string return the order reference from the transaction.
getTransformer ( $name ) : BaseTransformer Gets the transformer for $name.
handleError ( Sonata\Component\Payment\TransactionInterface $transaction ) : Response Method called when an error occurs.
isAddableProduct ( Sonata\Component\Basket\BasketInterface $basket, Sonata\Component\Product\ProductInterface $product ) return true if the product can be added to the basket.
isBasketValid ( Sonata\Component\Basket\BasketInterface $basket ) : boolean return true is the basket is valid for the current bank gateway.
isCallbackValid ( Sonata\Component\Payment\TransactionInterface $transaction ) : boolean
isRequestValid ( Sonata\Component\Payment\TransactionInterface $transaction ) : boolean Test if the request variables are valid for the current request.
sendConfirmationReceipt ( Sonata\Component\Payment\TransactionInterface $transaction ) : Response,,Symfony\Component\HttpFoundation Send post back confirmation to the bank when the bank callback the site.
sendbank ( Sonata\Component\Order\OrderInterface $order ) : Response Send information to the bank, this method should handle everything when called.

Описание методов

applyTransactionId() публичный Метод

return the transaction id from the bank.
public applyTransactionId ( Sonata\Component\Payment\TransactionInterface $transaction )
$transaction Sonata\Component\Payment\TransactionInterface

callback() публичный Метод

public callback ( Sonata\Component\Payment\TransactionInterface $transaction ) : Response
$transaction Sonata\Component\Payment\TransactionInterface
Результат Symfony\Component\HttpFoundation\Response

encodeString() публичный Метод

encode value for the bank.
public encodeString ( string $value ) : string
$value string
Результат string the encoded value

getCode() публичный Метод

public getCode ( ) : string
Результат string

getName() публичный Метод

public getName ( ) : string
Результат string

getOrderReference() публичный Метод

return the order reference from the transaction.
public getOrderReference ( Sonata\Component\Payment\TransactionInterface $transaction ) : string
$transaction Sonata\Component\Payment\TransactionInterface
Результат string

getTransformer() публичный Метод

Gets the transformer for $name.
public getTransformer ( $name ) : BaseTransformer
$name
Результат Sonata\Component\Transformer\BaseTransformer

handleError() публичный Метод

Method called when an error occurs.
public handleError ( Sonata\Component\Payment\TransactionInterface $transaction ) : Response
$transaction Sonata\Component\Payment\TransactionInterface
Результат Symfony\Component\HttpFoundation\Response

isAddableProduct() публичный Метод

return true if the product can be added to the basket.
public isAddableProduct ( Sonata\Component\Basket\BasketInterface $basket, Sonata\Component\Product\ProductInterface $product )
$basket Sonata\Component\Basket\BasketInterface
$product Sonata\Component\Product\ProductInterface

isBasketValid() публичный Метод

return true is the basket is valid for the current bank gateway.
public isBasketValid ( Sonata\Component\Basket\BasketInterface $basket ) : boolean
$basket Sonata\Component\Basket\BasketInterface
Результат boolean

isCallbackValid() публичный Метод

public isCallbackValid ( Sonata\Component\Payment\TransactionInterface $transaction ) : boolean
$transaction Sonata\Component\Payment\TransactionInterface
Результат boolean true if callback ok else false

isRequestValid() публичный Метод

WARNING : this methods does not check if the callback is valid
public isRequestValid ( Sonata\Component\Payment\TransactionInterface $transaction ) : boolean
$transaction Sonata\Component\Payment\TransactionInterface
Результат boolean true if all parameter are ok

sendConfirmationReceipt() публичный Метод

Send post back confirmation to the bank when the bank callback the site.
public sendConfirmationReceipt ( Sonata\Component\Payment\TransactionInterface $transaction ) : Response,,Symfony\Component\HttpFoundation
$transaction Sonata\Component\Payment\TransactionInterface
Результат Response,,Symfony\Component\HttpFoundation

sendbank() публичный Метод

Send information to the bank, this method should handle everything when called.
public sendbank ( Sonata\Component\Order\OrderInterface $order ) : Response
$order Sonata\Component\Order\OrderInterface
Результат Symfony\Component\HttpFoundation\Response