You are here

function feeds_entity_processor_test_access in Feeds entity processor 7

Access callback for performing actions on a feeds_entity_processor_test.

1 string reference to 'feeds_entity_processor_test_access'
feeds_entity_processor_test_entity_info in tests/modules/feeds_entity_processor_test/feeds_entity_processor_test.module
Implements hook_entity_info().

File

tests/modules/feeds_entity_processor_test/feeds_entity_processor_test.module, line 68
Helper module for Feeds entity processor tests.

Code

function feeds_entity_processor_test_access($op, $entity, $account, $entity_type) {

  // No restrictions currently.
  return TRUE;
}