| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | protected function configureFormFields(FormMapper $formMapper) |
||
| 30 | { |
||
| 31 | $formMapper = parent::configureFormFields($formMapper); |
||
| 32 | $formMapper |
||
| 33 | ->with('Общие') |
||
| 34 | ->add('event', 'entity', [ |
||
| 35 | 'class' => 'Stfalcon\Bundle\EventBundle\Entity\Event', |
||
| 36 | 'label' => 'Событие', |
||
| 37 | ]) |
||
| 38 | ->add('speakers', 'entity', [ |
||
| 39 | 'class' => 'Stfalcon\Bundle\EventBundle\Entity\Speaker', |
||
| 40 | 'multiple' => true, |
||
| 41 | 'expanded' => true, |
||
| 42 | 'label' => 'Докладчики', |
||
| 43 | ]) |
||
| 44 | ->add('keywords', null, [ |
||
| 45 | 'label' => 'Ключевые слова', |
||
| 46 | ]) |
||
| 47 | ->end() |
||
| 48 | ; |
||
| 60 |