| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 56 | protected function setDefaultOptions(OptionsResolver $resolver) |
||
| 57 | { |
||
| 58 | parent::setDefaultOptions($resolver); |
||
| 59 | |||
| 60 | $resolver->setDefaults( |
||
| 61 | [ |
||
| 62 | 'route' => 'pim_customentity_index', |
||
| 63 | 'quick_create' => false, |
||
| 64 | 'quick_create_action_type' => 'create', |
||
| 65 | 'template' => 'PimCustomEntityBundle:CustomEntity:index.html.twig', |
||
| 66 | 'row_actions' => ['edit', 'delete'], |
||
| 67 | 'mass_actions' => [] |
||
| 68 | ] |
||
| 69 | ); |
||
| 70 | } |
||
| 71 | } |
||
| 72 |