summaryrefslogtreecommitdiffstats
path: root/application/modules/fbgui/controllers/AuthController.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/fbgui/controllers/AuthController.php')
-rw-r--r--application/modules/fbgui/controllers/AuthController.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/application/modules/fbgui/controllers/AuthController.php b/application/modules/fbgui/controllers/AuthController.php
new file mode 100644
index 0000000..16c5d7c
--- /dev/null
+++ b/application/modules/fbgui/controllers/AuthController.php
@@ -0,0 +1,32 @@
+<?php
+
+class Fbgui_AuthController extends Zend_Controller_Action
+{
+
+ public function init()
+ {
+ /* Initialize action controller here */
+ }
+
+ public function indexAction()
+ {
+ // action body
+ }
+
+ public function loginAction()
+ {
+ // action body
+ }
+
+ public function logoutAction()
+ {
+ // action body
+ }
+
+
+}
+
+
+
+
+