summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket239.php
blob: a40c94b5a016edd007f252467c2880452c525507 (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. ";
	}
}

?>