You are here

function access_test_permission in Access Control Kit 7

Implements hook_permission().

File

tests/access_test.module, line 78
A dummy module for testing the access control kit API.

Code

function access_test_permission() {

  // Create a permission for our dummy objects.
  return array(
    'meow' => array(
      'title' => t('Access meowing objects'),
      'description' => t('Allows the user to access objects that meow.'),
    ),
  );
}