Entry: handle originUrl in edit form, update translations

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
Kevin Decherf
2017-09-09 19:32:42 +02:00
parent e0ef1a1c8b
commit 03b020eb20
14 changed files with 22 additions and 0 deletions

View File

@ -22,6 +22,11 @@ class EditEntryType extends AbstractType
'required' => false,
'label' => 'entry.edit.url_label',
])
->add('origin_url', TextType::class, [
'required' => false,
'property_path' => 'originUrl',
'label' => 'entry.edit.origin_url_label',
])
->add('save', SubmitType::class, [
'label' => 'entry.edit.save_label',
])