In my bitfield that I have for a usergroup permission setting I have the below:
PHP Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="who_admired">
<bitfielddefs>
<group name="ugp">
<group name="whosmyadmirer">
<bitfield name="candeletewho_admired" group="who_admired_upg" phrase="who_admired_delete_canuse">1</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>
In a plugin I have, this is a part of the code Im using to check that usergroup permission. This seems to work fine
PHP Code:
if (($permissions["whosmyadmirer"] & $vbulletin->bf_ugp["whosmyadmirer"]["candeletewho_admired"])) {
// Code Goes Here
}
Now I'm trying to use a conditional based off the
candeletewho_admired variable.
However it doesnt work worth nothing!
Does this look right?
Code:
<if condition="$permissions['candeletewho_admired']">
//Primary Text
<else />//Alternate Text</if>
I've even tried with no luck this:
Code:
<if condition="$permissions['candeletewho_admired'] == true">