diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/property.inc.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/inc/property.inc.php b/inc/property.inc.php index dc11d88c..636a2bce 100644 --- a/inc/property.inc.php +++ b/inc/property.inc.php @@ -200,4 +200,14 @@ class Property { return self::set('remote-debug-config', json_encode($value)); } + + public static function getDebugTaskStruct() + { + return json_decode(self::get('debug-task-struct'), true); + } + + public static function setDebugTaskStruct($value) + { + return self::set('debug-task-struct'), json_encode($value)); + } } |