| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Field Permissions module;;;; Original author: markus_petrux (http://drupal.org/user/39593);;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CONTENTS OF THIS FILE=====================* OVERVIEW* USAGE* REQUIREMENTS* INSTALLATIONOVERVIEW========The Field Permissions module allows site administrators to set field-levelpermissions for fields that are attached to any kind of entity (such as nodesor users).Permissions can be set for editing or viewing the field (either in allcontexts, or only when it is attached to an entity owned by the current user).Permissions can also be set for editing the field while creating a new entity.Permissions for each field are not created by default. Instead, administratorscan enable these permissions explicitly for the fields where this feature isneeded.USAGE=====Once Field Permissions module is installed, you need to edit the field settingsform to enable permissions for each field where you need this feature. You canchoose from three options:  * Public (author and administrators can edit, everyone can view)  * Private (only author and administrators can edit and view)  * Custom permissionsThe default value ("Public") does not impose any field-level access control,meaning that permissions are inherited from the entity view or editpermissions. For example, users who are allowed to view a particular node thatthe field is attached to will also be able to view the field."Private" provides quick and easy access to a commonly used form of fieldaccess control.Finally, if "Custom permissions" is chosen, a standard permissions matrix willbe revealed allowing you full flexibility to assign the following permissionsto any role on your site:  * Create own value for field FIELD  * Edit own value for field FIELD  * Edit anyone's value for field FIELD  * View own value for field FIELD  * View anyone's value for field FIELDThese permissions will also be available on the standard permissions page atAdminister -> People -> Permissions.INSTALLATION============1) Copy all contents of this package to your modules directory preserving   subdirectory structure.2) Go to Administer -> Modules to install module. If the (Drupal core) Field UI   module is not enabled, do so.3) Review the settings of your fields. You will find a new option labelled   "Field visibility and permissions" that allows you to control access to the   field.4) If you chose the setting labelled "Custom permissions", you will be able to   set this field's permissions for any role on your site directly from the   field edit form, or later on by going to the Administer -> People ->   Permissions page.5) Get an overview of the Field Permissions at:   Administer -> Reports -> Field list -> Permissions
 |