blob: 61fd113dc7acdd059ccdbd7633f81e29e8f3a6c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
class MemberPage extends TPage
{
public function logout($sender,$param)
{
$this->Application->AuthManager->logout();
$this->Application->Response->redirect($this->Application->Service->constructUrl('home'));
}
}
?>
|