summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/bootmenu
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/scripts/bootmenu')
-rw-r--r--application/views/scripts/bootmenu/index.phtml22
1 files changed, 11 insertions, 11 deletions
diff --git a/application/views/scripts/bootmenu/index.phtml b/application/views/scripts/bootmenu/index.phtml
index e40ac90..a5c4fec 100644
--- a/application/views/scripts/bootmenu/index.phtml
+++ b/application/views/scripts/bootmenu/index.phtml
@@ -10,7 +10,7 @@ tr.bootentry{background-color:#E0ECF8;}
<table border=1>
<tr>
- <th>ID</th>
+<!--<th>ID</th>-->
<th>Title</th>
<th>GroupID</th>
<th>MembershipID</th>
@@ -18,12 +18,12 @@ tr.bootentry{background-color:#E0ECF8;}
</tr>
<?php foreach ($this->bootmenulist as $bootmenu): ?>
<tr class=bootmenu>
- <td><?php echo $this->escape($bootmenu->getID()); ?></td>
+ <!--<td><?php echo $this->escape($bootmenu->getID()); ?></td>-->
<td><?php echo $this->escape($bootmenu->getTitle()); ?></td>
<td><?php echo $this->escape($bootmenu->getGroupID()); ?></td>
<td><?php echo $this->escape($bootmenu->getMembershipID()); ?></td>
<td><?php echo $this->escape(date('Y-m-d H:i:s', $bootmenu->getCreated())); ?></td>
- <td class=nostyle><a href="<?php echo $this->url(
+ <td><a href="<?php echo $this->url(
array(
'controller' => 'bootmenu',
'action' => 'editbootmenu',
@@ -31,7 +31,7 @@ tr.bootentry{background-color:#E0ECF8;}
),
'default',
true, false) ?>">Edit Bootmenu</a></td>
- <td class=nostyle><a href="<?php echo $this->url(
+ <td><a href="<?php echo $this->url(
array(
'controller' => 'bootmenu',
'action' => 'deletebootmenu',
@@ -39,7 +39,7 @@ tr.bootentry{background-color:#E0ECF8;}
),
'default',
true) ?>">Delete Bootmenu</a></td>
- <td class=nostyle><a href="<?php echo $this->url(
+ <td><a href="<?php echo $this->url(
array(
'controller' => 'bootmenu',
'action' => 'addbootmenuentry',
@@ -50,9 +50,9 @@ tr.bootentry{background-color:#E0ECF8;}
</tr>
<tr>
<th></th>
- <th>ID</th>
+<!--<th>ID</th>-->
<th>Title</th>
- <th>BootmenuID</th>
+<!--<th>BootmenuID</th>-->
<th>BootOSID</th>
<th>kcl</th>
<th>ConfigID</th>
@@ -60,14 +60,14 @@ tr.bootentry{background-color:#E0ECF8;}
</tr>
<?php foreach ($this->bootmenuentrylist[$bootmenu->getID()] as $bootmenuentry): ?>
<tr class=bootentry><td class=nostyle></td>
- <td><?php echo $this->escape($bootmenuentry->getID()); ?></td>
+ <!--<td><?php echo $this->escape($bootmenuentry->getID()); ?></td>-->
<td><?php echo $this->escape($bootmenuentry->getTitle()); ?></td>
- <td><?php echo $this->escape($bootmenuentry->getBootmenuID()); ?></td>
+ <!--<td><?php echo $this->escape($bootmenuentry->getBootmenuID()); ?></td>-->
<td><?php echo $this->escape($bootmenuentry->getBootosID()); ?></td>
<td><?php echo $this->escape($bootmenuentry->getkcl()); ?></td>
<td><?php echo $this->escape($bootmenuentry->getConfigID()); ?></td>
<td><?php echo $this->escape($bootmenuentry->getOrder()); ?></td>
- <td class=nostyle><a href="<?php echo $this->url(
+ <td><a href="<?php echo $this->url(
array(
'controller' => 'bootmenu',
'action' => 'editbootmenuentry',
@@ -76,7 +76,7 @@ tr.bootentry{background-color:#E0ECF8;}
),
'default',
true, false) ?>">Edit Entry</a></td>
- <td class=nostyle><a href="<?php echo $this->url(
+ <td><a href="<?php echo $this->url(
array(
'controller' => 'bootmenu',
'action' => 'removebootmenuentry',