You are here

function sbp_test_permission in Search by Page 7

Implements hook_permission().

Sets up permissions for this module.

File

tests/sbp_test.module, line 55
Module file for Search by Page testing.

Code

function sbp_test_permission() {
  return array(
    'view test private content' => array(
      'title' => 'View test private content',
    ),
  );
}