summaryrefslogtreecommitdiff
path: root/app/Core/Plugin
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-09-03 18:02:00 -0400
committerFrederic Guillot <fred@kanboard.net>2016-09-03 18:02:00 -0400
commitffd58d06fa827827c696cb46e5c0e2fca3c240bc (patch)
tree65674dd49faf5bfbadc6af1cbead57b5055290c2 /app/Core/Plugin
parent75a9e01a9854efd170a03f441f9703de9d77eeb8 (diff)
Support version operators for plugin directory: >= and >
Diffstat (limited to 'app/Core/Plugin')
-rw-r--r--app/Core/Plugin/Directory.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/Core/Plugin/Directory.php b/app/Core/Plugin/Directory.php
index 21f11ca9..27c3514e 100644
--- a/app/Core/Plugin/Directory.php
+++ b/app/Core/Plugin/Directory.php
@@ -40,6 +40,13 @@ class Directory extends BaseCore
return true;
}
+ foreach (array('>=', '>') as $operator) {
+ if (strpos($plugin['compatible_version'], $operator) === 0) {
+ $pluginVersion = substr($plugin['compatible_version'], strlen($operator));
+ return version_compare($appVersion, $pluginVersion, $operator);
+ }
+ }
+
return $plugin['compatible_version'] === $appVersion;
}