| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 4 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 29 | public function configureListFields(ListMapper $listMapper) |
||
| 30 | { |
||
| 31 | $listMapper |
||
| 32 | ->add('id') |
||
| 33 | ->add('public_url', 'string', array('template' => 'ZichtAdminBundle:CRUD:list_url.html.twig')) |
||
| 34 | ->add('internal_url', 'string', array('template' => 'ZichtAdminBundle:CRUD:list_url.html.twig')) |
||
| 35 | ->add( |
||
| 36 | '_action', |
||
| 37 | 'actions', |
||
| 38 | array( |
||
| 39 | 'actions' => array( |
||
| 40 | 'show' => array(), |
||
| 41 | 'edit' => array(), |
||
| 42 | 'delete' => array() |
||
| 43 | ) |
||
| 89 |