summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/bootos/index.phtml
blob: 2fef1821982bfb4d6e470176c0a042d21bd0c3d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<h1>BootOS</h1>
<table border=1>
  <tr>
    <th>ID</th>
    <th>Title</th>
    <th>GroupID</th>
    <th>ConfigID</th>
    <th>Init</th>
    <th>Kernel</th>
    <th>Kcl</th>
    <th>Description</th>
    <th>Created</th>
    <th>Expires</th>
    <th>Public</th>
  </tr>
  <?php foreach ($this->bootoslist as $bootos): ?>
  <tr>
    <td><?php echo $bootos->getID(); ?></td>
    <td><?php echo $bootos->getTitle(); ?></td>
    <td><?php echo $bootos->getGroupID(); ?></td>
    <td><?php echo $bootos->getConfigID(); ?></td>
    <td><?php echo $bootos->getPath_init(); ?></td>
    <td><?php echo $bootos->getPath_kernel(); ?></td>
    <td><?php echo $bootos->getDefaultkcl(); ?></td>
    <td><?php echo $bootos->getDescription(); ?></td>
    <td><?php echo $bootos->getCreated(); ?></td>
    <td><?php echo $bootos->getExpires(); ?></td>
    <td><?php echo $bootos->getPublic(); ?></td>
  </tr>
  <?php endforeach; ?>
</table>