You are here

function insight_report_delete in Insight 7

File

./insight.module, line 254

Code

function insight_report_delete($irid) {
  $report = db_delete('insight_report')
    ->condition('irid', $irid)
    ->execute();

  // delete report alerts
  insight_alerts_delete_by_params($irid);
  return $report;
}