You are here

function gdpr_consent_agreement_load_multiple in General Data Protection Regulation 7

Loads multiple agreements.

File

modules/gdpr_consent/gdpr_consent.module, line 278
Contains hook implementations and shared functions.

Code

function gdpr_consent_agreement_load_multiple($ids = array(), $conditions = array(), $reset = FALSE) {
  if (empty($ids)) {
    $ids = FALSE;
  }
  return entity_load('gdpr_consent_agreement', $ids, $conditions, $reset);
}