You are here

function field_permissions_perm in Field Permissions 6

Implementation of hook_perm().

File

./field_permissions.module, line 31
This is the main script for the Field Permissions module. It merely contains the implementation of hooks invoked by Drupal core and CCK. All common functions are externalized into several scripts that are included on demand to save memory consumption…

Code

function field_permissions_perm() {
  module_load_include('inc', 'field_permissions', 'includes/admin');
  return _field_permissions_perm();
}