Installation du module Stripe

This commit is contained in:
2020-09-01 19:16:54 +02:00
parent 1d513623d6
commit 16597281d2
44 changed files with 2825 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace StripePayment\Controller;
use Thelia\Module\BasePaymentModuleController;
/**
* Class StripePaymentController
* @package StripePayment\Controller
* @author Etienne Perriere - OpenStudio <eperriere@openstudio.fr>
*/
class StripePaymentController extends BasePaymentModuleController
{
/**
* Return a module identifier used to calculate the name of the log file,
* and in the log messages.
*
* @return string the module code
*/
protected function getModuleCode()
{
return 'StripePayment';
}
}