You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

logout.php 244 B

3 years ago
1234567891011121314151617
  1. <?php
  2. import("classes.BaseController");
  3. class LogoutController extends BaseController {
  4. public function onBefore() {
  5. }
  6. /** log out from system **/
  7. function doIndex() {
  8. session_destroy();
  9. $this->redirect("login.index");
  10. }
  11. }
  12. ?>