From ac5c6b9f5aa7e553758b1785e7ff7db2c00c79eb Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Mon, 2 Sep 2013 16:59:10 +0200 Subject: [PATCH] create install router --- core/lib/Thelia/Config/Resources/routing.xml | 11 ++++++ .../Config/Resources/routing/install.xml | 12 +++++++ .../Controller/Install/InstallController.php | 35 +++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 core/lib/Thelia/Config/Resources/routing/install.xml create mode 100644 core/lib/Thelia/Controller/Install/InstallController.php diff --git a/core/lib/Thelia/Config/Resources/routing.xml b/core/lib/Thelia/Config/Resources/routing.xml index 9c61c55a8..5200aefc1 100755 --- a/core/lib/Thelia/Config/Resources/routing.xml +++ b/core/lib/Thelia/Config/Resources/routing.xml @@ -56,6 +56,17 @@ + + + install.xml + + %kernel.cache_dir% + %kernel.debug% + + + + + front.xml diff --git a/core/lib/Thelia/Config/Resources/routing/install.xml b/core/lib/Thelia/Config/Resources/routing/install.xml new file mode 100644 index 000000000..8e0357fe0 --- /dev/null +++ b/core/lib/Thelia/Config/Resources/routing/install.xml @@ -0,0 +1,12 @@ + + + + + + Thelia\Controller\Front\DefaultController::noAction + index + + + diff --git a/core/lib/Thelia/Controller/Install/InstallController.php b/core/lib/Thelia/Controller/Install/InstallController.php new file mode 100644 index 000000000..1906d25ae --- /dev/null +++ b/core/lib/Thelia/Controller/Install/InstallController.php @@ -0,0 +1,35 @@ +. */ +/* */ +/*************************************************************************************/ + +namespace Thelia\Controller\Install; +use Thelia\Controller\BaseController; + + +/** + * Class InstallController + * @package Thelia\Controller\Install + * @author Manuel Raynaud + */ +class InstallController extends BaseController { + +} \ No newline at end of file