summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected700/layout/MainLayout.php
blob: 6f385ce874e1dbfe7627a5c2748c5cce2f26a648 (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();
	}
}

?>