rename 'label' to 'name'.

Warning : this commit require to rename some table column, but the
original Version file has been update.

If you do not care to loose your date, you may run :

```
php app/console doctrine:migrations:execute --down 20160318111334
php app/console doctrine:migrations:execute --up 20160318111334
php app/console doctrine:cache:metadata #(if you have a cache for
doctrine meta date)
```
close #20
This commit is contained in:
2016-03-24 23:27:39 +01:00
parent 20c49d5bd0
commit d8de53ca3c
30 changed files with 71 additions and 71 deletions

View File

@@ -67,7 +67,7 @@ class EventType extends AbstractType
}
$builder
->add('label')
->add('name')
->add(
'date',
'date',

View File

@@ -15,7 +15,7 @@ class EventTypeType extends AbstractType
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('label')
->add('name')
->add('active')
;
}

View File

@@ -76,7 +76,7 @@ class ParticipationType extends AbstractType
);
},
'choice_label' => function(Role $r) use ($translatableStringHelper) {
return $translatableStringHelper->localize($r->getLabel());
return $translatableStringHelper->localize($r->getName());
}
));
@@ -102,7 +102,7 @@ class ParticipationType extends AbstractType
return $qb;
},
'choice_label' => function(Status $s) use ($translatableStringHelper) {
return $translatableStringHelper->localize($s->getLabel());
return $translatableStringHelper->localize($s->getName());
}
));

View File

@@ -15,7 +15,7 @@ class RoleType extends AbstractType
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('label')
->add('name')
->add('active')
->add('type')
;

View File

@@ -15,7 +15,7 @@ class StatusType extends AbstractType
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('label')
->add('name')
->add('active')
->add('type')
;

View File

@@ -62,7 +62,7 @@ class TranslatableEventType extends AbstractType
->where('et.active = true');
},
'choice_label' => function (EventType $t) use ($helper) {
return $helper->localize($t->getLabel());
return $helper->localize($t->getName());
},
)
);