Skip to content
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
3 changes: 3 additions & 0 deletions docs/control-panel/settings/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ Specify the default timezone for your site. All dates and times displayed by Exp

Specify the default date format for your site, and whether your site should display times in a 24-hour format or a 12-hour format with AM and PM. This is the format the Control Panel uses for displaying dates and for date input.

### Week start
The day on which the new week starts. This will be used when displaying calendars

### Show seconds?

Specify whether your site should display seconds in times.
1 change: 1 addition & 0 deletions docs/development/models/member.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ lang: php
- `timezone`
- `time_format`
- `date_format`
- `week_start`
- `include_seconds`
- `profile_theme`
- `forum_theme`
Expand Down
15 changes: 15 additions & 0 deletions docs/general/system-configuration-overrides.md
Original file line number Diff line number Diff line change
Expand Up @@ -3235,6 +3235,21 @@ Example Usage:

**Also found in CP:** `Settings --> Security & Privacy`: [Website Session Type](control-panel/settings/security-privacy.md#website-session-type)

### `week_start`

Set the day on which the new week starts. If [allow_member_localization](#allow_member_localization) is enabled and a member has their own localization preference set, that will override this setting.

| Value | Description |
| -------- | ---------------- |
| friday | Friday |
| saturday | Saturday |
| sunday | Sunday (default) |
| monday | Monday |

Example Usage:

$config['week_start'] = 'monday';

### `word_separator`

Specify the character the system will use to replace spaces when auto-generating a URL title based on the entry's title.
Expand Down