blob: 31cf085138fdf95855e400cc424336143cb61a29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
<?php
/**
 *
 *
 * @author Christophe BOULAIN (Christophe.Boulain@ceram.fr)
 * @copyright Copyright © 2007, CERAM Sophia Antipolis
 * @license url nameoflicense
 *
 */
prado::using ('Application.controls.ToggleImageButton');
class ToggleTest extends TPage {
	public function clickToggleButton ($sender, $param) {
		$this->lbl->Text=$sender->State;
	}
}
?>
  |