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

Load the quicktabs data.

5 calls to quicktabs_load_multiple()
QuickQtabsContent::optionsForm in src/Plugin/QuickContent/QuickQtabsContent.php
Method for returning the form elements to display for this tab type on the admin form.
quicktabs_block_info in ./quicktabs.module
Implements hook_block_info().
quicktabs_i18n_update_strings in ./quicktabs.module
Update translatable strings.
quicktabs_load in ./quicktabs.module
Load the quicktabs data for a particular instance.
quicktabs_update_7303 in ./quicktabs.install
Add support for view modes.

File

./quicktabs.module, line 219

Code

function quicktabs_load_multiple($names = array()) {
    \Drupal::moduleHandler()->loadInclude('quicktabs', 'export');
    $defaults = empty($names) ? ctools_export_load_object('quicktabs', 'all') : ctools_export_load_object('quicktabs', 'names', $names);
    return $defaults;
}