summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected700/layout/MainLayout.php
blob: 3e0a3d19404b3707fa38f18ca7c4b2edaa0901bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

class MainLayout extends TTemplateControl
{
	public function logout($sender,$param)
	{
		$this->Application->getModule('auth')->logout();
		$this->Response->reload();
	}
}

?>