paul41598
08-25-2006, 01:46 AM
In my bitfield that I have for a usergroup permission setting I have the below:
<?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
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?
<if condition="$permissions['candeletewho_admired']">
//Primary Text
<else />//Alternate Text</if>
I've even tried with no luck this:
<if condition="$permissions['candeletewho_admired'] == true">
<?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
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?
<if condition="$permissions['candeletewho_admired']">
//Primary Text
<else />//Alternate Text</if>
I've even tried with no luck this:
<if condition="$permissions['candeletewho_admired'] == true">