qtabs tab type does not fire hook_quicktabs_alter for subtabs

Created on 6 February 2014, about 11 years ago
Updated 22 December 2024, 3 months ago

when including a set of tabs in another set of tabs via the "QTabs" type, the render method of QuickQtabsContent does not call drupal_alter like the regular tab build sequence does.

This means that any customizations done through hook_quicktabs_alter do not work as expected.

A simple fix could be merely calling the alter on line 49 of plugins/QuickQtabsContent.inc:

drupal_alter('quicktabs', $quicktabs);

in context:

    $output = array();
    if (isset($item['machine_name'])) {
      if ($quicktabs = quicktabs_load($item['machine_name'])) {
        drupal_alter('quicktabs', $quicktabs);
        $contents = $quicktabs->tabs;
        $name = $quicktabs->machine_name;
        unset($quicktabs->tabs, $quicktabs->machine_name);
        $options = (array) $quicktabs;
        if ($qt = QuickSet::QuickSetRendererFactory($name, $contents, $quicktabs->renderer, $options)) {
          $output = $qt->render();
        }
      }
    }
πŸ› Bug report
Status

Closed: outdated

Version

3.6

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States erykmynn

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.

  • πŸ‡ΊπŸ‡ΈUnited States smustgrave

    With D7 EOL approaching in a month I'm starting to triage the D7 side of quicktabs queue.

    If still an issue or needed for 4.0.x (latest branch) feel free to reopen

Production build 0.71.5 2024