diff --git a/Documentation/Configuration/TSconfig.rst b/Documentation/Configuration/TSconfig.rst index e9658c3..f30b2a5 100644 --- a/Documentation/Configuration/TSconfig.rst +++ b/Documentation/Configuration/TSconfig.rst @@ -28,13 +28,13 @@ User TSconfig .. confval:: enableSomething :type: bool - :Default: false + :Default: 0 - If :typoscript:`true`, something is enabled... + If :typoscript:`1` then something is enabled. Example:: - tx_myextension.enableSomething = true + tx_myextension.enableSomething = 1 .. index:: @@ -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:: diff --git a/Documentation/Configuration/TypoScriptReference/Constants.rst b/Documentation/Configuration/TypoScriptReference/Constants.rst index 06f1120..53928e8 100644 --- a/Documentation/Configuration/TypoScriptReference/Constants.rst +++ b/Documentation/Configuration/TypoScriptReference/Constants.rst @@ -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 diff --git a/Documentation/Configuration/TypoScriptReference/Setup.rst b/Documentation/Configuration/TypoScriptReference/Setup.rst index 19840da..1fb0f5e 100644 --- a/Documentation/Configuration/TypoScriptReference/Setup.rst +++ b/Documentation/Configuration/TypoScriptReference/Setup.rst @@ -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::