Blocks:if

Aus Dwoo Docs

(Redirected from If)
Wechseln zu: Navigation, Suche

Conditional block, the syntax is very similar to the php one, allowing () || && and other php operators. Additional Dwoo operators and their equivalent php syntax are as follow :

  • eq → ==
  • neq or ne → !=
  • gte or ge → >=
  • lte or le → <=
  • gt → >
  • lt → <
  • mod → %
  • not → !
  • X is [not] div by Y → (X % Y) == 0
  • X is [not] even [by Y] → (X % 2) == 0 or ((X/Y) % 2) == 0
  • X is [not] odd [by Y] → (X % 2) != 0 or ((X/Y) % 2) != 0




Example :

{if 3 == 5}
never gonna happen
{elseif 3 == 3}
if you don't see this, the world is coming to its end
{else}
this will never happen, unless, as previously mentionned, the world is coming to its end
{/if}

Output (hopefully) :

 if you don't see this, the world is coming to its end
Persönliche Werkzeuge
templates
page language

Englisch

The article you want to access doesn't exist in Deutsch.
Französisch
The article you want to access doesn't exist in Deutsch.
Russian
The article you want to access doesn't exist in Deutsch.