Adding a permission

To add new permissions. I know how to add/remove existing permissions to a user/group. I want to know how to make new permissions.
 
Admin -> Development -> Permissions -> Permission Definitions

You can create all the permissions you want here, they just won't do anything
 
You can sort of cheat and use the syntax below for permissions. Assuming you are wanting to restrict the view of something, or however you want to configure it. ufk prefix is just so its unique as the id's have to be.

Admin -> Development -> Permissions -> Permission Definitions -> New Permission Group
  1. Permission Group ID: ufkGeneral
  2. Title: UFK Permissions
  3. Add-on: (Not needed)

Admin -> Development -> Permissions -> Permission Definitions -> New Interface Group
  1. Interface Group ID: ukfGeneralPermissions
  2. Title: UFK General Permissions
  3. Add-on: (Not Need)
Admin -> Development -> Permissions -> Permission Definitions -> New Permission
  1. Permission ID: canViewStuff
  2. Title: Can view stuff
  3. Permission Group: ufkGeneral
  4. Depends on Permission ID: (Can leave blank)
  5. Permission Type: Flag
  6. Interface Group ID: ukfGeneralPermissions
  7. Add-on: (Not needed)


Then you can use this syntax in a template:
Code:
<xen:if is="{$visitor.permissions.ukfGeneralPermissions.canViewStuff}">
Some code stuff...
</xen:if>


Good luck!
 
I guess we would need to know what you're trying to do?

The permission example I posted is a flag, basically can or can't see or do what is inside the code example.
 
What do I add in the code example?
Well I can't tell you what you need if I don't know what your doing...

Inside that code would be anything you want to show or not show | allow to do or not do, to whatever group you set the permission to.
 
Top Bottom