PluginProbe
Disk Usage Insights / 1.0
Disk Usage Insights v1.0
trunk 1.0 1.10 1.11 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9
disk-usage-insights / views / blocks / table.php

table.php in Disk Usage Insights 1.0, at views/blocks/table.php

37 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if (!defined('ABSPATH')) { // Ensure running within WordPress
3 exit;
4 }
5 ?>
6 <div class="DUI-panel DUI-panel--TOP10">
7 <div class=DUI-panel__headline><?php echo esc_html($this->headline); ?></div>
8 <div class=DUI-panel__content>
9 <table class=DUI-table>
10 <thead>
11 <tr class=DUI-table__header>
12 <?php foreach ($this->columnNames as $col) { ?>
13 <th>
14 <?php echo esc_html($col); ?>
15 </th>
16 <?php } ?>
17 </tr>
18 </thead>
19 <tbody>
20 <?php foreach ($table as $row) { ?>
21 <tr>
22 <?php foreach ($row as $idx => $column) { ?>
23 <?php if (!empty($this->columnCss[$idx])) { ?>
24 <td class="<?php echo esc_attr($this->columnCss[$idx]); ?>">
25 <?php } else { ?>
26 <td>
27 <?php } ?>
28 <?php echo esc_html($column); ?>
29 </td>
30 <?php } ?>
31 </tr>
32 <?php } ?>
33 </tbody>
34 </table>
35 </div>
36 </div>
37