1 2 3 4 5 6 7
| $this->widgetSchema['couleur'] = new sfWidgetFormChoice(array(
'choices' => array('', 'Black' => 'Black', 'Blue' => 'Blue', 'Cyan' => 'Cyan', 'Magenta' => 'Magenta', 'Yellow' => 'Yellow', 'Grey' => 'Grey', 'Tri-colour' => 'Tri-colour'),
));
$this->validatorSchema['couleur'] = new sfValidatorChoice(array(
'choices' => array_keys(array('', 'Black' => 'Black', 'Blue' => 'Blue', 'Cyan' => 'Cyan', 'Magenta' => 'Magenta', 'Yellow' => 'Yellow', 'Grey' => 'Grey', 'Tri-colour' => 'Tri-colour')),
)); |
Partager