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.moduleView 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
|
Name |
Description |
|---|---|
| audit_log_logs_http_audit_log | Implements hook_audit_log(). |