Rajout du dossier core + MAJ .gitignore
This commit is contained in:
53
core/lib/Thelia/Module/PaymentModuleInterface.php
Normal file
53
core/lib/Thelia/Module/PaymentModuleInterface.php
Normal file
@@ -0,0 +1,53 @@
|
||||
<?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();
|
||||
}
|
||||
Reference in New Issue
Block a user