You are here

function field_permissions_permission in Field Permissions 7

Implementation of hook_permission().

1 call to field_permissions_permission()
field_permissions_field_delete_field in ./field_permissions.module
Implements hook_field_delete_field().

File

./field_permissions.module, line 68
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_permission() {
  module_load_include('inc', 'field_permissions', 'field_permissions.admin');
  return _field_permissions_permission();
}