You are here

function bat_unit_query_bat_type_access_alter in Booking and Availability Management Tools for Drupal 7

Implements hook_query_TAG_alter().

File

modules/bat_unit/bat_unit.module, line 380

Code

function bat_unit_query_bat_type_access_alter(QueryAlterableInterface $query) {

  // Look for an type base table to pass to the query altering function or else
  // assume we don't have the tables we need to establish order related altering
  // right now.
  foreach ($query
    ->getTables() as $table) {
    if ($table['table'] === 'bat_types') {
      bat_entity_access_query_alter($query, 'bat_type', $table['alias']);
      break;
    }
  }
}