This documentation is for a version that has reached its End Of Life. Such versions are no longer supported and don't receive security updates. Consider updating to a newer version.
Null Field Type¶
This Field Type is used as fallback for migration scenarios, and for testing purposes.
Name | Internal name | Expected input type |
---|---|---|
Null |
variable | mixed |
Description¶
The Null Field Type serves as an aid when migrating from eZ Publish Platform and earlier legacy versions. It is a dummy for legacy Field Types that are not implemented in Ibexa DXP.
Null Field Type will accept anything provided as a value and is usually combined with:
- NullConverter: Makes it not store anything to the legacy storage engine (database), nor will it read any data.
- Unindexed: Indexable class making sure nothing is indexed to configured search engine.
This Field Type does not have its own fixed internal name. Its identifier is instead configured as needed by passing it as an argument to the constructor.
Example for usage of Null Field Type¶
The following example shows how an example
Field Type could be configured as a Null Field Type:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|