summaryrefslogtreecommitdiffstats
path: root/inc/property.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2014-05-23 20:49:02 +0200
committerSimon Rettberg2014-05-23 20:49:02 +0200
commitfe6ac16498b05d0f0c8ed7fda394273815d3d6da (patch)
treecadf5f103ef3db7ba1b40d59d85937c998aad22f /inc/property.inc.php
parentServer Setup page (diff)
downloadslx-admin-fe6ac16498b05d0f0c8ed7fda394273815d3d6da.tar.gz
slx-admin-fe6ac16498b05d0f0c8ed7fda394273815d3d6da.tar.xz
slx-admin-fe6ac16498b05d0f0c8ed7fda394273815d3d6da.zip
Stuff (WIP)
Diffstat (limited to 'inc/property.inc.php')
-rw-r--r--inc/property.inc.php22
1 files changed, 21 insertions, 1 deletions
diff --git a/inc/property.inc.php b/inc/property.inc.php
index a1c252a5..c6f3e8ad 100644
--- a/inc/property.inc.php
+++ b/inc/property.inc.php
@@ -54,5 +54,25 @@ class Property
{
self::set('server-ip', $value);
}
+
+ public static function getIPxeIp()
+ {
+ return self::get('ipxe-ip', 'none');
+ }
+
+ public static function setIPxeIp($value)
+ {
+ self::set('ipxe-ip', $value);
+ }
+
+ public static function getIPxeTaskId()
+ {
+ return self::get('ipxe-task');
+ }
+
+ public static function setIPxeTaskId($value)
+ {
+ self::set('ipxe-task', $value);
+ }
-} \ No newline at end of file
+}