You are here

function field_permissions_theme in Field Permissions 6

Implementation of hook_theme().

File

./field_permissions.module, line 22
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_theme() {
  return array(
    'field_permissions_troubleshooting_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'includes/admin.inc',
    ),
  );
}