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

Load the quicktabs data for a particular instance.

6 calls to quicktabs_load()
QuickBlockContent::render in plugins/QuickBlockContent.inc
Renders the content.
QuickQtabsContent::render in plugins/QuickQtabsContent.inc
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_form_submit in ./quicktabs.admin.inc
Submit handler for quicktabs admin page.

... See full list

File

./quicktabs.module, line 281

Code

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