You are here

function service_container_ctools_plugin_directory in Service Container 7.2

Same name and namespace in other branches
  1. 7 service_container.module \service_container_ctools_plugin_directory()

Implements hook_ctools_plugin_directory().

File

./service_container.module, line 59
Main module file for the service_container module.

Code

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