summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket225.php
blob: 2cc3fc387322502a593adb6b5ebddd722be76b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

class Ticket225 extends TPage
{
	function button4_Clicked()
	{
		$this->label1->setText($this->getGroupIDs($this->button1));
	}
	
	private function getGroupIDs($radio)
	{
		$ids = '';
		foreach($radio->getRadioButtonsInGroup() as $control)
			$ids .= " ".$control->getUniqueID();
		return $ids;
	}
}

?>