Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TASK] Add exemplary site set settings definition #281

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions Configuration/Sets/Examples/settings.definitions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
settings:
example.output.view.templateRootPath:
default: 'EXT:example/Resources/Private/Templates/'
label: 'Path to template root (FE)'
type: string
description: ''
example.output.view.partialRootPath:
default: 'EXT:example/Resources/Private/Partials/'
label: 'Path to template partials (FE)'
type: string
description: ''
example.output.view.layoutRootPath:
default: 'EXT:example/Resources/Private/Layouts/'
label: 'Path to template layouts (FE)'
type: string
description: ''
example.output.pages.excludedDoktypes:
default: '3, 4, 6, 7, 199, 254'
label: 'Doktypes to exclude'
type: string
description: ''
example.output.pages.excludePagesRecursive:
default: ''
label: 'List of page uids which should be excluded recursive'
type: string
description: ''
example.output.pages.additionalWhere:
default: "{#no_index} = 0 AND {#canonical_link} = ''"
label: 'Additional where clause'
type: string
description: ''
14 changes: 14 additions & 0 deletions Documentation/Introduction/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,20 @@ Extending TCA

.. _introduction-credits:

Site set settings
=================

Site set settings can be defined through a file like
:file:`EXT:example/Configuration/Sets/Examples/settings.definitions.yaml`.

Here is the auto-generated listing of all definitions. This is for example
purposes only, and not yet implemented:

.. typo3:site-set-settings:: EXT:self/Configuration/Sets/Examples/settings.definitions.yaml
:name: example-settings-definitions
:type:
:Label: Example site set settings definitions

Credits
=======

Expand Down
Loading