aboutsummaryrefslogtreecommitdiff
path: root/lib/minz/ActionController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-15 11:19:19 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-15 11:19:19 +0100
commit803d69bc4f1c02bf7ab252d963d2c6120b8d7080 (patch)
treed8a7938c0738e4397bd2a731d17a4c349bd1c5bd /lib/minz/ActionController.php
parent74bceb2e2cdf0e3da5fb36990f3ee54e745e3d09 (diff)
Delete ActionController.php
Diffstat (limited to 'lib/minz/ActionController.php')
-rwxr-xr-xlib/minz/ActionController.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/lib/minz/ActionController.php b/lib/minz/ActionController.php
deleted file mode 100755
index 409d9611f..000000000
--- a/lib/minz/ActionController.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-/**
- * MINZ - Copyright 2011 Marien Fressinaud
- * Sous licence AGPL3 <http://www.gnu.org/licenses/>
-*/
-
-/**
- * La classe ActionController représente le contrôleur de l'application
- */
-class Minz_ActionController {
- protected $router;
- protected $view;
-
- /**
- * Constructeur
- * @param $controller nom du controller
- * @param $action nom de l'action à lancer
- */
- public function __construct ($router) {
- $this->router = $router;
- $this->view = new Minz_View ();
- $this->view->attributeParams ();
- }
-
- /**
- * Getteur
- */
- public function view () {
- return $this->view;
- }
-
- /**
- * Méthodes à redéfinir (ou non) par héritage
- * firstAction est la première méthode exécutée par le Dispatcher
- * lastAction est la dernière
- */
- public function init () { }
- public function firstAction () { }
- public function lastAction () { }
-}
-
-