1 <?php
defined('SYSPATH') OR die('No direct access allowed.');
2 echo '<table class="tablestat-widget" style="table-layout: fixed;">';
6 foreach( $this->table
as $col ) {
8 echo '<a href="'.htmlentities(listview
::querylink($col['filter'])).'">';
18 foreach( $this->table
as $col ) {
20 echo '<table class="no_border">';
22 foreach( $col['cells'] as $cell ) {
23 if( !$cell['hide'] ) {
26 echo '<td class="icon"><span class="icon-16 x16-'.$cell['icon'].'"></span></td>';
27 echo '<td><a href="'.htmlentities(listview
::querylink($cell['filter'])).'">';
35 echo '<td class="icon"><span class="icon-16 x16-'.$col['na_icon'].'"></span></td>';
36 echo '<td>'._('N/A').'</td>';