From baca06fbaec3bc4a6ffcaf88082d6ecabd4ce03c Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 11 Sep 2013 18:42:58 +0200 Subject: [PATCH] add controller for Logout --- controllers/class.Logout.php | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 controllers/class.Logout.php diff --git a/controllers/class.Logout.php b/controllers/class.Logout.php new file mode 100644 index 000000000..030d07599 --- /dev/null +++ b/controllers/class.Logout.php @@ -0,0 +1,34 @@ + + * @copyright Copyright (C) 2010-2013 Uwe Steinmann + * @version Release: @package_version@ + */ + +/** + * Class which does the busines logic when logging in + * + * @category DMS + * @package SeedDMS + * @author Uwe Steinmann + * @copyright Copyright (C) 2010-2013 Uwe Steinmann + * @version Release: @package_version@ + */ +class SeedDMS_Controller_Logout extends SeedDMS_Controller_Common { + + public function run() { + $dms = $this->params['dms']; + $user = $this->params['user']; + $settings = $this->params['settings']; + $session = $this->params['session']; + + if($this->callHook('postLogout')) { + } + } +}