Skip to content

Commit 36cd133

Browse files
authored
Merge pull request #264 from oallain/feature/svg-image
add svg image support
2 parents f8ff470 + 225214d commit 36cd133

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/Controller/Action/Admin/UploadEditorImageAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function __invoke(Request $request): Response
6464

6565
private function isValidImage(UploadedFile $image): bool
6666
{
67-
return in_array($image->getMimeType(), ['image/jpeg', 'image/png', 'image/gif']);
67+
return in_array($image->getMimeType(), ['image/jpeg', 'image/png', 'image/gif', 'image/svg+xml']);
6868
}
6969

7070
private function createMedia(UploadedFile $image): MediaInterface

src/Resources/translations/validators.de.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bitbag_sylius_cms_plugin:
22
block:
33
image:
4-
mime_types: Nur PNG und JPEG Dateien sind erlaubt.
4+
mime_types: Nur PNG, SVG und JPEG Dateien sind erlaubt.
55
code:
66
unique: Es existiert bereits ein Block für diesen Code.
77
not_blank: Code darf nicht leer sein.

src/Resources/translations/validators.en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bitbag_sylius_cms_plugin:
22
block:
33
image:
4-
mime_types: Only PNG and JPEG files are allowed.
4+
mime_types: Only PNG, SVG and JPEG files are allowed.
55
not_blank: Image cannot be blank.
66
code:
77
unique: There is an existing block with this code.

src/Resources/translations/validators.es.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
bitbag_sylius_cms_plugin:
22
block:
33
image:
4-
mime_types: Solo se permiten archivos PNG y JPEG.
5-
not_blank: Debe seleccionar una imagen.
4+
mime_types: Solo se permiten archivos PNG, SVG y JPEG.
5+
not_blank: Debe seleccionar una imagen.
66
code:
77
unique: Ya existe un bloque con este código.
88
not_blank: El código no puede ir vacío.

src/Resources/translations/validators.fr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bitbag_sylius_cms_plugin:
22
block:
33
image:
4-
mime_types: Seuls les fichiers PNG et JPEG sont autorisés.
4+
mime_types: Seuls les fichiers PNG, SVG et JPEG sont autorisés.
55
not_blank: L'image ne peut pas être vide.
66
code:
77
unique: Il existe déjà un bloc avec ce code.

src/Resources/translations/validators.hr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bitbag_sylius_cms_plugin:
22
block:
33
image:
4-
mime_types: Samo su PNG ili JPG formati dopušteni.
4+
mime_types: Samo su PNG, SVG ili JPG formati dopušteni.
55
not_blank: Slika ne može biti prazna.
66
code:
77
unique: Postoji blok sa istim kodom.

src/Resources/translations/validators.nl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bitbag_sylius_cms_plugin:
22
block:
33
image:
4-
mime_types: Alleen PNG en JPEG bestanden zijn toegestaan.
4+
mime_types: Alleen PNG, SVG en JPEG bestanden zijn toegestaan.
55
not_blank: Afbeelding kan niet leeg zijn.
66
code:
77
unique: Code moet uniek zijn.

src/Resources/translations/validators.pl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bitbag_sylius_cms_plugin:
22
block:
33
image:
4-
mime_types: Only PNG and JPEG files are allowed.
4+
mime_types: Only PNG, SVG and JPEG files are allowed.
55
not_blank: Image cannot be blank.
66
code:
77
unique: There is an existing block with this code.

src/Resources/translations/validators.ru.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
bitbag_sylius_cms_plugin:
22
block:
33
image:
4-
mime_types: Только PNG или JPEG.
4+
mime_types: Только PNG, SVG или JPEG.
55
not_blank: Изображение обязательно.
66
code:
77
unique: Блок с таким кодом уже существует.

0 commit comments

Comments
 (0)