Same name in other branches
- 7.x-2.x quicktabs.module \quicktabs_load()
- 8.x-1.x quicktabs.module \quicktabs_load()
Load the quicktabs data for a particular instance.
6 calls to quicktabs_load()
- QuickBlockContent::render dans plugins/
QuickBlockContent.inc - Renders the content.
- QuickQtabsContent::render dans plugins/
QuickQtabsContent.inc - Renders the content.
- QuicktabsAdminTestCase::testQuicktabsAdmin dans tests/
quicktabs.test - Create a Quicktabs instance through the UI and ensure that it is saved properly.
- quicktabs_build_quicktabs dans ./
quicktabs.module - Constructs a Quicktabs instance.
- quicktabs_form_submit dans ./
quicktabs.admin.inc - Submit handler for quicktabs admin page.
Fichier
-
./
quicktabs.module, line 281
Code
function quicktabs_load($name) {
$qts = quicktabs_load_multiple(array(
$name,
));
return isset($qts[$name]) ? $qts[$name] : NULL;
}