You are here

function service_container_test_ctools_plugin_directory in Service Container 7.2

Same name and namespace in other branches
  1. 7 tests/modules/service_container_test/service_container_test.module \service_container_test_ctools_plugin_directory()

Implements hook_ctools_plugin_directory().

File

tests/modules/service_container_test/service_container_test.module, line 6

Code

function service_container_test_ctools_plugin_directory($owner, $plugin_type) {
  if ($owner == 'service_container') {
    return 'src/ServiceContainer/' . $plugin_type;
  }
  return NULL;
}