You are here

function field_permissions_menu in Field Permissions 6

Same name and namespace in other branches
  1. 7 field_permissions.module \field_permissions_menu()

Implementation of hook_menu().

File

./field_permissions.module, line 14
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_menu() {
  module_load_include('inc', 'field_permissions', 'includes/admin');
  return _field_permissions_menu();
}