blob: a4b9b6c2e975bf557112939683c61ffa769fd26e (
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
|
<?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());
}
}
|