readme.txt 455 B

12345678910111213141516171819202122232425
  1. -----------
  2. Snippet: If
  3. -----------
  4. Version: 1.0
  5. Created: October 29, 2009
  6. Author: Jason Coward <jason@modx.com>
  7. Shaun McCormick <shaun@modx.com>
  8. A simple Conditional snippet.
  9. Examples:
  10. [[If?
  11. &subject=`[[+name]]`
  12. &operator=`notempty`
  13. &then=`Hello, [[+name]]!`
  14. &else=`Hello, anonymous!`
  15. ]]
  16. [[If?
  17. &subject=`[[*scoreTV]]`
  18. &operator=`GT`
  19. &operand=`100`
  20. &then=`You win!`
  21. &else=`Not high enough. Try again!`
  22. ]]