PHP Classes

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

Recommend this page to a friend!
  Classes of Burge Lab   BurgeATS   CMF/Web/application/views/en/admin/user_dashboard.php   Download  
File: CMF/Web/application/views/en/admin/user_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/user_dashboard.php
Date: 1 year ago
Size: 465 bytes
 

Contents

Class file image Download
{total_text}: <?php echo sizeof($users); ?><br>
<ul class="dash-ul" style="padding:10px">
    <?php
        $i
=1;
        foreach(
$users as $us)
        {
            echo
"<li>".$us['user_name']."</li>";
            if(
$i++>5)
                break;
        }
   
?>
</ul>
<h4>{user_groups_text}</h4>
{total_text}: <?php echo sizeof($user_groups); ?><br>
<ul class="dash-ul" style="padding:10px">
    <?php
        $i
=1;
        foreach(
$user_groups as $ug)
        {
            echo
"<li>".$ug['ug_name']."</li>";
            if(
$i++>5)
                break;
        }
   
?>
</ul>