Same name in other branches
- 7.x-2.x quicktabs.module \quicktabs_load()
- 7.x-3.x quicktabs.module \quicktabs_load()
Load the quicktabs data for a particular instance.
5 calls to quicktabs_load()
- QuickBlockContent::render dans src/
Plugin/ QuickContent/ QuickBlockContent.php - Renders the content.
- QuickQtabsContent::render dans src/
Plugin/ QuickContent/ QuickQtabsContent.php - 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_save dans ./
quicktabs.module - Creates a new quicktab instance.
Fichier
-
./
quicktabs.module, line 211
Code
function quicktabs_load($name) {
$qts = quicktabs_load_multiple(array(
$name,
));
return isset($qts[$name]) ? $qts[$name] : NULL;
}