summaryrefslogtreecommitdiffstats
path: root/inc/property.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/property.inc.php')
-rw-r--r--inc/property.inc.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/inc/property.inc.php b/inc/property.inc.php
index e4b4340b..afbdf0de 100644
--- a/inc/property.inc.php
+++ b/inc/property.inc.php
@@ -159,5 +159,15 @@ class Property
{
return self::get('last-warn-event-id', 0);
}
+
+ public static function setNeedsSetup($value)
+ {
+ self::set('needs-setup', $value);
+ }
+
+ public static function getNeedsSetup()
+ {
+ return self::get('needs-setup');
+ }
}