function workflow_fields_perm in Workflow Fields 6
Implementation of hook_perm().
File
- ./
workflow_fields.module, line 25 - This module adds to workflow.module the ability to specify, for each state, which node fields should be visible and/or editable. It is a useful feature when workflows demand that certain information be hidden or read-only to certain roles.
Code
function workflow_fields_perm() {
return array(
'bypass field restrictions',
);
}