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

gender-field.inc.php

Go to the documentation of this file.
00001 <?php
00008 class GenderField extends RadioListField
00009 {
00010     public function __construct($name, Form &$parentForm, array $attribs = array())
00011     {
00012         //setup our options
00013         $attribs['options'] = array(
00014             'female' => 'Female',
00015             'male' => 'Male'
00016         );
00017 
00018         //make it so.
00019         parent::__construct($name, $parentForm, $attribs);
00020     }
00021 }

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