* code for task #2529.

This commit is contained in:
wangyidong
2016-04-11 09:29:33 +08:00
parent b6ef7dd961
commit 6006efd721
11 changed files with 306 additions and 36 deletions
+12
View File
@@ -0,0 +1,12 @@
<table class='table table-condensed table-hover table-striped table-borderless table-fixed'>
<?php
foreach($actions as $action)
{
$user = isset($users[$action->actor]) ? $users[$action->actor] : $action->actor;
if($action->action == 'login' or $action->action == 'logout') $action->objectName = $action->objectLabel = '';
echo "<tr><td class='nobr' width='100%'>";
printf($lang->block->dynamicInfo, $action->date, $user, $action->actionLabel, $action->objectLabel, $action->objectLink, $action->objectName);
echo "</td></tr>";
}
?>
</table>