46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<!-- Main content -->
|
|
<div class="content-wrapper">
|
|
<?php include('common/userstrip.php'); ?>
|
|
|
|
<!-- Marketing campaigns -->
|
|
<div class="panel panel-flat">
|
|
<div class="panel-heading">
|
|
|
|
|
|
|
|
<!-- Version 1.3 -->
|
|
<div class="panel panel-flat" id="v_1_3">
|
|
<div class="panel-heading">
|
|
<h5 class="panel-title">User Logs</h5>
|
|
<div class="heading-elements">
|
|
<span class="text-muted heading-text"><?php echo $now_date;?></span>
|
|
<span class="label bg-blue heading-text">last 40 entries</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
<p class="content-group">User log tracks activities on your account, report any activities that are out of place..</p>
|
|
|
|
<pre class="language-javascript"><code>// # Activities
|
|
// -----------------------------------------------
|
|
<?php
|
|
foreach ($log_result AS $lr) {
|
|
echo "[" . $lr->mlog . "] Date " . $lr->created . " From " . $lr->loc . "\n";
|
|
}
|
|
?>
|
|
</code></pre>
|
|
</div>
|
|
</div>
|
|
<!-- /version 1.2 -->
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<!-- /marketing campaigns -->
|
|
</div>
|
|
<!-- /main content -->
|
|
|