C
|
copper21 8/8/2013 |
Go to the List Page: Before Record processed and enter the code: |
A
|
andolo author 8/8/2013 |
Thanks! Go to the List Page: Before Record processed and enter the code: if($data["is_visible"] == 1) { return true; } else { return false; } |
A
|
andolo author 8/8/2013 |
Ooops, just noticed a problem: I have both guests and admins viewing the list page (because certain buttons is only visible to admins). I just want to hide some records for the guests, but can they be made visible for the admins? |
C
|
copper21 8/9/2013 |
I am not sure how you are doing login security, AD, static, or dynamic permissions, but if you can capture the session of the current users security group, you might be able to do something similar as above. Click the help button in PHP Runner and type in session and look at the examples. |