Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

If Typoscript is 1 then PHP is true #64

Merged
Merged
Show file tree
Hide file tree
Changes from 10 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
8 changes: 4 additions & 4 deletions Documentation/Configuration/TSconfig.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ User TSconfig
:type: bool
:Default: false

If :typoscript:`true`, something is enabled...
If :typoscript:`1` then something is enabled.

Example::

tx_myextension.enableSomething = true
tx_myextension.enableSomething = 1


.. index::
Expand All @@ -49,8 +49,8 @@ Page TSconfig
:type: int
:Default: 5

This value limits something. If it is set to :typoscript:`0` the thing will
be unlimited...
This value limits something. If it is set to :typoscript:`0` something will
be unlimited.


Example, limit something to 10::
Expand Down
6 changes: 3 additions & 3 deletions Documentation/Configuration/TypoScriptReference/Constants.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ Enable / disable some options
.. confval:: enableThis

:type: bool
:Default: false
:Default: 0

If :php:`true`, something is enabled...
If :typoscript:`1` then something is enabled.

Example::

plugin.tx_example.settings {
enableThis = true
enableThis = 1
}

Configure page ids
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Configuration/TypoScriptReference/Setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Enable / disable some options
.. confval:: enableThat

:type: bool, stdWrap
:Default: false
:Default: 0

If :php:`TRUE`, something is enabled...
If :typoscript:`1` then something is enabled...


Example::
Expand Down