Forum permissions
From phpBB Development Wiki
Forum Permissions
Forum Permission Options
| Auth Option | Auth Usage | Auth Lang |
|---|---|---|
| f_ | $auth->acl_get('f_', $forum_id);
| Forum permissions |
| f_announce | $auth->acl_get('f_announce', $forum_id);
| Can post announcements |
| f_attach | $auth->acl_get('f_attach', $forum_id);
| Can attach files |
| f_bbcode | $auth->acl_get('f_bbcode', $forum_id);
| Can post BBCode |
| f_bump | $auth->acl_get('f_bump', $forum_id);
| Can bump topics |
| f_delete | $auth->acl_get('f_delete', $forum_id);
| Can delete own posts |
| f_download | $auth->acl_get('f_download', $forum_id);
| Can download files |
| f_edit | $auth->acl_get('f_edit', $forum_id);
| Can edit own posts |
| f_email | $auth->acl_get('f_email', $forum_id);
| Can email topics |
| f_flash | $auth->acl_get('f_flash', $forum_id);
| Can post Flash |
| f_icons | $auth->acl_get('f_icons', $forum_id);
| Can use post icons |
| f_ignoreflood | $auth->acl_get('f_ignoreflood', $forum_id);
| Can ignore flood limit |
| f_img | $auth->acl_get('f_img', $forum_id);
| Can post images |
| f_list | $auth->acl_get('f_list', $forum_id);
| Can see forum |
| f_noapprove | $auth->acl_get('f_noapprove', $forum_id);
| Can post without approval |
| f_poll | $auth->acl_get('f_poll', $forum_id);
| Can create polls |
| f_post | $auth->acl_get('f_post', $forum_id);
| Can start new topics |
| f_postcount | $auth->acl_get('f_postcount', $forum_id);
| Increment post counter Please note that this setting only affects new posts. |
| f_print | $auth->acl_get('f_print', $forum_id);
| Can print topics |
| f_read | $auth->acl_get('f_read', $forum_id);
| Can read forum |
| f_reply | $auth->acl_get('f_reply', $forum_id);
| Can reply to topics |
| f_report | $auth->acl_get('f_report', $forum_id);
| Can report posts |
| f_search | $auth->acl_get('f_search', $forum_id);
| Can search the forum |
| f_sigs | $auth->acl_get('f_sigs', $forum_id);
| Can use signatures |
| f_smilies | $auth->acl_get('f_smilies', $forum_id);
| Can post smilies |
| f_sticky | $auth->acl_get('f_sticky', $forum_id);
| Can post stickies |
| f_subscribe | $auth->acl_get('f_subscribe', $forum_id);
| Can subscribe forum |
| f_user_lock | $auth->acl_get('f_user_lock', $forum_id);
| Can lock own topics |
| f_vote | $auth->acl_get('f_vote', $forum_id);
| Can vote in polls |
| f_votechg | $auth->acl_get('f_votechg', $forum_id);
| Can change existing vote |

