Skip to content

Instantly share code, notes, and snippets.

@nixilla
Created December 12, 2012 10:28
Show Gist options
  • Select an option

  • Save nixilla/4266711 to your computer and use it in GitHub Desktop.

Select an option

Save nixilla/4266711 to your computer and use it in GitHub Desktop.
<?php
class defaultActions extends sfActions
{
public function executeIndex(sfWebRequest $request)
{
$this->form = new UserForm();
$this->form['entry']['cars']
->getWidget()
->setOption('choices', $this->getUser()->getAttribute('cars'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment