From 597da572521be4ca5de42ed3e9c254c99edee8e5 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Fri, 15 Nov 2013 12:06:34 +0100 Subject: [PATCH] start Front module --- core/lib/Thelia/Config/Resources/routing.xml | 2 ++ local/modules/Front/Config/config.xml | 18 ++++++++++ local/modules/Front/Config/module.xml | 20 +++++++++++ .../modules/Front/Config/routing.xml | 0 local/modules/Front/Front.php | 35 +++++++++++++++++++ 5 files changed, 75 insertions(+) create mode 100644 local/modules/Front/Config/config.xml create mode 100644 local/modules/Front/Config/module.xml rename core/lib/Thelia/Config/Resources/routing/front.xml => local/modules/Front/Config/routing.xml (100%) create mode 100644 local/modules/Front/Front.php diff --git a/core/lib/Thelia/Config/Resources/routing.xml b/core/lib/Thelia/Config/Resources/routing.xml index 54159734c..c213039ae 100755 --- a/core/lib/Thelia/Config/Resources/routing.xml +++ b/core/lib/Thelia/Config/Resources/routing.xml @@ -56,6 +56,7 @@ + diff --git a/local/modules/Front/Config/config.xml b/local/modules/Front/Config/config.xml new file mode 100644 index 000000000..029e5880a --- /dev/null +++ b/local/modules/Front/Config/config.xml @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/local/modules/Front/Config/module.xml b/local/modules/Front/Config/module.xml new file mode 100644 index 000000000..de351133d --- /dev/null +++ b/local/modules/Front/Config/module.xml @@ -0,0 +1,20 @@ + + + Front\Front + + front integration + + + + front office module + + + 0.1 + + Thelia team + info@thelia.net + + classic + 2.0.0 + dev + diff --git a/core/lib/Thelia/Config/Resources/routing/front.xml b/local/modules/Front/Config/routing.xml similarity index 100% rename from core/lib/Thelia/Config/Resources/routing/front.xml rename to local/modules/Front/Config/routing.xml diff --git a/local/modules/Front/Front.php b/local/modules/Front/Front.php new file mode 100644 index 000000000..67498ba24 --- /dev/null +++ b/local/modules/Front/Front.php @@ -0,0 +1,35 @@ +. */ +/* */ +/*************************************************************************************/ + +namespace Front; + +use Thelia\Module\BaseModule; + +class Front extends BaseModule +{ + /** + * YOU HAVE TO IMPLEMENT HERE ABSTRACT METHODD FROM BaseModule Class + * Like install and destroy + */ + +}