You are here

audit_log_logs_http.module in Audit Log 7

Hook implemenations for the Audit logging module.

File

modules/audit_log_logs_http/audit_log_logs_http.module
View source
<?php

/**
 * @file
 * Hook implemenations for the Audit logging module.
 */

/**
 * Implements hook_audit_log().
 */
function audit_log_logs_http_audit_log(Auditlog $log) {
  $events =& drupal_static('logs_http_events', array());
  $event = (array) $log;
  $event = logs_http_array_remove_empty($event);
  $events[] = $event;
}

Functions