child plugins don't get passed to _ctools_process_data()

Created on 9 July 2015, over 9 years ago
Updated 1 February 2023, about 2 years ago

Child plugins don't get passed to _ctools_process_data(). This means that they don't get defaults set (such as the module name), don't get passed to the alter hooks, and don't get passed to the plugin owner for processing.

In ctools_get_plugins():

  // Then see if we should load all files. We only do this if we
  // want a list of all plugins or there was a cache miss.
  if (empty($setup[$module][$type]) && ($build_cache || !$id)) {
    $setup[$module][$type] = TRUE;
###### This loads each plugin .inc file. For each file, ctools_plugin_process() is called, which then calls _ctools_process_data() which does the plugin processing work.
    $plugins[$module][$type] = array_merge($plugins[$module][$type], ctools_plugin_load_includes($info[$module][$type]));
    // If the plugin can have child plugins, and we're loading all plugins,
    // go through the list of plugins we have and find child plugins.
    if (!$id && !empty($info[$module][$type]['child plugins'])) {
      // If a plugin supports children, go through each plugin and ask.
      $temp = array();
      foreach ($plugins[$module][$type] as $name => $plugin) {
        // The strpos ensures that we don't try to find children for plugins
        // that are already children.
        if (!empty($plugin['get children']) && function_exists($plugin['get children']) && strpos($name, ':') === FALSE) {
#### The child plugins are merged into the array here -- they don't get processed.
          $temp = array_merge($plugin['get children']($plugin, $name), $temp);
        }
        else {
          $temp[$name] = $plugin;
        }
      }
      $plugins[$module][$type] = $temp;
    }
  }
🐛 Bug report
Status

Needs review

Version

1.0

Component

Plugins system

Created by

🇬🇧United Kingdom joachim

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024