mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-28 18:43:49 +00:00
more tests for exports
This commit is contained in:
@@ -77,11 +77,18 @@ class GenderAggregator implements AggregatorInterface
|
||||
|
||||
public function getLabels($key, array $values, $data)
|
||||
{
|
||||
return array(
|
||||
Person::FEMALE_GENDER => $this->translator->trans('woman'),
|
||||
Person::MALE_GENDER => $this->translator->trans('man'),
|
||||
'_header' => $this->translator->trans('Gender')
|
||||
);
|
||||
return function($value) {
|
||||
switch ($value) {
|
||||
case Person::FEMALE_GENDER :
|
||||
return $this->translator->trans('woman');
|
||||
case Person::MALE_GENDER :
|
||||
return $this->translator->trans('man');
|
||||
case '_header' :
|
||||
return $this->translator->trans('Gender');
|
||||
default:
|
||||
throw new \LogicException(sprintf("The value %s is not valid", $value));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
public function addRole()
|
||||
|
Reference in New Issue
Block a user