Skip to content

Instantly share code, notes, and snippets.

@heddn
Created May 29, 2018 20:20
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 heddn/b3a5b7f0f039dc12e8924acb66673161 to your computer and use it in GitHub Desktop.
Save heddn/b3a5b7f0f039dc12e8924acb66673161 to your computer and use it in GitHub Desktop.
$options = [
1 => '$1',
10 => '$10',
];
if ($path == 'liberia') {
$options = [
2 => '$2',
100 => '$100',
];
}
$form['price'] = [
'#type' => 'radios',
'#options' => $options,
];
return $form;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment