-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DOCS] Add extension configuration reference
- Loading branch information
Showing
3 changed files
with
130 additions
and
0 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
117 changes: 117 additions & 0 deletions
117
Documentation/Reference/ExtensionConfiguration/Index.rst
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,117 @@ | ||
.. include:: /Includes.txt | ||
|
||
.. _extensionConfiguration: | ||
|
||
======================= | ||
Extension Configuration | ||
======================= | ||
|
||
Some general settings can be configured in the Extension Configuration. | ||
|
||
#. Go to :guilabel:`Admin Tools > Settings > Extension Configuration` | ||
#. Choose :guilabel:`calendarize` | ||
|
||
The settings are described here in detail: | ||
|
||
.. only:: html | ||
|
||
.. contents:: Properties | ||
:local: | ||
:depth: 2 | ||
|
||
|
||
Basic | ||
===== | ||
|
||
.. _extensionConfigurationDisableDefaultEvent: | ||
|
||
Disable default event `disableDefaultEvent` | ||
------------------------------------------- | ||
|
||
.. confval:: disableDefaultEvent | ||
|
||
:type: boolean | ||
:Default: 0 | ||
|
||
Disable the default event table in the list view and in the registration. | ||
|
||
.. _extensionConfigurationFrequencyLimitPerItem: | ||
|
||
Frequency limit per item `frequencyLimitPerItem` | ||
------------------------------------------------ | ||
|
||
.. confval:: frequencyLimitPerItem | ||
|
||
:type: int+ | ||
:Default: 300 | ||
|
||
Set the maximum level of iteration of frequency events to avoid endless indexing. | ||
|
||
.. _extensionConfigurationDisableDateInSpeakingUrl: | ||
|
||
Disable date in speaking URL `disableDateInSpeakingUrl` | ||
------------------------------------------------------- | ||
|
||
.. confval:: disableDateInSpeakingUrl | ||
|
||
:type: boolean | ||
:Default: 0 | ||
|
||
Disable the date in the speaking URL generation. | ||
|
||
.. _extensionConfigurationTillDays: | ||
|
||
Till Days `tillDays` | ||
-------------------- | ||
|
||
.. confval:: tillDays | ||
|
||
:type: int+ | ||
:Default: | ||
|
||
Maximum of (future) days for which indices should be created (per default based on start date, if till days is relative is true then based on the current day). | ||
The frequency limit per item is still active, make sure to set the value high enough. | ||
|
||
It is also possible to leave this blank and set the value per configuration item. | ||
|
||
.. _extensionConfigurationTillDaysPast: | ||
|
||
Till Days Past `tillDaysPast` | ||
----------------------------- | ||
|
||
.. confval:: tillDaysPast | ||
|
||
:type: int+ | ||
:Default: | ||
|
||
Maximum of (past) days for which indices should be created (does only make sense if till days relative is enabled). | ||
The frequency limit per item is still active, make sure to set the value high enough. | ||
|
||
It is also possible to leave this blank and set the value per configuration item. | ||
|
||
.. _extensionConfigurationTillDaysRelative: | ||
|
||
Till Days Relative `tillDaysRelative` | ||
------------------------------------- | ||
|
||
.. confval:: tillDaysRelative | ||
|
||
:type: boolean | ||
:Default: | ||
|
||
Defines if till days and till days past are based on the start date or based on the current day. | ||
|
||
It is also possible to leave this blank and set the value per configuration item. | ||
|
||
.. _extensionConfigurationRespectTimesInTimeFrameConstraints: | ||
|
||
Respect times in time frame constraints `respectTimesInTimeFrameConstraints` | ||
---------------------------------------------------------------------------- | ||
|
||
.. confval:: respectTimesInTimeFrameConstraints | ||
|
||
:type: boolean | ||
:Default: 0 | ||
|
||
Per default :php:`IndexRepository->addTimeFrameConstraints()` only checks `start_date` and `end_date`. | ||
If you want the actual times to be respected (e.g. if :typoscript:`settings.overrideStartRelative` is set to `now`) enable this option. |
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,12 @@ | ||
.. include:: /Includes.txt | ||
|
||
.. _reference: | ||
|
||
Reference | ||
--------- | ||
|
||
.. toctree:: | ||
:maxdepth: 3 | ||
:titlesonly: | ||
|
||
ExtensionConfiguration/Index |