You are here

function access_test_access_handler_info in Access Control Kit 7

Implements hook_access_handler_info().

File

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

Code

function access_test_access_handler_info() {

  // Register a handler for one of our fictitious object types.
  $info['ACKTestMeowHandler'] = array(
    'label' => t('Meow'),
    'scheme types' => array(
      'boolean',
    ),
    'object types' => array(
      'cat',
    ),
  );
  return $info;
}