thoughtco / statamic-restrict-fields
Installs: 9 551
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 4
Forks: 1
Open Issues: 0
Language:JavaScript
README
Restrict Fields is a Statamic addon that allows you to restrict fields in the control panel to certain users, groups or roles.
How to Install
Run the following command from your project root:
composer require thoughtco/statamic-restrict-fields
How to Use
Once installed, 3 new custom condition methods become available to use:
restrictUsers
Use with a value in the format:
restrictUsers:user_id_1,user_id_2
restrictGroups
Use with a value in the format:
restrictGroups:group_slug_1,group_slug_2
restrictRoles
Use with a value in the format:
restrictRoles:role_slug_1,role_slug_2
Including superadmins
You may pass super
to the restrictGroups
and restrictRoles
condition methods in order to include superadmins.
Example: restrictGroups:super,group_slug_1,group_slug_2