Skip to content

Commit

Permalink
[DOCS] Add extension configuration reference
Browse files Browse the repository at this point in the history
  • Loading branch information
okmiim committed Jul 3, 2022
1 parent 0b4aea8 commit 47ddeda
Show file tree
Hide file tree
Showing 3 changed files with 130 additions and 0 deletions.
1 change: 1 addition & 0 deletions Documentation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ Calendarize - Flexible TYPO3 Calendar
Templates/Index
Snippets/Index
KnownProblems/Index
Reference/Index
ChangeLog/Index
117 changes: 117 additions & 0 deletions Documentation/Reference/ExtensionConfiguration/Index.rst
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.
12 changes: 12 additions & 0 deletions Documentation/Reference/Index.rst
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

0 comments on commit 47ddeda

Please sign in to comment.