Update to the controller base class for the new MVC system
authorChuck Hagenbuch <chuck@horde.org>
Sun, 9 Jan 2011 21:47:53 +0000 (16:47 -0500)
committerChuck Hagenbuch <chuck@horde.org>
Sun, 9 Jan 2011 21:47:53 +0000 (16:47 -0500)
hippo/app/controllers/ApplicationController.php [deleted file]
hippo/app/controllers/Base.php [new file with mode: 0644]

diff --git a/hippo/app/controllers/ApplicationController.php b/hippo/app/controllers/ApplicationController.php
deleted file mode 100644 (file)
index 07d2f4d..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-/**
- * @category Horde
- * @package  Hippo
- */
-
-/**
- * @category Horde
- * @package  Hippo
- */
-class Hippo_ApplicationController extends Horde_Controller_Base
-{
-    /**
-     */
-    protected function _initializeApplication()
-    {
-    }
-}
diff --git a/hippo/app/controllers/Base.php b/hippo/app/controllers/Base.php
new file mode 100644 (file)
index 0000000..8eabc33
--- /dev/null
@@ -0,0 +1,9 @@
+<?php
+/**
+  */
+class Hippo_Base_Controller extends Horde_Controller_Base
+{
+    public function processRequest(Horde_Controller_Request $request, Horde_Controller_Response $response)
+    {
+    }
+}