summaryrefslogtreecommitdiffstats
path: root/inc/property.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2017-05-17 11:56:43 +0200
committerSimon Rettberg2017-05-17 11:56:43 +0200
commitfaae75ed40d608d3fd734d5ffc2d786107c367a9 (patch)
treee8d58e9beff1b339587d6f26656cf4542c109f40 /inc/property.inc.php
parent[apis/cron] Fix typo in 'EventLog' handle blocked jobs in separate list (diff)
downloadslx-admin-faae75ed40d608d3fd734d5ffc2d786107c367a9.tar.gz
slx-admin-faae75ed40d608d3fd734d5ffc2d786107c367a9.tar.xz
slx-admin-faae75ed40d608d3fd734d5ffc2d786107c367a9.zip
cron: Clear stucklist on reboot
Diffstat (limited to 'inc/property.inc.php')
-rw-r--r--inc/property.inc.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/inc/property.inc.php b/inc/property.inc.php
index b33e1bff..0b4ea7b3 100644
--- a/inc/property.inc.php
+++ b/inc/property.inc.php
@@ -105,6 +105,17 @@ class Property
));
}
+ /**
+ * Delete entire list with given key.
+ *
+ * @param string $key Key of list
+ * @return int number of items removed
+ */
+ public static function clearList($key)
+ {
+ return Database::exec("DELETE FROM property_list WHERE name = :key", compact('key'));
+ }
+
/*
* Legacy getters/setters
*/