Give admin rights to non admin on a table

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
vintoICT
User
Posts: 408

Give admin rights to non admin on a table

Post by vintoICT »

Give admin rights to non admin on a table. I want some users to have edit capability on a table that can only be edited by admin.

$userid= CurrentUserLevel();

if ($userid== 1 || $userid== 2 ){
// Allow user1 and 2 to edit on a table

}

arbei
User
Posts: 9389

Post by arbei »

You may use TablePermission_Loaded server event.


Post Reply