Corrections diverses
[zf2.biz/galerie.git] / module / Application / src / Application / Controller / IndexController.php
index 8c1f5e1..0062914 100644 (file)
@@ -1,13 +1,28 @@
 <?php
+/**
+ * Zend Framework (http://framework.zend.com/)
+ *
+ * @link      http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license   http://framework.zend.com/license/new-bsd New BSD License
+ */
 
 namespace Application\Controller;
 
-use Zend\Mvc\Controller\ActionController;
+use Zend\Mvc\Controller\AbstractActionController;
+use Zend\View\Model\ViewModel;
 
-class IndexController extends ActionController
+class IndexController extends AbstractActionController
 {
     public function indexAction()
     {
-        return array();
+        return new ViewModel();
+    }
+    
+    public function testAction()
+    {
+        return array(
+            'name' => 'test: ajout action',
+        );
     }
 }