Il manquait quelques fichiers dans Git
This commit is contained in:
25
local/modules/Axepta/Config/config.xml
Executable file
25
local/modules/Axepta/Config/config.xml
Executable file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<config xmlns="http://thelia.net/schema/dic/config"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://thelia.net/schema/dic/config http://thelia.net/schema/dic/config/thelia-1.0.xsd">
|
||||
|
||||
<forms>
|
||||
<form name="axepta_configuration" class="Axepta\Form\ConfigurationForm" />
|
||||
</forms>
|
||||
|
||||
<services>
|
||||
<service id="axepta.send.confirmation_mail" class="Axepta\EventListeners\SendConfirmationEmail">
|
||||
<tag name="kernel.event_subscriber"/>
|
||||
</service>
|
||||
</services>
|
||||
|
||||
<hooks>
|
||||
<hook id="axepta.configuration.hook" class="Axepta\Hook\HookManager">
|
||||
<tag name="hook.event_listener" event="module.configuration" type="back" method="onModuleConfigure" />
|
||||
</hook>
|
||||
<hook id="axepta.orderpaymentgateway.hook" class="Axepta\Hook\HookManager">
|
||||
<tag name="hook.event_listener" event="order-payment-gateway.javascript" type="front" method="onOrderPaymentGatewayJavascript" />
|
||||
</hook>
|
||||
</hooks>
|
||||
</config>
|
||||
28
local/modules/Axepta/Config/module.xml
Executable file
28
local/modules/Axepta/Config/module.xml
Executable file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module xmlns="http://thelia.net/schema/dic/module"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://thelia.net/schema/dic/module http://thelia.net/schema/dic/module/module-2_2.xsd">
|
||||
<fullnamespace>Axepta\Axepta</fullnamespace>
|
||||
<descriptive locale="en_US">
|
||||
<title>Payement with Axepta</title>
|
||||
</descriptive>
|
||||
<descriptive locale="fr_FR">
|
||||
<title>Paiement avec Axepta</title>
|
||||
</descriptive>
|
||||
<languages>
|
||||
<language>en_US</language>
|
||||
<language>fr_FR</language>
|
||||
</languages>
|
||||
<version>1.0.1</version>
|
||||
<authors>
|
||||
<author>
|
||||
<name>Nicolas Barbey</name>
|
||||
<email>nbarbey@openstudio.fr</email>
|
||||
</author>
|
||||
</authors>
|
||||
<type>classic</type>
|
||||
<thelia>2.3.0</thelia>
|
||||
<stability>other</stability>
|
||||
<mandatory>0</mandatory>
|
||||
<hidden>0</hidden>
|
||||
</module>
|
||||
14
local/modules/Axepta/Config/routing.xml
Executable file
14
local/modules/Axepta/Config/routing.xml
Executable file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
|
||||
<route id="axepta.configure" path="/admin/module/axepta/configure" methods="post">
|
||||
<default key="_controller">Axepta\Controller\ConfigurationController::configure</default>
|
||||
</route>
|
||||
|
||||
<route id="axepta.notification_url" path="/axepta/notification">
|
||||
<default key="_controller">Axepta\Controller\NotificationController::notificationAction</default>
|
||||
</route>
|
||||
</routes>
|
||||
Reference in New Issue
Block a user