Browse Source

Add plugin trigger for before and after server import

Michael Procter 10 years ago
parent
commit
b34374fcdb
1 changed files with 4 additions and 0 deletions
  1. 4 0
      php/modules/Import.php

+ 4 - 0
php/modules/Import.php

@@ -82,6 +82,8 @@ class Import extends Module {
 		$contains['photos']	= false;
 		$contains['albums']	= false;
 
+		$plugins->activate(__METHOD__ . ":before", array($albumID, $path));
+
 		# Get all files
 		$files = glob($path . '/*');
 
@@ -133,6 +135,8 @@ class Import extends Module {
 
 		}
 
+		$plugins->activate(__METHOD__ . ":after", array($albumID, $path));
+
 		if ($contains['photos']===false&&$contains['albums']===false)	return 'Warning: Folder empty or no readable files to process!';
 		if ($contains['photos']===false&&$contains['albums']===true)	return 'Notice: Import only contains albums!';
 		return true;