Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members | Related Pages

radiolist-field.inc.php

Go to the documentation of this file.
00001 <?php
00008 class RadioListField extends AbstractListField
00009 {
00013     function drawInput()
00014     {
00015         foreach($this->options as $value => $title)
00016         {
00017             $id = uniqid($this->name);
00018             echo "<input type=\"radio\" name=\"$this->name\" value=\"$value\" id=\"$id\"", $this->value == $value ? ' checked="checked"/>' : '/>';
00019             echo " <label for=\"$id\">$title</label><br/>";
00020         }
00021     }
00022 
00023 }
00024 
00025 ?>

Generated on Fri Oct 27 12:26:40 2006 for BaseJumper by doxygen 1.3.9.1