You are here

service_container_test.module in Service Container 7.2

Same filename and directory in other branches
  1. 7 tests/modules/service_container_test/service_container_test.module

File

tests/modules/service_container_test/service_container_test.module
View source
<?php

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