File: classes/Logging.php
The Logging class provides support for logging events and errors.
3.5.2.9.1. Add
Format: result = Add(type,site,user,module,text)
where "type" is the log type, "site" is the site for the log, "user" is the
user for the log, "module" is the module for the log, and "text"
is the log text. Example: $result = $logger->Add($type,$site,$user,$module,$text);
This method adds (logs) a message. base/_logs.php contains constants that define
the type:
Mnuemonic
Meaning
EWELOG_ERROR_GENERAL
A general error.
EWELOG_EVENT_GENERAL
A general event (not covered elsewhere)
EWELOG_EVENT_COMMENT
An event comment.
EWELOG_EVENT_AUDIT
An audit log.
3.5.2.9.2. Delete
Format: result = Delete(id,site)
where "id" is the log message ID and "site" is the site for the. Example: $result = $logger->Delete($id,$site);
This method deletes the log with the specified ID and specified site.
3.5.2.9.3. Filtered_Delete
Format: result = Filtered_Delete(type='',site='',user='',module='')
where "type" is the log type, "site" is the site for the log, "user" is the
user for the log, and "module" is the module for the log. Example: $result = $logger->Filtered_Delete($type,$site,$user,$module);
This method deletes the log with the specified type, site, user, and/or module. Any
parameter left null matches as if a wildcard. Thus Filtered_Delete( EWELOG_ERROR_GENERAL, 0 )
would delete all general error logs on site 0 (EWE), regardless of user or module.
3.5.2.9.4. Get_Logs
Format: result = Filtered_Delete(type='',site='',user='',module='')
where "type" is the log type, "site" is the site for the log, "user" is the
user for the log, and "module" is the module for the log. Example: $result = $logger->Get_Logs($type,$site,$user,$module,$start,$limit);
This method returns an array of log messages matching the specified parameters. Any
parameter left null matches as if a wildcard. Thus Get_Logs( EWELOG_ERROR_GENERAL, 0 )
would return all general error logs on site 0 (EWE), regardless of user or module. Each
element of the returned array is an array of information about the logged message.