You are here

function service_container_test_ctools_ctools_plugin_directory in Service Container 7.2

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

Implements hook_ctools_plugin_directory().

File

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

Code

function service_container_test_ctools_ctools_plugin_directory($owner, $plugin_type) {
  if ($owner == 'service_container') {
    return 'src/ServiceContainer/' . $plugin_type;
  }
  return 'src/plugins/' . str_replace("\\", DIRECTORY_SEPARATOR, $plugin_type);
}