Back Office configuration¶
Copy subtree limit¶
Copying large subtrees can cause performance issues, so you can limit the number of Content items
that can be copied at once using ezpublish.system.<SiteAccess>.subtree_operations.copy_subtree.limit
in parameters.yml
.
The default value is 100
. You can set it to -1
for no limit,
or to 0
to completely disable copying subtrees.
You can copy subtree from CLI using the command: bin/console ezplatform:copy-subtree <sourceLocationId> <targetLocationId>
.
Pagination limits¶
Default pagination limits for different sections of the Back Office can be defined through respective settings in
ezplatform_default_settings.yml
Default Locations¶
Default Location IDs for Content structure, Media and Users in the menu are configured using the following settings:
1 2 3 4 5 6 7 |
|
Notification timeout¶
To define the timeout for hiding Back-Office notification bars, per notification type, use the following configuration (times are provided in milliseconds):
1 2 3 4 5 6 7 8 9 10 11 12 |
|
The values shown above are the defaults. 0
means the notification does not hide automatically.
Location for Form-uploaded files¶
You can use Forms to enable the user to upload files.
The default Location for files uploaded in this way is /Media/Files/Form Uploads
.
You can change it with the following configuration:
1 2 3 4 5 |
|
This applies only if no specific Location is defined in the Form itself.
Date and time formats¶
Users can set their preferred date and time formats in the User settings menu. This format is used throughout the Back Office.
You can set the list of available formats with the following configuration:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
The default date and time format is set using:
1 2 3 4 5 6 7 8 9 10 |
|
You can also format date and time by using Twig filters and PHP services.
Allowed formats¶
The following subset of the ICU date and time formats is allowed:
Symbol | Meaning |
---|---|
y, yy, yyyy, Y, YY, YYYY | year |
q, Q | quarter |
M, MM, MMM, MMMM, L, LL, LLL, LLLL | month |
w, WW | week |
d, dd | day of the month |
D, DDD | day of the year |
E, EE, EEE, EEEE, EEEEEE, e, ee, eee, eeee, eeeeee, c, cc, ccc, cccc, cccccc | weekday |
a | AM or PM |
h, hh, H, HH, k, kk | hour |
m, mm | minute |
s, ss, S... | second |
Z, ZZ, ZZZ, ZZZZZ | timezone |
Content Tree¶
With this configuration you can:
- define configuration for a SiteAccess or a SiteAccess group
- decide how many Content items are displayed in the tree
- set maximum depth of expanded tree
- hide Content Types
- set a tree root Location
- override Content Tree's root for specific Locations
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
|
Universal Discovery Widget (UDW) configuration¶
The Universal Discovery Widget module (UDW) can be found in Extending modules.