You are here

function insight_alert_load in Insight 7

File

./insight.module, line 408

Code

function insight_alert_load($iaid) {
  $alert = db_select('insight_alert', 'a')
    ->fields('a')
    ->condition('a.iaid', $iaid)
    ->execute()
    ->fetchAssoc();

  // Otherwise the set was not found.
  return $alert;
}