Log in

View Full Version : Usergroup Permissions & Template Conditions


PaulSonny
04-17-2008, 12:54 AM
Hello Everybody,

I have tried searching but with no luck.

I am wanting to use a conditional within a template to check a usergroup permission. Can anybody help me out or point me towards an article?

I have the usergroup options set up and working perfectly with regards to the functionality, but certain things I want to be able to hide.

Thanks, Paul.

Lynne
04-17-2008, 03:02 AM
<if condition="is_member_of($bbuserinfo, array(x,y,z))">
Stuff you only want members of usergroup x, y, or z to see
</if>

PaulSonny
04-17-2008, 08:50 AM
Sorry Lynne thats not what i'm trying to achieve.

For example, I have a usergroup settings, Can Delete Ticket, and I need to check if can delete ticket, then it will show, if set to no, it will hide the delete link.

Thanks, Paul.

Conner85
04-17-2008, 09:25 AM
One sec.. I think I have a solution for you.

--------------- Added 1208428269 at 1208428269 ---------------

This hack adds another profile field page. It will allow you to add an Edit Extra Options page, but you can turn that into whatever you want it to say. Put all of the profile fields you don't want your regular users seeing one that page, and then on the Edit Extra Options (or whatever you edit it to say), use the

<if condition="is_member_of($bbuserinfo, array(x,y,z))">
Stuff you only want members of usergroup x, y, or z to see
</if>

to hide the link from the regular users.

https://vborg.vbsupport.ru/showthread.php?t=123253&highlight=Extra+Fields

https://vborg.vbsupport.ru/showthread.php?t=123254

PaulSonny
04-17-2008, 10:06 AM
No sorry thats still not it.

I know its something like <if condition="$show(ticket_delete)">

or something like that.

Thanks, Paul.

Conner85
04-17-2008, 10:26 AM
Ahhh.. that's way out of my knowledge then. Hope you figure it out though.

PaulSonny
04-17-2008, 05:20 PM
Sorry, i've just realised I may not have described this very well.

I have a template, which has a drop down menu of 4 links, one of which those links is a Delete link.

I have a bitfield for the usergroup settings, and one of those settings is can they delete? If yes they can, if no they get an error no permission page.

I am wanting to hide the delete link if the usergroup setting is can to no. Is this possible. I've seen it other places.

Thanks, Paul.

Lynne
04-17-2008, 05:52 PM
Have you tried:
<if condition="$show['ticket_delete']">

(assuming the name of the field is "ticket_delete")

PaulSonny
04-17-2008, 06:43 PM
Lynne, if you were infront of me i'd be kissing you right now, it worked an absolute treat!

Thanks, Paul.

FleaBag
04-17-2008, 10:16 PM
LOL that made me chuckle Paul. Lynne, you really are 'the man'. :)