summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket239.php
blob: bbf908b1fdecc2d540d6c0cc59b9ebd7299c15a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class Ticket239 extends TPage
{
	public function activateView($sender,$param)
	{
		$this->Result->Text.=$sender->ID." is activated. ";
	}

	public function deactivateView($sender,$param)
	{
		$this->Result->Text.=$sender->ID." is deactivated. ";
	}
}

?>