You are here

function quicktabs_load in Quick Tabs 7.3

Same name and namespace in other branches
  1. 6.3 quicktabs.module \quicktabs_load()
  2. 6.2 quicktabs.module \quicktabs_load()
  3. 7.2 quicktabs.module \quicktabs_load()

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;
}