You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding a collection of media files (images or files) to a node/document is quite easy. The persistence works, but trying to visualize them in a collection form type with the ImageType or FileType as entity fails, as the collection is created with the nodes names as keys. Those keys, which are file names in case of medea files, fail on form name validation. with an exception like:
Symfony\Component\Form\Exception\InvalidArgumentException: The name "IMG_4721.JPG" contains illegal characters. Names should start with a letter, digit or underscore and only contain letters, digits, numbers, underscores ("_"), hyphens ("-") and colons (":").
at n/a
in /var/www/prberghoff/New/vendor/symfony/symfony/src/Symfony/Component/Form/FormConfigBuilder.php line 865
at Symfony\Component\Form\FormConfigBuilder::validateName('IMG_4721.JPG')
in /var/www/prberghoff/New/vendor/symfony/symfony/src/Symfony/Component/Form/FormConfigBuilder.php line 193
But it would be nice to edit and persist files in a arbitrary collection without enclosing them into a document with nice names.
The text was updated successfully, but these errors were encountered:
From my POV the collection for the form is created in here: ../Doctrine/ODM/PHPCR/ChildrenCollection.php:98
Maybe we should provide an extra media children collection with basenames only, but i have no clue what happens when trying to persisten them afterwards. Or we shall use an extra media collection transformer to replace the collection before that.
Adding a collection of media files (images or files) to a node/document is quite easy. The persistence works, but trying to visualize them in a collection form type with the
ImageType
orFileType
as entity fails, as the collection is created with the nodes names as keys. Those keys, which are file names in case of medea files, fail on form name validation. with an exception like:But it would be nice to edit and persist files in a arbitrary collection without enclosing them into a document with nice names.
The text was updated successfully, but these errors were encountered: