-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97371d0
commit 3080856
Showing
4 changed files
with
101 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
), | ||
array( | ||
'key' => 'shop.email', | ||
'value' => '', | ||
'description' => 'The name of the shop', | ||
'value' => '[email protected]', | ||
'description' => 'The email of the shop', | ||
), | ||
array( | ||
'key' => 'shop.reservation_threshold', | ||
|
@@ -81,4 +81,52 @@ | |
'value' => 'no-show configuration goes here', | ||
'description' => 'The no-show configuration is used for warnings when a person does not show up for their reservation, holding for each warning the ban period and an email message', | ||
), | ||
array( | ||
'key' => 'shop.no_show_configuration', | ||
'value' => serialize( | ||
array( | ||
'1' => array( | ||
'subject' => 'VTK Theokot Warning', | ||
'content' => 'Dear {{ name }}, | ||
You forgot your sandwich for the first time. Ban of 3 days. | ||
Kind regards, | ||
Theokot', | ||
), | ||
'2' => array( | ||
'subject' => 'VTK Theokot Warning', | ||
'content' => 'Dear {{ name }}, | ||
You forgot your sandwich for the second time. Ban of 1 week. | ||
Kind regards, | ||
Theokot', | ||
), | ||
'3' => array( | ||
'subject' => 'VTK Theokot Warning', | ||
'content' => 'Dear {{ name }}, | ||
You forgot your sandwich for the third time. Ban of 3 weeks. | ||
Kind regards, | ||
Theokot', | ||
), | ||
'4' => array( | ||
'subject' => 'VTK Theokot Warning', | ||
'content' => 'Dear {{ name }}, | ||
You forgot your sandwich for the fourth time. Permanent ban. | ||
Kind regards, | ||
Theokot', | ||
), | ||
) | ||
), | ||
'description' => 'The no-show configuration is used for warnings when a person does not show up for their reservation, holding for each warning the ban period and an email message', | ||
), | ||
); |