Skip to content

Instantly share code, notes, and snippets.

@lmcd
Last active December 11, 2015 21:08
Show Gist options
  • Save lmcd/4659862 to your computer and use it in GitHub Desktop.
Save lmcd/4659862 to your computer and use it in GitHub Desktop.
$options = array();
if ($data->getBlah()) {
$options = array(
'disabled' => true
);
}
else {
$options = array(
'required' => false
);
}
$type = $this->factory->createNamed('bank_account', new BankAccountType(), $options);
$form->add($type);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment