From 803d69bc4f1c02bf7ab252d963d2c6120b8d7080 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 15 Dec 2013 11:19:19 +0100 Subject: Delete ActionController.php --- lib/minz/ActionController.php | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100755 lib/minz/ActionController.php (limited to 'lib/minz/ActionController.php') 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 @@ - -*/ - -/** - * 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 () { } -} - - -- cgit v1.2.3