| Conditions | 1 |
| Paths | 1 |
| Total Lines | 22 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 5 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 29 | protected function configureListFields(ListMapper $listMapper) |
||
| 30 | { |
||
| 31 | $listMapper |
||
| 32 | ->add('id') |
||
| 33 | ->add('locale', null, [ |
||
| 34 | 'label' => 'Langue', |
||
| 35 | ]) |
||
| 36 | ->add('name', null, [ |
||
| 37 | 'label' => 'Nom', |
||
| 38 | ]) |
||
| 39 | ->add('dateCreated', null, [ |
||
| 40 | 'label' => 'Date de création', |
||
| 41 | ]) |
||
| 42 | ->add('dateUpdated', null, [ |
||
| 43 | 'label' => 'Date d\'édition', |
||
| 44 | ]) |
||
| 45 | ->add('_action', 'actions', [ |
||
| 46 | 'actions' => [ |
||
| 47 | 'edit' => ['template' => 'AlpixelCMSBundle:admin:fields/list__block_action_edit.html.twig'], |
||
| 48 | ], |
||
| 49 | ]); |
||
| 50 | } |
||
| 51 | } |
||
| 52 |