Skip to content

Commit 99a1422

Browse files
committed
cms@28fe4ac
Merge pull request #17226 from craftcms/feature/CMS-1339-collapsible-index-headings Collapsible source headings
1 parent fbb4891 commit 99a1422

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

docs/.artifacts/cms/5.x/config-general.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Default value
1717
'underlineLinks' => false,
1818
'disableAutofocus' => false,
1919
'notificationDuration' => 5000,
20+
'notificationPosition' => 'end-start',
21+
'slideoutPosition' => 'end',
2022
]`
2123

2224
Defined by
@@ -36,6 +38,11 @@ The array can contain the following keys:
3638
- `disableAutofocus` – Whether inputs should make use of the `autofocus` attribute.
3739
- `notificationDuration` – How long notifications should be shown before they disappear automatically (in
3840
milliseconds). Set to `0` to show them indefinitely.
41+
- `notificationPosition` – Where notifications should be shown on the screen (`'start-start'` for top-left,
42+
`'start-end'` for top-right, `'end-start'` for bottom-left, or `'end-end'` for bottom-right, when using an
43+
LTR orientation).
44+
- `slideoutPosition` – Where slideouts should be shown on the screen (`'start'` for left, or `'end'`
45+
for right, when using an LTR orientation).
3946

4047
```php
4148
->accessibilityDefaults([
@@ -2304,18 +2311,20 @@ Allowed types
23042311
: `mixed`
23052312
23062313
Default value
2307-
: `''`
2314+
: `null`
23082315
23092316
Defined by
23102317
: [GeneralConfig::$invalidUserTokenPath](craft5:craft\config\GeneralConfig::$invalidUserTokenPath)
23112318
23122319
</div>
23132320
2314-
The URI Craft should redirect to when user token validation fails. A token is used on things like setting and resetting user account
2315-
passwords. Note that this only affects front-end site requests.
2321+
The URI Craft should redirect to when user token validation fails. User tokens are used for
2322+
email verification and password resets. If `null`, <config5:loginPath> will be used by default.
23162323
23172324
See [craft\helpers\ConfigHelper::localizedValue()](https://docs.craftcms.com/api/v5/craft-helpers-confighelper.html#method-localizedvalue) for a list of supported value types.
23182325
2326+
Note that this only affects front-end site requests.
2327+
23192328
::: code
23202329
```php Static Config
23212330
// 1 day

0 commit comments

Comments
 (0)