Skip to content

Instantly share code, notes, and snippets.

@delbono
Created September 2, 2010 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delbono/561957 to your computer and use it in GitHub Desktop.
Save delbono/561957 to your computer and use it in GitHub Desktop.
<?php
$this->widgetSchema['food'] = new sfWidgetFormChoice(array(
'choices' => array('PHP', 'symfony', 'Doctrine', 'Propel', 'model'),
'expanded' => false,
'multiple' => true,
'label'=> 'Pietanze presenti'
), array('class'=>'multiselect'));
$this->setDefault('food',array('Doctrine','PHP'));
//$this->setDefaults(array('food'>=array('Propel','PHP')));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment