1 <?php
defined('SYSPATH') OR die('No direct access allowed.'); ?
>
2 <div
class="widget w98 left">
4 <caption
><?php
echo _('Program status'); ?
></caption
>
7 <th
class="headerNone"><?php
echo _('Name'); ?
></th
>
8 <th
class="headerNone"><?php
echo _('Last alive'); ?
></th
>
9 <th
class="headerNone"><?php
echo _('Is running'); ?
></th
>
16 foreach ($data as $row) {
18 echo '<tr class="'.($i%2
== 0 ?
'odd' : 'even').'">'."\n";
19 foreach($row as $column) {
20 echo '<td style="white-space: normal">'.$column.'</td>'."\n";
26 <td colspan
="<?php echo count($header);?>"><?php
echo _('No program status found'); ?
></td
>