diff --git a/local/modules/DeliveryModulesInFooter/Config/config.xml b/local/modules/DeliveryModulesInFooter/Config/config.xml new file mode 100644 index 00000000..fae3bc43 --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/Config/config.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/modules/DeliveryModulesInFooter/Config/config_dev.xml b/local/modules/DeliveryModulesInFooter/Config/config_dev.xml new file mode 100644 index 00000000..fae3bc43 --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/Config/config_dev.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/modules/DeliveryModulesInFooter/Config/config_prod.xml b/local/modules/DeliveryModulesInFooter/Config/config_prod.xml new file mode 100644 index 00000000..fae3bc43 --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/Config/config_prod.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/modules/DeliveryModulesInFooter/Config/config_test.xml b/local/modules/DeliveryModulesInFooter/Config/config_test.xml new file mode 100644 index 00000000..fae3bc43 --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/Config/config_test.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/local/modules/DeliveryModulesInFooter/Config/module.xml b/local/modules/DeliveryModulesInFooter/Config/module.xml new file mode 100644 index 00000000..523b42c5 --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/Config/module.xml @@ -0,0 +1,43 @@ + + + DeliveryModulesInFooter\DeliveryModulesInFooter + + Automatically generated module - please update module.xml file + + + + Module généré automatiquement - éditez le fichier module.xml + + + + + en_US + fr_FR + + + + + + + + + classic + + 2.2.0 + other + 0 + 0 + diff --git a/local/modules/DeliveryModulesInFooter/Config/routing.xml b/local/modules/DeliveryModulesInFooter/Config/routing.xml new file mode 100644 index 00000000..c67564ce --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/Config/routing.xml @@ -0,0 +1,31 @@ + + + + + + + diff --git a/local/modules/DeliveryModulesInFooter/Config/schema.xml b/local/modules/DeliveryModulesInFooter/Config/schema.xml new file mode 100644 index 00000000..c6378571 --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/Config/schema.xml @@ -0,0 +1,30 @@ + + + + + diff --git a/local/modules/DeliveryModulesInFooter/DeliveryModulesInFooter.php b/local/modules/DeliveryModulesInFooter/DeliveryModulesInFooter.php new file mode 100644 index 00000000..009836df --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/DeliveryModulesInFooter.php @@ -0,0 +1,28 @@ + 'The displayed english string', +); diff --git a/local/modules/DeliveryModulesInFooter/I18n/fr_FR.php b/local/modules/DeliveryModulesInFooter/I18n/fr_FR.php new file mode 100644 index 00000000..37086245 --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/I18n/fr_FR.php @@ -0,0 +1,4 @@ + 'La traduction française de la chaine', +); diff --git a/local/modules/DeliveryModulesInFooter/Readme.md b/local/modules/DeliveryModulesInFooter/Readme.md new file mode 100644 index 00000000..65603eaa --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/Readme.md @@ -0,0 +1,55 @@ +# Delivery Modules In Footer + +Add a short description here. You can also add a screenshot if needed. + +## Installation + +### Manually + +* Copy the module into ```/local/modules/``` directory and be sure that the name of the module is DeliveryModulesInFooter. +* Activate it in your thelia administration panel + +### Composer + +Add it in your main thelia composer.json file + +``` +composer require your-vendor/delivery-modules-in-footer-module:~1.0 +``` + +## Usage + +Explain here how to use your module, how to configure it, etc. + +## Hook + +If your module use one or more hook, fill this part. Explain which hooks are used. + + +## Loop + +If your module declare one or more loop, describe them here like this : + +[loop name] + +### Input arguments + +|Argument |Description | +|--- |--- | +|**arg1** | describe arg1 with an exemple. | +|**arg2** | describe arg2 with an exemple. | + +### Output arguments + +|Variable |Description | +|--- |--- | +|$VAR1 | describe $VAR1 variable | +|$VAR2 | describe $VAR2 variable | + +### Exemple + +Add a complete exemple of your loop + +## Other ? + +If you have other think to put, feel free to complete your readme as you want. diff --git a/local/modules/DeliveryModulesInFooter/composer.json b/local/modules/DeliveryModulesInFooter/composer.json new file mode 100644 index 00000000..bf31eeb0 --- /dev/null +++ b/local/modules/DeliveryModulesInFooter/composer.json @@ -0,0 +1,11 @@ +{ + "name": "your-vendor/delivery-modules-in-footer-module", + "license": "LGPL-3.0+", + "type": "thelia-module", + "require": { + "thelia/installer": "~1.1" + }, + "extra": { + "installer-name": "DeliveryModulesInFooter" + } +} \ No newline at end of file