Custom icons¶
Customize content type icons¶
To add custom icons for existing content types or custom content types in Ibexa DXP,
use the following configuration under the ibexa.system.<scope>.content_type
configuration key:
1 2 3 4 5 6 |
|
Place the icon in public/assets/images
and run yarn encore <dev|prod>
after adding it.
Icons format
To ensure proper display in the Back Office, all icons should have SVG format with symbol
.
If you want to configure icons per SiteAccess, see Icon sets.
To see more configuration options, see icon sizes.
Access icons in Twig templates¶
Content type icons are accessible in Twig templates via the ibexa_content_type_icon
function.
It requires content type identifier as an argument. The function returns the path to a content type icon.
1 2 3 |
|
Access icons in JavaScript¶
Content types icons configuration is stored in a global object: ibexa.adminUiConfig.contentTypes
.
You can retrieve the icon URL with the getContentTypeIcon
helper function that is set on the global ibexa.helpers.contentType
object.
It takes content type identifier as an argument and returns one of the following items:
- URL of a specified content type's icon
null
if there is no content type with specified identifier
Example with getContentTypeIcon
:
1 2 3 4 5 6 |
|
Icons React component¶
You can use a React component to change icons in Back Office and Page Builder.
The following example from the alert.js
file shows configuration for icons in the alert component:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
Icon
component has three attributes (called props):
customPath
- a path to the custom iconname
- the path is generated inside the component provided you use icon from the systemextraClasses
- additional CSS classes, use to set for example, icon size.
Icon sets¶
You can configure icon sets to be used per SiteAccess:
1 2 3 4 5 6 7 8 |
|