54 lines
2.0 KiB
PHP
54 lines
2.0 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the Thelia package. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
namespace Thelia\Module;
|
|
|
|
use Thelia\Model\Order;
|
|
|
|
interface PaymentModuleInterface extends BaseModuleInterface
|
|
{
|
|
/**
|
|
*
|
|
* Method used by payment gateway.
|
|
*
|
|
* If this method return a \Thelia\Core\HttpFoundation\Response instance, this response is send to the
|
|
* browser.
|
|
*
|
|
* In many cases, it's necessary to send a form to the payment gateway. On your response you can return this form already
|
|
* completed, ready to be sent
|
|
*
|
|
* @param \Thelia\Model\Order $order processed order
|
|
* @return null|\Thelia\Core\HttpFoundation\Response
|
|
*/
|
|
public function pay(Order $order);
|
|
|
|
/**
|
|
*
|
|
* This method is call on Payment loop.
|
|
*
|
|
* If you return true, the payment method will de display
|
|
* If you return false, the payment method will not be display
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public function isValidPayment();
|
|
|
|
|
|
/**
|
|
* if you want, you can manage stock in your module instead of order process.
|
|
* Return false to decrease the stock when order status switch to pay
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function manageStockOnCreation();
|
|
}
|