You are here

function service_container_test_ctools_ctools_plugin_type 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_type()

Implements hook_ctools_plugin_type().

File

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

Code

function service_container_test_ctools_ctools_plugin_type() {
  return array(
    'ServiceContainerTestCtoolsPlugin' => array(
      'use hooks' => FALSE,
      'extension' => 'php',
    ),
    'yolo' => array(
      'use hooks' => FALSE,
      'extension' => 'php',
    ),
  );
}