1 <?php
defined('SYSPATH') OR die('No direct access allowed.');
3 echo '<table class="w-table">';
5 foreach($this->data
as $row) {
7 echo '<td class="icon dark">';
8 echo '<span class="icon-16 x16-'.$row['icon'].'"></span>';
10 echo '<td><strong>'.htmlentities(strtoupper($row['title'])).'</strong><br />';
11 echo implode(' + ', array_map(function($field) {
12 return '<a href="' . htmlentities(listview
::querylink($field['filter'])) . '">' . sprintf($field['text'], $field['count']) . '</a>';