Same name and namespace in other branches
  1. 7.x-2.x quicktabs.module \quicktabs_load() 1 comment
  2. 7.x-3.x quicktabs.module \quicktabs_load() 1 comment

Load the quicktabs data for a particular instance.

5 calls to quicktabs_load()
QuickBlockContent::render in src/Plugin/QuickContent/QuickBlockContent.php
Renders the content.
QuickQtabsContent::render in src/Plugin/QuickContent/QuickQtabsContent.php
Renders the content.
QuicktabsAdminTestCase::testQuicktabsAdmin in tests/quicktabs.test
Create a Quicktabs instance through the UI and ensure that it is saved properly.
quicktabs_build_quicktabs in ./quicktabs.module
Constructs a Quicktabs instance.
quicktabs_save in ./quicktabs.module
Creates a new quicktab instance.

File

./quicktabs.module, line 211

Code

function quicktabs_load($name) {
    $qts = quicktabs_load_multiple(array(
        $name,
    ));
    return isset($qts[$name]) ? $qts[$name] : NULL;
}