diff options
author | Simon Rettberg | 2021-03-19 13:54:22 +0100 |
---|---|---|
committer | Simon Rettberg | 2021-03-19 13:54:22 +0100 |
commit | 4c0862efe57fbdaa51a69c8dc39f6fc4ae45fa20 (patch) | |
tree | cf5d472d2bea7a4ba43339bf892db6dad710e51c /inc | |
parent | [locations] Add permission for openingtimes (diff) | |
download | slx-admin-4c0862efe57fbdaa51a69c8dc39f6fc4ae45fa20.tar.gz slx-admin-4c0862efe57fbdaa51a69c8dc39f6fc4ae45fa20.tar.xz slx-admin-4c0862efe57fbdaa51a69c8dc39f6fc4ae45fa20.zip |
[locations/rebootcontrol] Inherit openingtimes for WOL/shutdown
The opening times schedule is now inherited to child locations, so it's
easy to toggle WOL or shutdown for individual rooms in a building, where
you only have to set the opening times once for the entire building.
As of now, WOL and shutdown settings are *not* inherited to child
locations, as I'm not sure if you always want to inherit those by
default.
Closes #3710
Diffstat (limited to 'inc')
-rw-r--r-- | inc/database.inc.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/inc/database.inc.php b/inc/database.inc.php index eddd4faf..3e8ee0f8 100644 --- a/inc/database.inc.php +++ b/inc/database.inc.php @@ -91,6 +91,19 @@ class Database } /** + * Fetch two columns as key => value list. + * + * @return array|bool Associative array, first column is key, second column is value + */ + public static function queryKeyValueList($query, $args = array(), $ignoreError = null) + { + $res = self::simpleQuery($query, $args, $ignoreError); + if ($res === false) + return false; + return $res->fetchAll(PDO::FETCH_KEY_PAIR); + } + + /** * Execute the given query and return the number of rows affected. * Mostly useful for UPDATEs or INSERTs * |