PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
builder
/
ecommerce
/
dashboard
<?php $order_total = BCustomer_Online::model()->count(); if ($order_total > 1000000000000) { $total = round($order_total / 1000000000000, 1) . 'T'; } elseif ($order_total > 1000000000) { $total = round($order_total / 1000000000, 1) . 'B'; } elseif ($order_total > 1000000) { $total = round($order_total / 1000000, 1) . 'M'; } elseif ($order_total > 1000) { $total = round($order_total / 1000, 1) . 'K'; } else { $total = $order_total; } ?> <div class="tile"> <div class="tile-heading"><?php echo Language::term('text_online', 'Online'); ?></div> <div class="tile-body"><i class="fa fa-eye"></i> <h2 class="pull-right"><?php echo $total; ?></h2> </div> <div class="tile-footer"><a href="#/ecommerce/statistic/customer/online"><?php echo Language::term('text_view', 'View'); ?></a></div> </div>
[+]
..
[-] customer.php
[edit]
[-] recent.php
[edit]
[-] map.php
[edit]
[-] activity.php
[edit]
[-] chart.php
[edit]
[-] order.php
[edit]
[-] online.php
[edit]
[-] sale.php
[edit]