summaryrefslogtreecommitdiff
path: root/app/Core/PluginLoader.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-09-13 16:56:51 -0400
committerFrederic Guillot <fred@kanboard.net>2015-09-13 16:56:51 -0400
commit4b6672d0b33563ab8888d592ef86616ca9238007 (patch)
tree0ba5c0b2244f08ddac55169161271ca2a25ce005 /app/Core/PluginLoader.php
parentd400f7c5be4b3f7371dce73510e5fd4a54375025 (diff)
Move budget outside of the core
The budget planning feature is now a plugin See: https://github.com/kanboard/plugin-budget
Diffstat (limited to 'app/Core/PluginLoader.php')
-rw-r--r--app/Core/PluginLoader.php11
1 files changed, 2 insertions, 9 deletions
diff --git a/app/Core/PluginLoader.php b/app/Core/PluginLoader.php
index 6030ded4..c7c254f7 100644
--- a/app/Core/PluginLoader.php
+++ b/app/Core/PluginLoader.php
@@ -21,21 +21,14 @@ class PluginLoader extends Base
const TABLE_SCHEMA = 'plugin_schema_versions';
/**
- * Plugin folder
- *
- * @var string
- */
- const PATH = __DIR__.'/../../plugins';
-
- /**
* Scan plugin folder and load plugins
*
* @access public
*/
public function scan()
{
- if (file_exists(self::PATH)) {
- $dir = new DirectoryIterator(self::PATH);
+ if (file_exists(__DIR__.'/../../plugins')) {
+ $dir = new DirectoryIterator(__DIR__.'/../../plugins');
foreach ($dir as $fileinfo) {
if (! $fileinfo->isDot() && $fileinfo->isDir()) {