Skip to content
Snippets Groups Projects
Commit 4d3cccca authored by jaapjansma's avatar jaapjansma
Browse files

Fixed issue with YesNo Option List

parent 96f76ab8
No related branches found
No related tags found
No related merge requests found
......@@ -75,17 +75,15 @@ class YesNoOptionListType extends AbstractType implements OptionListInterface {
return;
}
$this->options = array();
$yes_label = $this->configuration->get('yes_label') ? $this->configuration->get('yes_label') : E::ts('Yes');
$no_label = $this->configuration->get('no_label') ? $this->configuration->get('no_label') : E::ts('No');
$options = array(
0 => $no_label,
1 => $yes_label
$this->options = array(
'1' => $yes_label,
'0' => $no_label,
);
$this->optionsLoaded = true;
return $options;
return $this->options;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment