Skip to content

Instantly share code, notes, and snippets.

@bluetidepro
Created December 12, 2012 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bluetidepro/cf9c5c875cb2d53112c9 to your computer and use it in GitHub Desktop.
Save bluetidepro/cf9c5c875cb2d53112c9 to your computer and use it in GitHub Desktop.
logout
/**
* Logout user
*
* @return void
*/
function logout(){
if ($this->tank_auth->is_logged_in()) {
$this->tank_auth->logout();
$this->_show_message($this->lang->line('auth_message_logged_out'));
redirect('');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment