Tuesday 04 September 2007 9:36:31 am
Like most of eZ templates operator, you have two way to use it. Let say we have 2 booleans $cond1 and $cond2. You can test that these 2 booleans are not false with :
{if and($cond1, $cond2)} ok {/if}
or
{if $cond1|and($cond2)} ok {/if}
It's up to you.
|