-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
4 changed files
with
99 additions
and
0 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
46 changes: 46 additions & 0 deletions
46
docs/notification-center-pro/additional-tokens/_index.de.md
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
title: "Weitere Simple-Tokens" | ||
url: "weitere-simple-tokens" | ||
weight: 150 | ||
--- | ||
|
||
Das Notification Center Pro liefert weitere Simple-Tokens mit, die bequeme Lösungen für typische Probleme bieten. | ||
|
||
## Das `formoptions_*` Token | ||
|
||
Stell dir vor, du hast ein Formularfeld namens `sport` mit einer Mehrfachauswahl. Beispielsweise ein Dropdown mit folgender Einstellung: | ||
|
||
| Wert | Bezeichnung | | ||
|------|-------------| | ||
| fb | Fussball | | ||
| tt | Tischtennis | | ||
| bb | Basketball | | ||
|
||
Standardmässig steht dir ein Token namens `form_sport` zur Verfügung. Wenn die Besucherin oder der Besucher nun alle drei Optionen auswählt, würde dieses Token `fb, tt, bb` enthalten. Das heisst aus | ||
|
||
```text | ||
Gewählte Sportart(en): ##form_sport## | ||
``` | ||
|
||
würde | ||
|
||
```text | ||
Gewählte Sportart(en): fb, tt, bb | ||
``` | ||
|
||
generiert werden. | ||
|
||
Mit dem Notification Center Pro kannst du einfach, `form_sport` durch `formoptions_sport` ersetzen. Aus | ||
|
||
```text | ||
Gewählte Sportart(en): ##formoptions_sport## | ||
``` | ||
|
||
wird dann | ||
|
||
```text | ||
Gewählte Sportart(en): Fussball, Tischtennis, Basketball | ||
``` | ||
|
||
So einfach kann es sein! 🎉 | ||
|
43 changes: 43 additions & 0 deletions
43
docs/notification-center-pro/additional-tokens/_index.en.md
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
title: "More Simple Tokens" | ||
weight: 150 | ||
--- | ||
|
||
The Notification Center Pro provides additional Simple Tokens that offer convenient solutions for typical problems. | ||
|
||
## The `formoptions_*` token | ||
|
||
Imagine you have a form field called `sport` with multiple options. For example, a dropdown with the following setting: | ||
|
||
| value | name | | ||
|-------|--------------| | ||
| fb | football | | ||
| tt | table tennis | | ||
| bb | basketball | | ||
|
||
By default, a token called `form_sport` is available. If the visitor now selects all three options, this token would contain `fb, tt, bb`. This means that this: | ||
|
||
```text | ||
Selected sports: ##form_sport## | ||
``` | ||
|
||
would end up in this: | ||
|
||
```text | ||
Selected sports: fb, tt, bb | ||
``` | ||
|
||
With the Notification Center Pro, you can simply replace `form_sport` by `formoptions_sport`. Then, your | ||
|
||
```text | ||
Selected sports: ##formoptions_sport## | ||
``` | ||
|
||
will result in | ||
|
||
```text | ||
Selected sports: football, table tennis, basketball | ||
``` | ||
|
||
It's that simple! 🎉 | ||
|