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,29 @@
<?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 StripePayment\Model\Config\Base;
/**
* Class StripePaymentConfigValue
* @package StripePayment\Model\Config\Base
*/
class StripePaymentConfigValue
{
const ENABLED = "enabled";
const STRIPE_ELEMENT = "stripe_element";
const ONE_CLICK_PAYMENT = "one_click_payment";
const SECRET_KEY = "secret_key";
const PUBLISHABLE_KEY = "publishable_key";
const WEBHOOKS_KEY = "webhooks_key";
const SECURE_URL = "secure_url";
}