Extension Settings¶
These are the available settings for mask. They can be configured via the GUI in Settings > Extension Configuration
or directly in the AdditionalConfiguration.php like described in installation. If you don’t change
any settings, a dummy extension mask_project
will be created as fallback.
General¶
loader_identifier¶
Can be either
json
or json-split
.Defines which JsonLoader to use.
Refer to the API documentation for more information.
Default:
json
json¶
Only for JsonLoader.
File with project specific mask configuration.
Mask stores the information, which is needed to generate content elements and extend page templates into one file:
mask.json
. With this setting you can change the path to this file.Default:
EXT:{your_sitepackage}/Configuration/Mask/mask.json
content_elements_folder¶
Only for JsonSplitLoader
Folder in which to save content element definitions.
Default:
EXT:{your_sitepackage}/Configuration/Mask/ContentElements
backend_layouts_folder¶
Only for JsonSplitLoader
Folder in which to save backend layout definitions.
Default:
EXT:{your_sitepackage}/Configuration/Mask/BackendLayouts
backendlayout_pids¶
Page ids from where the in PageTS defined backend layouts should be loaded (comma separated).
Default: 0 (root-pid, all layouts are found)
Frontend¶
content¶
Folder for Content Fluid Templates (with trailing slash).
Mask generates a html file with fluid tags for each new content element. Here you can set the path to this file.
Default:
EXT:{your_sitepackage}/Resources/Private/Mask/Frontend/Templates/
layouts¶
Folder for Content Fluid Layouts (with trailing slash).
Here you can set the path to the fluid layouts of your mask templates.
Default:
EXT:{your_sitepackage}/Resources/Private/Mask/Frontend/Layouts/
partials¶
Folder for Content Fluid Partials (with trailing slash).
Here you can set the path to the fluid partials of your mask templates.
Default:
EXT:{your_sitepackage}/Resources/Private/Mask/Frontend/Partials/
Backend¶
backend¶
Folder for Backend Preview Templates (with trailing slash).
Here you can set the path the fluid templates for backend previews of your content elements.
Default:
EXT:{your_sitepackage}/Resources/Private/Mask/Backend/Templates/
layouts_backend¶
Folder for Backend Preview Layouts (with trailing slash).
Here you can set the path to the fluid layouts of your mask backend previews.
Default:
EXT:{your_sitepackage}/Resources/Private/Mask/Backend/Layouts/
partials_backend¶
Folder for Backend Preview Partials (with trailing slash).
Here you can set the path to the fluid partials of your mask backend previews.
Default:
EXT:{your_sitepackage}/Resources/Private/Mask/Backend/Partials/
preview¶
Folder for preview images (with trailing slash).
You can change the preview image of content elements to your preferred png image (32x32 pixel) or svg graphic.
Store them with the key of the contentelement as filename (e.g. mykey.png or mykey.svg)
Default:
EXT:{your_sitepackage}/Resources/Public/Mask/

Extension Configuration options in Settings > Extension Configuration