You are here

function anode_access_test_perm in Apache Solr Search 6.3

Implements hook_perm().

Sets up permissions for this module.

File

apachesolr_access/tests/anode_access_test.module, line 69
Dummy module implementing node access related hooks to test API interaction with the Node module. This module restricts view permission to those with a special 'node test view' permission.

Code

function anode_access_test_perm() {
  return array(
    'node test view',
  );
}