summaryrefslogtreecommitdiff
path: root/framework/Web/UI/ActiveControls/TActiveControl.php
blob: d289bab9d99cca4a252e939a39c864b1431ff5db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

/*
 * Created on 25/04/2006
 */

class TActiveControl extends TControl implements ICallbackEventHandler, IActiveControl
{	
	public function __construct()
	{
		parent::__construct();
		$this->setAdapter(new TActiveControlAdapter($this));
	}

	public function raiseCallbackEvent($param)
	{
		var_dump($param);
		$client = $this->getPage()->getCallbackClient();
		$client->hide($this);
	}
} 

?>