summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket225.php
blob: 82a447d827335b7636c62e2da69b2f348c01e517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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;
	}
}