You are here

function google_tag_export_load in GoogleTagManager 7.2

Callback: load all for ctools_export_crud_load_all().

See 'export' items in google_tag_schema().

Return value

array An array of all loaded objects, keyed by the unique IDs of the export key.

1 string reference to 'google_tag_export_load'
google_tag_schema in ./google_tag.install
Implements hook_schema().

File

./google_tag.module, line 242
Provides primary Drupal hook implementations.

Code

function google_tag_export_load($reset) {
  $keys = array_flip(array(
    'settings',
  ));
  $items = ctools_export_load_object('gtag_config', 'all');
  $items = array_diff_key($items, $keys);
  return $items;
}