📄 log.php
字号:
<?include "include/db.php";include "include/authenticate.php";include "include/general.php";include "include/resource_functions.php";$ref=getvalescaped("ref","");include "include/header.php";?><div class="BasicsBox"><p><a href="view.php?ref=<?=$ref?>">< <?=$lang["backtoresourceview"]?></a></p><h1><?=$lang["resourcelog"]?></h1></div><div class="Listview"><table border="0" cellspacing="0" cellpadding="0" class="ListviewStyle"><!--Title row--> <tr class="ListviewTitleStyle"><td><?=$lang["date"]?></td><td><?=$lang["user"]?></td><td><?=$lang["action"]?></td><td><?=$lang["field"]?></td></tr><?$log=get_resource_log($ref);for ($n=0;$n<count($log);$n++) { ?> <!--List Item--> <tr> <td><?=$log[$n]["date"]?></td> <td><?=$log[$n]["username"]?> (<?=$log[$n]["fullname"]?>)</td> <td><?=$lang["log-" . $log[$n]["type"]]?></td> <td><?=i18n_get_translated($log[$n]["title"])?></td> </tr> <? }?></table></div><?include "include/footer.php";?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -