本文整理汇总了PHP中Logs::showLogpage方法的典型用法代码示例。如果您正苦于以下问题:PHP Logs::showLogpage方法的具体用法?PHP Logs::showLogpage怎么用?PHP Logs::showLogpage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Logs
的用法示例。
在下文中一共展示了Logs::showLogpage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Logs
//列出栏目列表,对其进行操作
default:
//begin
echo "<div id='navigation'>" . gettext_r("quickLink") . ":";
echo "<a href=\"admin_log.php?logtype=0\">" . gettext_r("login") . gettext_r("log") . "</a>\n";
echo "<a href=\"admin_log.php?logtype=1\">" . gettext_r("do") . gettext_r("log") . "</a>\n";
echo "</div>";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='1' class='function'>\n";
echo "<tr class='header'>\n";
echo "<td align='center' width='40'>" . gettext_r("checkIn") . "</td>\n";
echo "<td align='center' width='40'>" . gettext_r("serialNumber") . "</td>\n";
echo "<td align='center' width='100'>" . gettext_r("manager") . "</td>\n";
echo "<td align='center'>" . gettext_r("do") . gettext_r("contents") . "</td>\n";
echo "<td align='center' width='100'>IP</td>\n";
echo "<td align='center' width='150'>" . gettext_r("do") . gettext_r("time") . "</td>\n";
echo "</tr>\n";
$allLogs = new Logs();
$allLogs->getAllLog($currentpage, $pagesize, $logtype);
$allLogs->showAllLog();
echo "</table>\n";
echo "<div style='height:5px;'></div>";
echo "<input type='checkbox' id='checkall' onclick='checkall()' value='全选' /><span>" . gettext_r("checkAll") . " </span> ";
echo "<input type='button' onclick=\"deleteall('admin_log.php')\" value='" . gettext_r("deleteAll") . "' />";
echo "<div id='showpage'>";
$allLogs->showLogpage($currentpage, $pagesize, $logtype);
echo "</div>";
}
?>
</body>
</html>