Skip to content

Commit

Permalink
cms@4d5f71c
Browse files Browse the repository at this point in the history
Merge branch 'release/4.6.0' into main
  • Loading branch information
shinybrad committed Jan 9, 2024
1 parent 5804ff6 commit cc8124d
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions docs/.artifacts/cms/4.x/config-general.md
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,40 @@ CRAFT_DISABLED_PLUGINS=redactor,webhooks



### `disabledUtilities`

<div class="compact">

Allowed types
: [string](https://php.net/language.types.string)[]

Default value
: `[]`

Defined by
: [GeneralConfig::$disabledUtilities](craft4:craft\config\GeneralConfig::$disabledUtilities)

Since
: 4.6.0

</div>

Array of utility IDs that should be disabled.

::: code
```php Static Config
->disabledUtilities([
'updates',
'find-replace',
])
```
```shell Environment Override
CRAFT_DISABLED_UTILITIES=updates,find-replace
```
:::



### `disallowRobots`

<div class="compact">
Expand Down Expand Up @@ -4932,5 +4966,36 @@ CRAFT_EXTRA_NAME_SUFFIXES=CCNA,OBE
### `showFirstAndLastNameFields`
<div class="compact">
Allowed types
: [boolean](https://php.net/language.types.boolean)
Default value
: `false`
Defined by
: [GeneralConfig::$showFirstAndLastNameFields](craft4:craft\config\GeneralConfig::$showFirstAndLastNameFields)
Since
: 4.6.0
</div>
Whether “First Name” and “Last Name” fields should be shown in place of “Full Name” fields.
::: code
```php Static Config
->showFirstAndLastNameFields()
```
```shell Environment Override
CRAFT_SHOW_FIRST_AND_LAST_NAME_FIELDS=true
```
:::
<!-- END SETTINGS -->

0 comments on commit cc8124d

Please sign in to comment.