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 }