Index: help/plugins-creating.html
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ctools/help/plugins-creating.html,v
retrieving revision 1.10
diff -u -p -r1.10 plugins-creating.html
--- help/plugins-creating.html	7 Sep 2010 09:02:50 -0000	1.10
+++ help/plugins-creating.html	16 Nov 2010 02:48:15 -0000
@@ -40,20 +40,22 @@ function panels_get_content_types() {
 }
 </pre>
 
-As a plugin creator, your module can also implement a hook to give more information about this plugin, and to enable a few features that are not normally enabled. If you need any of these features, simply implement hook_ctools_plugin_TYPE (where TYPE is the same $type sent to ctools_get_plugins). This isn't a true hook, it will only be called for the $module that was given. This hook returns an array:
+As a plugin creator, your module must implement a hook to inform ctools that this plugin exists, and to optionally enable a few features that are not normally enabled. If you need any of these features, simply implement hook_ctools_plugin_type. This hook returns an array keyed by plugin name:
 
 <pre>
 /**
- * Inform CTools that the layout plugin can be loaded from themes.
+ * Implements hook_ctools_plugin_type() to inform CTools about the layout plugin.
  */
-function panels_ctools_plugin_layouts() {
-  return array(
+function panels_ctools_plugin_type() {
+  $plugins['layouts'] => array(
     'load themes' => TRUE,
   );
+
+  return $plugins;
 }
 </pre>
 
-The following information can be specified:
+The following information can be specified for each plugin type:
 <dl>
 <dt>cache</dt>
 <dd><em>Defaults to:</em> <strong>FALSE</strong></dd>
