Module Galerie: Rajout du contrôleur et des vues
[zf2.biz/galerie.git] / module / Galerie / src / Galerie / Controller / IndexController.php
diff --git a/module/Galerie/src/Galerie/Controller/IndexController.php b/module/Galerie/src/Galerie/Controller/IndexController.php
new file mode 100644 (file)
index 0000000..48b3b61
--- /dev/null
@@ -0,0 +1,29 @@
+<?php
+
+namespace Galerie\Controller; 
+
+use Zend\Mvc\Controller\AbstractActionController; 
+
+
+class IndexController extends AbstractActionController 
+{ 
+    public function indexAction() 
+    { 
+        return array(); 
+    } 
+
+    public function editAction() 
+    { 
+        return array(); 
+    } 
+
+    public function delAction() 
+    { 
+        return array(); 
+    } 
+
+    public function viewAction() 
+    { 
+        return array(); 
+    } 
+}