1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
public function configure()
{
unset(
$this['created_at'], $this['updated_at'], $this['last_login'],
$this['type'],
$this['algorithm'], $this['salt'], $this['is_super_admin']
);
$this->setWidgets(array(
'id' => new sfWidgetFormInputHidden(),
'first_name' => new sfWidgetFormInputText(),
'last_name' => new sfWidgetFormInputText(),
'email_address' => new sfWidgetFormInputText(),
'created_at' => new sfWidgetFormDateTime(),
'updated_at' => new sfWidgetFormDateTime(),
'consultant' => new sfWidgetFormDoctrineChoice(array('model' => 'Consultant', 'multiple' => false, 'add_empty' => false, 'order_by' => array('username', 'asc'))
))); |
Partager