-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* * enhanced support to ibexa 4.0 --------- Co-authored-by: mbouchaala <[email protected]> Co-authored-by: Florian ALEXANDRE <[email protected]>
- Loading branch information
1 parent
3664fc9
commit 7cf6b9f
Showing
45 changed files
with
503 additions
and
624 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
install: false | ||
install: true | ||
test: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
} | ||
], | ||
"require": { | ||
"php": "^7.3" | ||
"php": "^7.3 || ^8.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,33 @@ | ||
services: | ||
Novactive\EzEnhancedImageAsset\FieldType\EnhancedImage\EnhancedImageStorage: | ||
parent: ezpublish.fieldType.ezimage.externalStorage | ||
parent: Ibexa\Core\FieldType\Image\ImageStorage | ||
tags: | ||
- {name: ezplatform.field_type.external_storage_handler, alias: enhancedimage} | ||
- {name: ibexa.field_type.storage.external.handler, alias: enhancedimage} | ||
|
||
ezpublish.field_type.indexable.enhancedimage: | ||
parent: ezpublish.fieldType.indexable.ezimage | ||
class: eZ\Publish\Core\FieldType\Image\SearchField | ||
ibexa.field_type.indexable.enhancedimage: | ||
parent: Ibexa\Core\FieldType\Image\SearchField | ||
class: Ibexa\Core\FieldType\Image\SearchField | ||
tags: | ||
- {name: ezplatform.field_type.indexable, alias: enhancedimage} | ||
- {name: ibexa.field_type.indexable, alias: enhancedimage} | ||
|
||
ezpublish_rest.field_type_processor.enhancedimage: | ||
parent: ezpublish_rest.field_type_processor.ezimage | ||
ibexa_rest.field_type_processor.enhancedimage: | ||
parent: Ibexa\Rest\FieldTypeProcessor\ImageProcessor | ||
tags: | ||
- { name: ibexa.rest.field_type.processor, alias: enhancedimage } | ||
|
||
Novactive\EzEnhancedImageAsset\FieldType\EnhancedImage\Type: | ||
parent: ezpublish.fieldType.ezimage | ||
parent: Ibexa\Core\FieldType\Image\Type | ||
tags: | ||
- {name: ezplatform.field_type, alias: enhancedimage} | ||
- {name: ibexa.field_type, alias: enhancedimage} | ||
|
||
Novactive\EzEnhancedImageAsset\FieldType\EnhancedImage\ValueConverter: | ||
parent: ezpublish.fieldType.ezimage.converter | ||
parent: Ibexa\Core\Persistence\Legacy\Content\FieldValue\Converter\ImageConverter | ||
tags: | ||
- {name: ezplatform.field_type.legacy_storage.converter, alias: enhancedimage} | ||
|
||
eZ\Publish\Core\FieldType\Image\Type: '@ezpublish.fieldType.ezimage' | ||
- {name: ibexa.field_type.storage.legacy.converter, alias: enhancedimage} | ||
|
||
Novactive\EzEnhancedImageAsset\FieldType\EnhancedImage\FormMapper: | ||
autoconfigure: true | ||
autowire: true | ||
tags: | ||
- { name: ezplatform.field_type.form_mapper.definition, fieldType: enhancedimage } | ||
- { name: ezplatform.field_type.form_mapper.value, fieldType: enhancedimage } | ||
- { name: ibexa.admin_ui.field_type.form.mapper.definition, fieldType: enhancedimage } | ||
- { name: ibexa.admin_ui.field_type.form.mapper.value, fieldType: enhancedimage } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const path = require('path'); | ||
|
||
module.exports = (Encore) => { | ||
Encore | ||
.addEntry('enhancedimage-js', [ | ||
path.resolve(__dirname, '../public/js/enhancedimage.js'), | ||
]) | ||
.addEntry('enhancedimage-css', [ | ||
path.resolve(__dirname, '../public/css/enhancedimage.scss'), | ||
]) | ||
}; |
File renamed without changes.
Oops, something went wrong.