summaryrefslogtreecommitdiffstats
path: root/inc/database.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2014-09-15 17:26:26 +0200
committerSimon Rettberg2014-09-15 17:26:26 +0200
commit825e994444fcdb73d62710d0d934e93a227bd30f (patch)
tree4fdf795389ebc9f554b65a89dd8bee1faa1f3c5a /inc/database.inc.php
parent[news-API] tag content as 'content' instead of 'info' (diff)
downloadslx-admin-825e994444fcdb73d62710d0d934e93a227bd30f.tar.gz
slx-admin-825e994444fcdb73d62710d0d934e93a227bd30f.tar.xz
slx-admin-825e994444fcdb73d62710d0d934e93a227bd30f.zip
Added eventlog class, improved db-update machanism.
A warning will be shown in the main menu bar if the database schema needs to be updated.
Diffstat (limited to 'inc/database.inc.php')
-rw-r--r--inc/database.inc.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/inc/database.inc.php b/inc/database.inc.php
index e7a16ba1..a729b7fc 100644
--- a/inc/database.inc.php
+++ b/inc/database.inc.php
@@ -9,6 +9,20 @@ class Database
private static $dbh = false;
private static $statements = array();
+
+ /**
+ * Get database schema version - used for checking for updates
+ * @return int Version of db schema
+ */
+ public static function getExpectedSchemaVersion()
+ {
+ return 5;
+ }
+
+ public static function needSchemaUpdate()
+ {
+ return Property::getCurrentSchemaVersion() < self::getExpectedSchemaVersion();
+ }
/**
* Connect to the DB if not already connected.