summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/bootmenu
diff options
context:
space:
mode:
authorSimon2011-03-06 13:04:27 +0100
committerSimon2011-03-06 13:04:27 +0100
commita0984170d517f55fbd1f348e8e2e14109971c31f (patch)
treef5e9d46370704db65859668abe63d01c7e96b474 /application/views/scripts/bootmenu
parentupdate (diff)
parentBootmenu und Bootmenuentries angelegt (diff)
downloadpbs2-a0984170d517f55fbd1f348e8e2e14109971c31f.tar.gz
pbs2-a0984170d517f55fbd1f348e8e2e14109971c31f.tar.xz
pbs2-a0984170d517f55fbd1f348e8e2e14109971c31f.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/views/scripts/bootmenu')
-rw-r--r--application/views/scripts/bootmenu/addbootmenuentry.phtml1
-rw-r--r--application/views/scripts/bootmenu/createbootmenu.phtml1
-rw-r--r--application/views/scripts/bootmenu/editbootfilter.phtml1
-rw-r--r--application/views/scripts/bootmenu/editbootmenuentry.phtml1
-rw-r--r--application/views/scripts/bootmenu/index.phtml55
-rw-r--r--application/views/scripts/bootmenu/removebootmenuentry.phtml1
6 files changed, 60 insertions, 0 deletions
diff --git a/application/views/scripts/bootmenu/addbootmenuentry.phtml b/application/views/scripts/bootmenu/addbootmenuentry.phtml
new file mode 100644
index 0000000..3854273
--- /dev/null
+++ b/application/views/scripts/bootmenu/addbootmenuentry.phtml
@@ -0,0 +1 @@
+<br /><br /><center>View script for controller <b>Bootmenu</b> and script/action name <b>addbootmenuentry</b></center> \ No newline at end of file
diff --git a/application/views/scripts/bootmenu/createbootmenu.phtml b/application/views/scripts/bootmenu/createbootmenu.phtml
new file mode 100644
index 0000000..1741819
--- /dev/null
+++ b/application/views/scripts/bootmenu/createbootmenu.phtml
@@ -0,0 +1 @@
+<br /><br /><center>View script for controller <b>Bootmenu</b> and script/action name <b>createbootmenu</b></center> \ No newline at end of file
diff --git a/application/views/scripts/bootmenu/editbootfilter.phtml b/application/views/scripts/bootmenu/editbootfilter.phtml
new file mode 100644
index 0000000..3274ee4
--- /dev/null
+++ b/application/views/scripts/bootmenu/editbootfilter.phtml
@@ -0,0 +1 @@
+<br /><br /><center>View script for controller <b>Bootmenu</b> and script/action name <b>editbootfilter</b></center> \ No newline at end of file
diff --git a/application/views/scripts/bootmenu/editbootmenuentry.phtml b/application/views/scripts/bootmenu/editbootmenuentry.phtml
new file mode 100644
index 0000000..fcfb558
--- /dev/null
+++ b/application/views/scripts/bootmenu/editbootmenuentry.phtml
@@ -0,0 +1 @@
+<br /><br /><center>View script for controller <b>Bootmenu</b> and script/action name <b>editbootmenuentry</b></center> \ No newline at end of file
diff --git a/application/views/scripts/bootmenu/index.phtml b/application/views/scripts/bootmenu/index.phtml
new file mode 100644
index 0000000..d09bb34
--- /dev/null
+++ b/application/views/scripts/bootmenu/index.phtml
@@ -0,0 +1,55 @@
+<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>Changed</th>
+ <th>Expires</th>
+ <th>Public</th>
+ </tr>
+ <?php foreach ($this->bootoslist as $bootos): ?>
+ <tr>
+ <td><?php echo $this->escape($bootos->getID()); ?></td>
+ <td><?php echo $this->escape($bootos->getTitle()); ?></td>
+ <td><?php echo $this->escape($bootos->getGroupID()); ?></td>
+ <td><?php echo $this->escape($bootos->getConfigID()); ?></td>
+ <td><?php echo $this->escape($bootos->getPath_init()); ?></td>
+ <td><?php echo $this->escape($bootos->getPath_kernel()); ?></td>
+ <td><?php echo $this->escape($bootos->getDefaultkcl()); ?></td>
+ <td><?php echo $this->escape($bootos->getDescription()); ?></td>
+ <td><?php echo $this->escape(date('Y-m-d H:i:s', $bootos->getCreated())); ?></td>
+ <td><?php echo $this->escape($bootos->getExpires()); ?></td>
+ <td><?php echo $this->escape($bootos->getPublic()); ?></td>
+ <td><a href="<?php echo $this->url(
+ array(
+ 'controller' => 'bootos',
+ 'action' => 'editbootos',
+ 'bootosID' => $bootos->getID()
+ ),
+ 'default',
+ true, false) ?>">Edit BootOS</a></td>
+ <td><a href="<?php echo $this->url(
+ array(
+ 'controller' => 'bootos',
+ 'action' => 'deletebootos',
+ 'bootosID' => $bootos->getID()
+ ),
+ 'default',
+ true) ?>">Delete BootOS</a></td>
+ </tr>
+ <?php endforeach; ?>
+</table>
+<br/>
+<?php echo $this->formButton('createbootos', 'Create BootOS', array(
+ 'onclick' => 'self.location="/bootos/createbootos"'))?>
+
+
+
+
+
diff --git a/application/views/scripts/bootmenu/removebootmenuentry.phtml b/application/views/scripts/bootmenu/removebootmenuentry.phtml
new file mode 100644
index 0000000..89b12f9
--- /dev/null
+++ b/application/views/scripts/bootmenu/removebootmenuentry.phtml
@@ -0,0 +1 @@
+<br /><br /><center>View script for controller <b>Bootmenu</b> and script/action name <b>removebootmenuentry</b></center> \ No newline at end of file