a quick question for youll i would like your views on.
I am currently comming up to the stage of setting up permissions for users against forums.
the way i did plan on doing it is a string against each user and forum which contained the appropriate ID followed by the permission codes and settings (like the below)
Code: Select all
f1@r1:1;r2:1;r3:0....
{forum ID}@{permission ID}:{permission setting};{permission ID}:{permission setting}.....
but when loading the permissionset up i am loading every permission when i only really need 1 set.
The only other way i have thought about doing this is by tables and load up only the forum and user rule i need. But the problem here is that a row is needed per user per forum which could potentially result in alot or damn rows lol.
what are your views on this? and are there any other routes i could take to achive the best of both worlds? contain everything in a small space, and limit what i am loading to what i needed.