You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
280 B
PHTML
19 lines
280 B
PHTML
12 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Write a log entry. This should be used to log user's activity.
|
||
|
* @param $message
|
||
|
*/
|
||
|
function engelsystem_log($message) {
|
||
|
global $user;
|
||
|
|
||
|
if(isset($user)) {
|
||
|
$nick = $user['Nick'];
|
||
|
} else {
|
||
|
$nick = "Guest";
|
||
|
}
|
||
|
|
||
|
LogEntry_create($nick, $message);
|
||
|
}
|
||
|
|
||
|
?>
|