PDA

View Full Version : Creating Permissions using the plugin system


Mastar
05-26-2007, 02:12 AM
I made a product that creates a template and options in vbulletin options, I want it to set a permission option in the vbulletin options where the user could enter the usergroup id/ids that they want access to the page.


I'm a newbie at writing Plugins and product and self thought and its pain sometime when you are teaching yourself. :)


Thanks!

Antivirus
05-27-2007, 04:11 AM
I would suggest using bitfields instead,( see https://vborg.vbsupport.ru/showthread.php?t=82844&highlight=usergroup+bitfield+permission ).

But if you insist on using $vbulletin->options do like so:

In your template html:

<If condition="is_member_of($bbuserinfo, 5)">
You are admin... So cool you are!
<Else />
No coolness for you!
</if>

Mastar
06-12-2007, 09:02 PM
I would suggest using bitfields instead,( see https://vborg.vbsupport.ru/showthread.php?t=82844&highlight=usergroup+bitfield+permission ).

But if you insist on using $vbulletin->options do like so:

In your template html:

<If condition="is_member_of($bbuserinfo, 5)">
You are admin... So cool you are!
<Else />
No coolness for you!
</if>

Ok I've used the bitfields, its showing in the usergroups but I don't know how to make the yes and no selection make a usergroups view or not view that page.


I got it to work, now I have a question.

How could I get the no permission default window to pop up when a usergroup is denied?

Finially got it all together.