diff --git a/context.module b/context.module index eaa9073eb08ffc70d8a0d29aadb905ca5d2a26c6..5eaf78999e0ac5fc32c96c10c21522add4a62e52 100644 --- a/context.module +++ b/context.module @@ -131,12 +131,14 @@ function context_clear() { */ /** - * Implementation of hook_ctools_plugin_plugins(). + * Implementation of hook_ctools_plugin_type(). */ -function context_ctools_plugin_plugins() { +function context_ctools_plugin_type() { return array( - 'cache' => TRUE, - 'use hooks' => TRUE, + 'plugins' => array( + 'cache' => TRUE, + 'use hooks' => TRUE, + ), ); }