Browse Source

Improved plugin loading

Tobias Reich 11 years ago
parent
commit
7e6fd3ccc7
1 changed files with 11 additions and 1 deletions
  1. 11 1
      php/modules/Plugins.php

+ 11 - 1
php/modules/Plugins.php

@@ -26,8 +26,18 @@ class Plugins implements \SplSubject {
 
 		# Load plugins
 		foreach ($this->files as $file) {
+
 			if ($file==='') continue;
-			include(LYCHEE_PLUGINS . $file);
+
+			$file = LYCHEE_PLUGINS . $file;
+
+			if (file_exists($file)===false) {
+				Log::warning($database, __METHOD__, __LINE__, 'Could not include plugin. File does not exist (' . $file . ').');
+				continue;
+			}
+
+			include($file);
+
 		}
 
 		return true;