You are here

function service_container_ctools_plugin_type in Service Container 7.2

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

Implements hook_ctools_plugin_type().

File

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

Code

function service_container_ctools_plugin_type() {
  $items['ServiceProvider'] = array(
    'cache' => FALSE,
  );
  return $items;
}