PHP Classes

File: CMF/Web/application/views/en/admin/log_dashboard.php

Recommend this page to a friend!
  Classes of Burge Lab   BurgeATS   CMF/Web/application/views/en/admin/log_dashboard.php   Download  
File: CMF/Web/application/views/en/admin/log_dashboard.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: BurgeATS
CRM, Ticketing system, and employee manangement
Author: By
Last change: Update of CMF/Web/application/views/en/admin/log_dashboard.php
Date: 1 year ago
Size: 351 bytes
 

Contents

Class file image Download
<ul class="dash-ul eng ltr" style="padding:10px">
    <?php
       
for($i=$logs['start']; $i<$logs['end'];$i++)
        {
           
$log=$logs[$i];

            echo
"<li class='en ltr'>";
           
$j=0;
            foreach (
$log as $key => $value)
            {
                if(
$key==="visitor_id")
                    continue;

                if(
$j++)
                    echo
", ";
                echo
$key.": ".$value;
            }
            echo
"</li><br>";
        }
   
?>
</ul>