Création d'un nouveau module PointRetrait

This commit is contained in:
2021-02-25 19:00:59 +01:00
parent a077697e70
commit 948fa1510e
10 changed files with 222 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
<?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 PointRetrait;
use Thelia\Module\BaseModule;
class PointRetrait extends BaseModule
{
/** @var string */
const DOMAIN_NAME = 'pointretrait';
/*
* You may now override BaseModuleInterface methods, such as:
* install, destroy, preActivation, postActivation, preDeactivation, postDeactivation
*
* Have fun !
*/
}