Quote:
Originally Posted by NTLDR
PHP Code:
// code above
$var = array('value', 'value2', 'value3');
// code bellow
HTML Code:
<if condition="in_array($somevar, $var)">stuff</if>
Note this will probably tell you there is an error with a conditional in the template when saving due to the fact that $var hasn't been set and thus may not be an array, just ignore it 
|
If you want to include non-primary usergroups, you should probably use:
Code:
<if condition="is_member_of($array_with_userid_key, usergroupid)
or is_member_of($array_with_userid_key, usergroupid) or ...
contents
</if>
If you're just checking if the user is a moderator or higher, use:
Code:
<if condition="can_moderate()">
.
.
.
</if>