| 12345678910111213141516171819202122232425 |
- -----------
- Snippet: If
- -----------
- Version: 1.0
- Created: October 29, 2009
- Author: Jason Coward <jason@modx.com>
- Shaun McCormick <shaun@modx.com>
- A simple Conditional snippet.
-
- Examples:
- [[If?
- &subject=`[[+name]]`
- &operator=`notempty`
- &then=`Hello, [[+name]]!`
- &else=`Hello, anonymous!`
- ]]
- [[If?
- &subject=`[[*scoreTV]]`
- &operator=`GT`
- &operand=`100`
- &then=`You win!`
- &else=`Not high enough. Try again!`
- ]]
|