1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
protected static $subjects = array('Subject A', 'Subject B', 'Subject C');
public function configure()
{
unset($this["user_id"]);
$this->setWidgets(array(
'user_login' => new sfWidgetFormInput(),
'user_pwd' => new sfWidgetFormInputPassword(),
'user_name' => new sfWidgetFormInput(),
'user_firstname' => new sfWidgetFormInput(),
'user_adress' => new sfWidgetFormInput(),
'user_contact' => new sfWidgetFormInput(),
'agency_agency_id' => new sfWidgetFormSelect(array('choices' => self::$subjects)),
'user_type_user_type_id' => new sfWidgetFormSelect(array('choices' => self::$subjects))
)); |
Partager