blob: 06d82d3918445bb4bfc4d718892091c177724456 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
/**
* TRatingListTest.php
*
* @author Bradley Booms <Bradley.Booms@nsighttel.com>
* @version Creation Date: Oct 13, 2008
*/
/**
* TRatingListTest.php class
*
*
*
* Properties
* -
*
* @author Bradley Booms <Bradley.Booms@nsighttel.com>
* @version Modified Date: Oct 13, 2008
*
* Modifications:
*/
class ActiveRatingListHoverCaptionTest extends TPage{
public function ratingChanged($sender, $param){
$sender->setCaption($sender->getRating().' : '.$sender->getSelectedValue());
}
}
?>
|